home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / libcnews / makefile < prev    next >
Makefile  |  1994-09-17  |  470b  |  23 lines

  1. # =()<@<INCLUDE>@>()=
  2. .include "../include/config.make"
  3.  
  4. OBJS=complain.o config.o fopenclex.o gethdr.o hostname.o lock.o ltoza.o \
  5.     nemalloc.o ngmatch.o str3save.o string.o strlower.o \
  6.     strsave.o time.o case.o mkinperm.o unprivileged.o \
  7.     trbatcomm.o fnlockfile.o msgs.o fopenexcl.o rerror.o fakeftime.o
  8. ALL=$(OBJS)
  9.  
  10. u:    $(ALL)
  11.     $(UPDATE) $(OBJS)
  12.  
  13. o:    $(OBJS)
  14.  
  15. cmp:    $(ALL)
  16.     $(LIBCMP) $(OBJS)
  17.  
  18. rerror.o:    rerror.c
  19.     $(CC) -c $(CFLAGS) -I../relay rerror.c
  20.  
  21. clean:
  22.     rm -f *.o
  23.