home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-11-08 | 476 b | 21 lines |
- # makefile for name.c
- #
- # Comment out the BSD line if you're on System V
- # Comment out the SYSV line if you're using Berkely Unix.
- # Comment out both lines if you're using Microsoft C with MS-DOS.
- #
- # Uncomment the DIST = -DSCRABBLE line, if you want to use the
- # Scrabble (tm) distribution of letters.
-
- # SYSTEM = -DSYSV
- SYSTEM = -DBSD
-
- DIST = -DSCRABBLE
- #DIST =
-
- CFLAGS = -O $(SYSTEM) $(DIST)
-
- name: name.c
- cc -o name $(CFLAGS) name.c
-
-