2025-05-13 19:44:53 +08:00

14 lines
238 B
Makefile

DIRS = $(subst /,, $(dir $(wildcard */Makefile)))
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
.PHONY: all clean cleanup clobber