X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=Makefile;h=89a6998b3bd815c716e6637ecad8169781a9bfeb;hb=refs%2Fheads%2Fmaster;hp=d85565837e50edb1c9741a50ec55886ac792a56d;hpb=2ba16182c4d0f9e08cc1427587701de04090df08;p=cascardo%2Fhcxmpp.git diff --git a/Makefile b/Makefile index d855658..89a6998 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,19 @@ -OBJECTS = sort_udns.o tcp_connect.o iksemel_extra.o tictactoe.o +OBJECTS = sort_udns.o tcp_connect.o iksemel_extra.o \ + xmpp.o features.o sasl.o bind.o disco.o hook.o message.o presence.o CC = gcc -CFLAGS = -g -Wall `pkg-config --cflags iksemel` -LIBS = -ludns `pkg-config --libs iksemel` +CFLAGS = -g -Wall `pkg-config --cflags iksemel libgsasl glib-2.0 gtk+-2.0` +LIBS = -ludns `pkg-config --libs iksemel libgsasl glib-2.0 gtk+-2.0` -all: tictactoe +all: tictactoe ui -tictactoe: $(OBJECTS) - $(CC) $(CFLAGS) $(LIBS) -o tictactoe $(OBJECTS) +tictactoe: $(OBJECTS) tictactoe.o + $(CC) $(CFLAGS) $(LIBS) -o tictactoe $(OBJECTS) tictactoe.o + +ui: $(OBJECTS) ui.o + $(CC) $(CFLAGS) $(LIBS) -o ui $(OBJECTS) ui.o .c.o: $(CC) $(CFLAGS) -c $< -o $@ clean: - rm -f $(OBJECTS) tictactoe + rm -f $(OBJECTS) tictactoe.o tictactoe ui.o ui