12 lines
164 B
Makefile
12 lines
164 B
Makefile
DIRS = sim
|
|
|
|
all:
|
|
|
|
clean cleanup clobber:
|
|
for D in $(DIRS); do\
|
|
if [ -f $$D/Makefile ] ; then \
|
|
echo "make -C $$D -s $@";\
|
|
make -C $$D -s $@;\
|
|
fi;\
|
|
done
|