source: libfaim/Makefile.in @ 89acc93

release-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 89acc93 was 89acc93, checked in by Nelson Elhage <nelhage@mit.edu>, 15 years ago
Revert "Disable pointer-sign warnings when building libfaim." Athena's gcc doesn't support -Wno-pointer-sign, and it's not important enough to me to write a 'configure' rule to test for, so I'll just cope with those warnings. This reverts commit 1e6e74eb1670ffca7901d5d004fa5a6a510597a7.
  • Property mode set to 100644
File size: 613 bytes
Line 
1CC=@CC@
2LIBS=@LIBS@
3LDFLAGS=@LDFLAGS@
4RANLIB=@RANLIB@
5OBJS=admin.o adverts.o auth.o bos.o buddylist.o bstream.o \
6     chat.o chatnav.o conn.o email.o ft.o icq.o im.o \
7     invite.o md5.o misc.o msgcookie.o locate.o \
8     popups.o rxhandlers.o rxqueue.o search.o service.o \
9     snac.o ssi.o stats.o tlv.o translate.o txqueue.o \
10     util.o odir.o bart.o
11CFLAGS=@CFLAGS@ -I. -DAIM_BUILDDATE=\"x\" -DAIM_BUILDTIME=\"x\"
12
13libfaim: $(OBJS)
14        $(AR) -r libfaim.a $(OBJS)
15        $(RANLIB) libfaim.a
16
17clean:
18        $(RM) *.o libfaim.a
19
20distclean: clean
21        $(RM) config.cache config.log config.status Makefile config.h TAGS *~ core
Note: See TracBrowser for help on using the repository browser.