diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-15 23:29:40 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-15 23:29:40 +0000 |
| commit | d891a923bc507f28caa69f625079755d1a2083e7 (patch) | |
| tree | 03ae20f0ecd1590629ec1e720026ccf34ddaac3f /src/mods/Makefile | |
moved stuff the trunk
Diffstat (limited to 'src/mods/Makefile')
| -rw-r--r-- | src/mods/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
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 + |
