aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile10
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