home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume7 / safe / Makefile next >
Makefile  |  1986-11-30  |  245b  |  14 lines

  1. ##  MAKEFILE FOR 'SAFE'
  2.  
  3. CFLAGS    = -O
  4.  
  5. ##  THIS PROGRAM USES GETOPT; TWEAK THE NEXT LINE AS NECESSARY FOR YOU
  6. #GETOPT    = -lgetopt
  7.  
  8. safe:    safe.c
  9.     cc $(CFLAGS) -o safe $(GETOPT)
  10.  
  11.  
  12. install:
  13.     @echo Copy safe and the manpage to wherever is appropriate
  14.