diff options
| author | rsc <devnull@localhost> | 2003-10-01 03:01:08 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2003-10-01 03:01:08 +0000 |
| commit | 5adfe7e525d79eb079f8f438dc2c37072da65b30 (patch) | |
| tree | 523395c1e9dd632e2596f6d1181ecdd8d6ae5887 /src/Makefile | |
| parent | 4cecbbe67853feea23201c7a8337e9244f4b3fe8 (diff) | |
| download | plan9port-5adfe7e525d79eb079f8f438dc2c37072da65b30.tar.gz plan9port-5adfe7e525d79eb079f8f438dc2c37072da65b30.zip | |
Tweaks.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index 8fd27ca1..30ff19e1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -DIRS=\ +LIBS=\ lib9\ libbio\ libdraw\ @@ -7,13 +7,15 @@ DIRS=\ libregexp\ libthread\ libutf\ + +CMDS=\ mk\ sam\ samterm\ -clean all install: - for i in $(DIRS); \ +clean all install nuke: + for i in $(LIBS) $(DIRS); \ do \ - (echo $$i; cd $$i; $(MAKE) $*); \ + (echo $$i; cd $$i; $(MAKE) $@); \ done |
