From d891a923bc507f28caa69f625079755d1a2083e7 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 15 May 2008 23:29:40 +0000 Subject: moved stuff the trunk --- src/mods/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/mods/Makefile (limited to 'src/mods/Makefile') diff --git a/src/mods/Makefile b/src/mods/Makefile new file mode 100644 index 0000000..7486bc5 --- /dev/null +++ b/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 + -- cgit v1.2.3