summaryrefslogtreecommitdiff
path: root/src/mods/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:41 +0200
commitae4e87df37ed8904de92c7cf2f3a11128cda2a21 (patch)
tree5333f2930165cc6e4083ce15154799626ddb3d03 /src/mods/Makefile
parent9cd3ccffd5372dfde3af478e3f832f18db4be3f1 (diff)
tagging ychat-0.7.4.1ychat-0.7.4.1
Diffstat (limited to 'src/mods/Makefile')
-rwxr-xr-x[-rw-r--r--]src/mods/Makefile12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/mods/Makefile b/src/mods/Makefile
index 7486bc5..1b0712b 100644..100755
--- a/src/mods/Makefile
+++ b/src/mods/Makefile
@@ -1,15 +1,9 @@
-MAKE=gmake
+MAKE=`tail -n 1 ../../make.version`
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
+ @${MAKE} -C ./commands clean #//<<
+ @${MAKE} -C ./html clean
@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
-