summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 6121614b9aeae23beafaa7b781fce4e8559d6ebd (plain) (blame)
1
2
3
4
5
6
7
8
9
dirs := $(subst /Makefile,,$(wildcard */Makefile))
default: $(dirs)
%:
	$(MAKE) -C $@
.PHONY: clean default $(dirs)
clean:
	for dir in $(dirs); do \
		$(MAKE) -C $(CODE_DIR) clean; \
	done