Mercurial > pidgin.yaz
view console/Makefile @ 19771:cf0611260c6b
[gaim-migrate @ 16979]
oim message post to user
committed by Ma Yuan<mayuan2006@gmail.com>
committer: Ethan Blanton <elb@pidgin.im>
author | Ma Yuan <mayuan2006@gmail.com> |
---|---|
date | Tue, 22 Aug 2006 16:13:43 +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