date and time created 82/12/24 13:07:55 by sam
[unix-history] / usr / src / old / boggle / Makefile
# @(#)Makefile 4.1 %G%
#
DESTDIR=
CC = /bin/cc
CFLAGS = -O
all: boggle bogdict
bogdict: comp sfile
sed -f sfile /usr/local/lib/w2a | uniq | comp >bogdict
install:
install boggle ${DESTDIR}/usr/games/boggle
install bogdict ${DESTDIR}/usr/games/bogdict
boggle: boggle.c
cc -o boggle ${CFLAGS} boggle.c
comp: comp.c
cc -o comp ${CFLAGS} comp.c
clean:
rm -f bogdict boggle comp