Skip to content
Snippets Groups Projects
Makefile 171 B
Newer Older
SUBDIRS := $(shell find . -mindepth 1 -maxdepth 1 -type d -name "*")
all clean run: $(SUBDIRS)
$(SUBDIRS):
	$(MAKE) -C $@ $(MAKECMDGOALS)

.PHONY: all clean $(SUBDIRS)