round robin sleep queue (from edward@ucbmonet)
[unix-history] / usr / src / old / boggle / Makefile
CommitLineData
0250f5d0
SL
1# @(#)Makefile 4.1 %G%
2#
3DESTDIR=
4CC = /bin/cc
5CFLAGS = -O
6
7all: boggle bogdict
8
9bogdict: comp sfile
10 sed -f sfile /usr/local/lib/w2a | uniq | comp >bogdict
11
12install:
13 install boggle ${DESTDIR}/usr/games/boggle
14 install bogdict ${DESTDIR}/usr/games/bogdict
15
16boggle: boggle.c
17 cc -o boggle ${CFLAGS} boggle.c
18
19comp: comp.c
20 cc -o comp ${CFLAGS} comp.c
21
22clean:
23 rm -f bogdict boggle comp