topdir.mk: Add sudir recursion to all targets

This commit is contained in:
Jan Lindemann 2007-05-23 11:30:53 +00:00 committed by Jan Lindemann
commit d8c6c12f6d

View file

@ -1,3 +1,5 @@
SUBDIRS ?= make
local-%:
find . -name $@.mk | \
while read f; do (\
@ -8,3 +10,7 @@ local-%:
unlocal:
rm -f $(shell find . -name local.mk)
all setup install clean distclean:
set -e; for d in $(SUBDIRS); do make -C $$d $@; done