Mercurial > pidgin.yaz
view console/Makefile @ 13946:4d577b63299a
[gaim-migrate @ 16486]
Fix some more 64-bit warnings. The "handle" warnings remain, because
they're real problems on 64-bit systems and they still need fixin'.
I'm not sure how to best fix them just yet.
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Tue, 11 Jul 2006 16:22:28 +0000 |
parents | b210409cdc56 |
children | 841a5ffbfee4 |
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)\" LDFLAGS=`pkg-config --libs gaim gobject-2.0 libxml-2.0 gnt` -pg GG_SOURCES = \ gntaccount.c \ gntblist.c \ gntconv.c \ gntui.c GG_HEADERS = \ gntaccount.h \ gntblist.h \ gntconv.h \ gntui.h GG_OBJECTS = \ gntaccount.o \ gntblist.o \ gntconv.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) gntui.o: gntui.c $(GG_HEADERS) clean: rm -f *.o rm -f gntgaim