Mercurial > pidgin
view console/Makefile @ 14128:a8a033a89ee0
[gaim-migrate @ 16766]
I'm hoping this will fix a lot of the remaining idle-away problems,
like not correctly returning from idle-away. This change also
causes the gtkstatusbox to show your idle-away status when you are
idle-away.
Please test everything and let me know if there are any problems.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Tue, 15 Aug 2006 08:22:29 +0000 |
| parents | b71bfeaaed58 |
| children |
line wrap: on
line source
VERSION=gntgaim-0.0.0dev CC=gcc CFLAGS=`pkg-config --cflags gaim gobject-2.0 gnt` -g -Wall -DVERSION=\"$(VERSION)\" -DSTANDALONE LDFLAGS=`pkg-config --libs gaim gobject-2.0 libxml-2.0 gnt` -pg -lgaim GG_SOURCES = \ gntaccount.c \ gntblist.c \ gntconn.c \ gntconv.c \ gntdebug.c \ gntnotify.c \ gntplugin.c \ gntprefs.c \ gntrequest.c \ gntstatus.c \ gntui.c GG_HEADERS = \ gntaccount.h \ gntblist.h \ gntconn.h \ gntconv.h \ gntdebug.h \ gntnotify.h \ gntprefs.h \ gntplugin.h \ gntrequest.h \ gntstatus.h \ gntui.h GG_OBJECTS = \ gntaccount.o \ gntblist.o \ gntconn.o \ gntconv.o \ gntdebug.o \ gntnotify.o \ gntplugin.o \ gntprefs.o \ gntrequest.o \ gntstatus.o \ gntui.o all: gntgaim gntgaim: gntgaim.o $(GG_OBJECTS) $(CC) -o gntgaim gntgaim.o $(GG_OBJECTS) $(LDFLAGS) gntaccount.o: gntaccount.c $(GG_HEADERS) gntblist.o: gntblist.c $(GG_HEADERS) gntconv.o: gntconv.c $(GG_HEADERS) gntgaim.o: gntgaim.c gntgaim.h $(GG_HEADERS) gntnotify.o: gntnotify.c $(GG_HEADERS) gntui.o: gntui.c $(GG_HEADERS) clean: rm -f *.o rm -f gntgaim
