home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
usenet
/
altsrcs
/
0
/
0998
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-12-28
|
532b
|
44 lines
SHELL=/bin/sh
MANS=\
Backslash.3 \
CreateComm.3 \
CreateInte.3 \
CreateTrac.3 \
DeleteComm.3 \
DeleteInte.3 \
DeleteTrac.3 \
Eval.3 \
Expr.3 \
GetVar.3 \
Interp.3 \
Merge.3 \
Return.3 \
SetVar.3 \
SplitList.3 \
StringMatc.3 \
WatchInter.3
DOCS=\
Tcl.1
FILES=\
$(DOCS:.1=.out) \
$(MANS:.3=.out)
.SUFFIXES:
.SUFFIXES: .out .1 .3
.3.out: tmac.sprite
nroff -man $*.3 | col > $*.out
.1.out: tmac.sprite
nroff -man $*.1 | col > $*.out
all: $(FILES)
print: $(FILES)
strike $(FILES) | npr
clean:
rm $(FILES)