home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
m2c4os2.zip
/
mtc
/
front
/
doc
/
Makefile
< prev
next >
Wrap
Makefile
|
1992-09-25
|
597b
|
28 lines
# $Id: Makefile,v 2.5 1992/02/04 13:53:34 grosch rel $
LIB = $(HOME)/lib
install: bnf.cat lalr.cat bnf.syn lalr.syn $(LIB)/lalr
install -c -m 644 bnf.cat $(LIB)/lalr
install -c -m 644 lalr.cat $(LIB)/lalr
install -c -m 644 bnf.syn $(LIB)/lalr
install -c -m 644 lalr.syn $(LIB)/lalr
# installation directories
$(LIB)/lalr: $(LIB)
sh -c "if test ! -d $(LIB)/lalr; then mkdir $(LIB)/lalr; else true; fi"
bnf.cat: bnf.1
nroff -man < bnf.1 | col > bnf.cat
lalr.cat: lalr.1
nroff -man < lalr.1 | col > lalr.cat
print:
troff -man bnf.1
troff -man lalr.1
clean:
rm -f bnf.cat lalr.cat