Mercurial > pidgin.yaz
view console/Makefile @ 19795:6fc33ac621d9
[gaim-migrate @ 17483]
add some function prototype
committer: Ethan Blanton <elb@pidgin.im>
author | Ma Yuan <mayuan2006@gmail.com> |
---|---|
date | Sun, 15 Oct 2006 13:26:34 +0000 |
parents | 0e1e59770cb0 |
children | d95e5e0e29b9 |
line wrap: on
line source
CFLAGS=`pkg-config --cflags gaim gobject-2.0` -g -I./libgnt/ LDFLAGS=`pkg-config --libs gaim gobject-2.0 gthread-2.0 libxml-2.0` -lncursesw -L./libgnt/ -lgnt GG_SOURCES = \ gntblist.c \ gntui.c GG_HEADERS = \ gntblist.h \ gntui.h GG_OBJECTS = \ gntblist.o \ gntui.o all: gntgaim gntgaim: gntgaim.o $(GG_OBJECTS) $(CC) -o gntgaim gntgaim.o $(GG_OBJECTS) $(LDFLAGS) gntblist.o: gntblist.c $(GG_HEADERS) gntgaim.o: gntgaim.c gntgaim.h $(GG_HEADERS) gntui.o: gntui.c $(GG_HEADERS) clean: rm *.o rm gntgaim