home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume6 / help / part1 / Makefile < prev    next >
Encoding:
Makefile  |  1986-11-30  |  293 b   |  22 lines

  1. #
  2. #  help Makefile, 1.1    7/27/84
  3. #
  4. CFLAGS= -O
  5. SRCS= help.h help.c
  6. DESTDIR=
  7.  
  8. help:    help.o 
  9.     ${CC} ${CFLAGS} help.o -o help
  10.  
  11. install: help
  12.     install -s -c help $(DESTDIR)/usr/local/bin
  13.  
  14. help.o: help.h /usr/include/sys/file.h /usr/include/sys/param.h
  15.  
  16. ci:
  17.     ci -l ${SRCS}
  18.  
  19. clean:  
  20.     rm -f *.o help
  21.  
  22.