source: libfaim/Makefile.in @ 13fe062

release-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 13fe062 was 1e6e74e, checked in by Nelson Elhage <nelhage@mit.edu>, 15 years ago
Disable pointer-sign warnings when building libfaim. We're not going to do anything about them, and the code works fine, so just tell gcc to be quiet about these warnings.
  • Property mode set to 100644
File size: 631 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\" -Wno-pointer-sign
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.