Mercurial > pidgin
comparison console/Makefile @ 13885:582aaa4e287e
[gaim-migrate @ 16365]
Add ui for conversation. It 'works', but it's broken. So don't use it just yet.
I probably will not be able to touch it in the next couple of days. So feel
free to fix the brokenness :)
committer: Tailor Script <tailor@pidgin.im>
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Wed, 28 Jun 2006 05:52:23 +0000 |
| parents | eac18261c6f0 |
| children | 7d3256b253ec |
comparison
equal
deleted
inserted
replaced
| 13884:eac18261c6f0 | 13885:582aaa4e287e |
|---|---|
| 1 CFLAGS=`pkg-config --cflags gaim gobject-2.0` -g -I./libgnt/ | 1 CFLAGS=`pkg-config --cflags gaim gobject-2.0` -g -I./libgnt/ |
| 2 LDFLAGS=`pkg-config --libs gaim gobject-2.0 libxml-2.0` -lncursesw -L./libgnt/ -lgnt -pg | 2 LDFLAGS=`pkg-config --libs gaim gobject-2.0 libxml-2.0` -lncursesw -L./libgnt/ -lgnt -pg |
| 3 | 3 |
| 4 GG_SOURCES = \ | 4 GG_SOURCES = \ |
| 5 gntblist.c \ | 5 gntblist.c \ |
| 6 gntconv.c \ | |
| 6 gntui.c | 7 gntui.c |
| 7 | 8 |
| 8 GG_HEADERS = \ | 9 GG_HEADERS = \ |
| 9 gntblist.h \ | 10 gntblist.h \ |
| 11 gntconv.h \ | |
| 10 gntui.h | 12 gntui.h |
| 11 | 13 |
| 12 GG_OBJECTS = \ | 14 GG_OBJECTS = \ |
| 13 gntblist.o \ | 15 gntblist.o \ |
| 16 gntconv.o \ | |
| 14 gntui.o | 17 gntui.o |
| 15 | 18 |
| 16 all: | 19 all: |
| 17 cd libgnt && make | 20 cd libgnt && make |
| 18 make gntgaim | 21 make gntgaim |
| 19 | 22 |
| 20 gntgaim: gntgaim.o $(GG_OBJECTS) | 23 gntgaim: gntgaim.o $(GG_OBJECTS) |
| 21 $(CC) -o gntgaim gntgaim.o $(GG_OBJECTS) $(LDFLAGS) | 24 $(CC) -o gntgaim gntgaim.o $(GG_OBJECTS) $(LDFLAGS) |
| 22 gntblist.o: gntblist.c $(GG_HEADERS) | 25 gntblist.o: gntblist.c $(GG_HEADERS) |
| 26 gntconv.o: gntconv.c $(GG_HEADERS) | |
| 23 gntgaim.o: gntgaim.c gntgaim.h $(GG_HEADERS) | 27 gntgaim.o: gntgaim.c gntgaim.h $(GG_HEADERS) |
| 24 gntui.o: gntui.c $(GG_HEADERS) | 28 gntui.o: gntui.c $(GG_HEADERS) |
| 25 | 29 |
| 26 clean: | 30 clean: |
| 27 cd libgnt && make clean | 31 cd libgnt && make clean |
