Commit Diff


commit - 1fdb4a54500c8bda4cbe262280509f8f98b3bfed
commit + 646799d4a7df74283cf7f0cc1b03f46e3a16555f
blob - a80ad19ef3b1e91dbac84e51761c47215a08c020
blob + 55080da92fc61d0ce362f46199afd82507c207cf
--- unix/make/Makefile.mk
+++ unix/make/Makefile.mk
@@ -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
blob - ee8563caeb8e990afea678b1345125918e89ffc5
blob + 81654b53f12273eb20aa51ec3631d347f2be2923
--- unix/mkfile
+++ unix/mkfile
@@ -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