mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
10 lines
177 B
Makefile
10 lines
177 B
Makefile
|
TOPTARGETS := all clean test coverage_report
|
||
|
|
||
|
SUBDIRS := $(wildcard */.)
|
||
|
|
||
|
$(TOPTARGETS): $(SUBDIRS)
|
||
|
$(SUBDIRS):
|
||
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
||
|
|
||
|
.PHONY: $(TOPTARGETS) $(SUBDIRS)
|