diff options
author | rsc <devnull@localhost> | 2005-01-11 20:57:41 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-11 20:57:41 +0000 |
commit | c70667367f0d720fd6ddc62041ba5fcf10dc7f4c (patch) | |
tree | 6e02f612afe640fb864ab820026bf552c6fb4458 /src/cmd/mkfile | |
parent | 1c096fa40aa3a74e0886b62f8686f294968a1130 (diff) | |
download | plan9port-c70667367f0d720fd6ddc62041ba5fcf10dc7f4c.tar.gz plan9port-c70667367f0d720fd6ddc62041ba5fcf10dc7f4c.tar.bz2 plan9port-c70667367f0d720fd6ddc62041ba5fcf10dc7f4c.zip |
get rid of the 9foo commands in favor of the 9 script
Diffstat (limited to 'src/cmd/mkfile')
-rw-r--r-- | src/cmd/mkfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cmd/mkfile b/src/cmd/mkfile index 8414dabb..42ca0e9f 100644 --- a/src/cmd/mkfile +++ b/src/cmd/mkfile @@ -9,9 +9,9 @@ DIRS=lex `ls -l |sed -n 's/^d.* //p' |egrep -v "^($BUGGERED)$"|egrep -v '^lex$'` <$PLAN9/src/mkdirs -dir-all dir-install: $PLAN9/bin/9yacc $PLAN9/bin/9lex +dir-all dir-install: $PLAN9/bin/yacc $PLAN9/bin/lex -bc.tab.c units.tab.c: $PLAN9/bin/9yacc +bc.tab.c units.tab.c: $PLAN9/bin/yacc %.tab.h %.tab.c: %.y $YACC $YFLAGS -s $stem $stem.y @@ -19,10 +19,10 @@ bc.tab.c units.tab.c: $PLAN9/bin/9yacc %.o: %.tab.c 9c -o $target $stem.tab.c -delatex.c:D: delatex.lx $PLAN9/bin/9lex - 9lex -t delatex.lx >delatex.c +delatex.c:D: delatex.lx $PLAN9/bin/lex + 9 lex -t delatex.lx >delatex.c -$PLAN9/bin/9lex: $PLAN9/bin/9yacc +$PLAN9/bin/lex: $PLAN9/bin/yacc cd lex; mk install CLEANFILES=$CLEANFILES bc.tab.[ch] units.tab.[ch] delatex.c |