X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=Makefile;h=a816b97baa96b03eaff86048265fabccfae7b777;hb=HEAD;hp=fe90dbe83f630d3410673d9f55aecf6565b5528e;hpb=5cbc971e8563b2c364da4c014fb0418706720a94;p=cascardo%2Fchat.git diff --git a/Makefile b/Makefile index fe90dbe..a816b97 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,19 @@ -OBJECTS = sort_udns.o tcp_connect.o iksemel_extra.o tictactoe.o \ - xmpp.o features.o sasl.o bind.o disco.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 libgsasl` -LIBS = -ludns `pkg-config --libs iksemel libgsasl` +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 chat.o + $(CC) $(CFLAGS) $(LIBS) -o ui $(OBJECTS) ui.o chat.o .c.o: $(CC) $(CFLAGS) -c $< -o $@ clean: - rm -f $(OBJECTS) tictactoe + rm -f $(OBJECTS) tictactoe.o tictactoe ui.o chat.o ui