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

  1. # =()<@<INCLUDE>@>()=
  2. .include "../include/config.make"
  3.  
  4. OBJS=$(OFAKE)
  5. ALL=$(OBJS)
  6.  
  7. u:    $(ALL)
  8.     $(UPDATE) $(OBJS)
  9.  
  10. o:    $(OBJS)
  11.  
  12. cmp:    $(ALL)
  13.     $(LIBCMP) $(OBJS)
  14.  
  15. try:
  16.     $(MAKE) `ls *.c | sed 's/\.c$$/.o/'`
  17.  
  18. clean:
  19.     rm -f *.o
  20.