diff options
Diffstat (limited to 'src/gui/gtk/Makefile')
-rw-r--r-- | src/gui/gtk/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/gtk/Makefile b/src/gui/gtk/Makefile index 6d2de6eba..0da1a6390 100644 --- a/src/gui/gtk/Makefile +++ b/src/gui/gtk/Makefile @@ -21,6 +21,7 @@ OPTIONS=-Wall -W -pipe -O2 OUTPUT=../gui.a OBJS=gui-display.o gui-input.o +INCLUDES=`pkg-config --cflags gtk+-2.0` DEFINES=WEE_GTK all: $(OBJS) @@ -32,6 +33,8 @@ $(OBJS): clean: rm -f *.o *.a *~ core -gui-display.o: gui-display.c ../../weechat.h ../gui.h ../../config.h \ - ../../irc/irc.h ../../gui/gui.h -gui-input.o: gui-input.c ../../weechat.h ../gui.h +gui-display.o: gui-display.c ../../weechat.h ../gui.h ../../completion.h \ + ../../history.h ../../config.h ../../irc/irc.h ../../gui/gui.h +gui-input.o: gui-input.c ../../weechat.h ../gui.h ../../completion.h \ + ../../history.h ../../config.h ../../command.h ../../irc/irc.h \ + ../../gui/gui.h |