1
0
mirror of https://github.com/espressif/esp-idf synced 2025-03-20 22:49:08 -04:00

10 lines
177 B
Makefile
Raw Normal View History

TOPTARGETS := all clean test coverage_report
SUBDIRS := $(wildcard */.)
$(TOPTARGETS): $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTARGETS) $(SUBDIRS)