home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume9 / rndname3 / Makefile next >
Encoding:
Makefile  |  1989-11-08  |  476 b   |  21 lines

  1. #  makefile for name.c
  2. #
  3. #       Comment out the BSD line if you're on System V
  4. #       Comment out the SYSV line if you're using Berkely Unix.
  5. #       Comment out both lines if you're using Microsoft C with MS-DOS.
  6. #
  7. #       Uncomment the DIST = -DSCRABBLE line, if you want to use the
  8. #       Scrabble (tm) distribution of letters.
  9.  
  10. # SYSTEM = -DSYSV 
  11. SYSTEM = -DBSD
  12.  
  13. DIST = -DSCRABBLE
  14. #DIST = 
  15.  
  16. CFLAGS = -O $(SYSTEM) $(DIST)
  17.  
  18. name:   name.c
  19.     cc -o name $(CFLAGS) name.c
  20.  
  21.