update mkmk.sh

This commit is contained in:
rsc 2005-01-04 22:44:52 +00:00
parent b253a743b2
commit 33adad7dc7
2 changed files with 7 additions and 3 deletions

View file

@ -1,10 +1,10 @@
#!/bin/rc #!/usr/local/plan9/bin/rc
# Formatted dump of encoded characters in one or more PostScript fonts. # Formatted dump of encoded characters in one or more PostScript fonts.
# Arguments should be PostScript font names or the word all, which dumps # Arguments should be PostScript font names or the word all, which dumps
# all ROM and disk based fonts. # all ROM and disk based fonts.
# #
POSTLIB=/sys/lib/postscript/prologues POSTLIB=/usr/local/plan9/postscript/prologues
PROLOGUE=$POSTLIB/printfont.ps PROLOGUE=$POSTLIB/printfont.ps
OPTIONS='' OPTIONS=''

View file

@ -32,6 +32,7 @@ cd lib9
9c encodefmt.c 9c encodefmt.c
9c errstr.c 9c errstr.c
9c exec.c 9c exec.c
9c execl.c
9c fcallfmt.c 9c fcallfmt.c
9c get9root.c 9c get9root.c
9c getcallerpc-$OBJTYPE.c || 9a getcallerpc-$OBJTYPE.s 9c getcallerpc-$OBJTYPE.c || 9a getcallerpc-$OBJTYPE.s
@ -61,6 +62,7 @@ cd lib9
9c postnote.c 9c postnote.c
9c qlock.c 9c qlock.c
9c quote.c 9c quote.c
9c rand.c
9c read9pmsg.c 9c read9pmsg.c
9c readn.c 9c readn.c
9c rfork.c 9c rfork.c
@ -179,15 +181,17 @@ cd cmd/mk
9c mk.c 9c mk.c
9c parse.c 9c parse.c
9c recipe.c 9c recipe.c
9c rc.c
9c rule.c 9c rule.c
9c run.c 9c run.c
9c sh.c 9c sh.c
9c shell.c
9c shprint.c 9c shprint.c
9c symtab.c 9c symtab.c
9c var.c 9c var.c
9c varsub.c 9c varsub.c
9c word.c 9c word.c
9c unix.c 9c unix.c
9l -o o.mk arc.o archive.o bufblock.o env.o file.o graph.o job.o lex.o main.o match.o mk.o parse.o recipe.o rule.o run.o sh.o shprint.o symtab.o var.o varsub.o word.o unix.o $PLAN9/lib/libregexp9.a $PLAN9/lib/libbio.a $PLAN9/lib/lib9.a 9l -o o.mk arc.o archive.o bufblock.o env.o file.o graph.o job.o lex.o main.o match.o mk.o parse.o recipe.o rc.o rule.o run.o sh.o shell.o shprint.o symtab.o var.o varsub.o word.o unix.o
install -c o.mk $PLAN9/bin/mk install -c o.mk $PLAN9/bin/mk
cd .. cd ..