blob: 7486bc5938f255297def855ad21783d33e87176f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|