9 lines
152 B
Makefile
9 lines
152 B
Makefile
SUBDIRS := $(shell find */* -name "Makefile" | xargs --max-args=1 dirname)
|
|
|
|
.PHONY: subdirs $(SUBDIRS)
|
|
|
|
subdirs: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@
|