kopia lustrzana https://github.com/bristol-seds/pico-tracker
9 wiersze
122 B
Makefile
9 wiersze
122 B
Makefile
![]() |
# Recursive Make
|
||
|
SUBDIRS := $(wildcard */Makefile)
|
||
|
|
||
|
all: $(SUBDIRS)
|
||
|
$(SUBDIRS):
|
||
|
$(MAKE) -C $(@D)
|
||
|
|
||
|
.PHONY: all $(SUBDIRS)
|