Skip to content
midenok edited this page May 20, 2014 · 1 revision
Recurse into subdirs
SUBDIRS = ...

define make-recursive
	for subdir in $(SUBDIRS); do \
		make -C $$subdir $@; \
	done
endef

your_target:
	...
	$(make-recursive)
	...

Clone this wiki locally