#  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.
 
SYSTEM = -DSYSV 
# SYSTEM = -DBSD
 
CFLAGS = -O $(SYSTEM)
 
name:   name.c
	cc -o name $(CFLAGS) name.c
tar :
	tar cf rndnames.tar makefile name.c README

