diff options
author | Russ Cox <rsc@swtch.com> | 2009-08-24 07:53:01 -0700 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2009-08-24 07:53:01 -0700 |
commit | 51f6e204a775dcbed8b0398060f4f6560d45e991 (patch) | |
tree | 06d11fa6fe342c5cf4476843ab47a5d962b4ffe0 /unix/make | |
parent | bf930686861b74414bc6abb8a0455605d32743d7 (diff) | |
download | plan9port-51f6e204a775dcbed8b0398060f4f6560d45e991.tar.gz plan9port-51f6e204a775dcbed8b0398060f4f6560d45e991.tar.bz2 plan9port-51f6e204a775dcbed8b0398060f4f6560d45e991.zip |
unix: move Makefile so that it cannot be run accidentally
Diffstat (limited to 'unix/make')
-rw-r--r-- | unix/make/Makefile.all | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/unix/make/Makefile.all b/unix/make/Makefile.all new file mode 100644 index 00000000..609d6cb0 --- /dev/null +++ b/unix/make/Makefile.all @@ -0,0 +1,11 @@ +all: + for i in libutf libfmt libbio libregexp mk; do (cd $$i; make); done; ls -l mk/mk + +clean: + for i in libutf libfmt libbio libregexp mk; do (cd $$i; make clean); done + +install: + for i in libutf libfmt libbio libregexp mk; do (cd $$i; make install); done + + + |