home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume38 / phonewrd / part01 / makefile next >
Makefile  |  1993-07-14  |  322b  |  16 lines

  1. # trivial makefile - you edit it...
  2.  
  3. CC_OPTS=-O
  4. # define USE_STRINGS_H if you have <strings.h> instead of <string.h>
  5. # CC_OPTS=-O -DUSE_STRINGS_H
  6.  
  7. phonewrd:    phonewrd.c patchlevel.h
  8.         cc -o phonewrd phonewrd.c $(CC_OPTS)
  9.  
  10. install:    phonewrd
  11.         cp phonewrd /usr/contrib/bin
  12.         cp phonewrd.1 /usr/man/man1
  13.  
  14. clean:
  15.         rm phonewrd
  16.