mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
stupid bugs
This commit is contained in:
parent
1fdb4a5450
commit
646799d4a7
2 changed files with 5 additions and 5 deletions
|
@ -38,7 +38,7 @@ all: $(TARG)
|
|||
|
||||
TGZFILES+=mk.pdf
|
||||
|
||||
install: $(LIB)
|
||||
install: $(TARG)
|
||||
mkdir -p $(PREFIX)/bin
|
||||
install -m 0755 mk $(PREFIX)/bin/mk
|
||||
cat mk.1 | sed 's;DOCPREFIX;$(PREFIX);g' >mk.1a
|
||||
|
|
|
@ -38,15 +38,15 @@ test-%:V:
|
|||
|
||||
lib%.tgz:V:
|
||||
mk new-$stem
|
||||
tar cf $target lib$stem
|
||||
tar cf - lib$stem | gzip > $target
|
||||
|
||||
libregexp9.tgz:V:
|
||||
mk new-regexp
|
||||
tar cf $target libregexp
|
||||
tar cf - libregexp | gzip >$target
|
||||
|
||||
mk.tgz:V:
|
||||
mk new-mk
|
||||
tar cf $target mk
|
||||
tar cf - mk | gzip > $target
|
||||
|
||||
mk-with-libs.tgz:V:
|
||||
mk new-utf
|
||||
|
@ -59,7 +59,7 @@ mk-with-libs.tgz:V:
|
|||
mv libutf libfmt libbio libregexp mk zot
|
||||
mv zot mk
|
||||
cp Makefile mk/Makefile
|
||||
tar cf $target mk
|
||||
tar cf - mk | gzip > $target
|
||||
rm -r mk
|
||||
|
||||
tgz:V: libutf.tgz libfmt.tgz libregexp9.tgz libbio.tgz mk.tgz mk-with-libs.tgz
|
||||
|
|
Loading…
Reference in a new issue