newtree/Makefile

10 lines
111 B
Makefile

#!/usr/bin/make
SUBDIRS = source
all %:
@for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@ || exit; \
done