summaryrefslogtreecommitdiff
path: root/0.8/src/mods/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '0.8/src/mods/Makefile')
-rw-r--r--0.8/src/mods/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/0.8/src/mods/Makefile b/0.8/src/mods/Makefile
new file mode 100644
index 0000000..7486bc5
--- /dev/null
+++ b/0.8/src/mods/Makefile
@@ -0,0 +1,15 @@
+MAKE=gmake
+all: mods
+mods:
+ @${MAKE} -C ./commands #//<<
+ @${MAKE} -C ./html
+clean:
+ @for i in commands html; do \
+ if [ -f $$i/Makefile ]; then ${MAKE} -C ./$$i clean; \
+ fi; done
+ @if test -d ../../mods; then rm -Rf ../../mods; fi
+mrproper: clean
+ @for i in commands html; do \
+ if [ -f $$i/Makefile ]; then rm -f $$i/Makefile; \
+ fi; done
+