mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
10 lines
193 B
Makefile
10 lines
193 B
Makefile
SUBFOLDERS := fusee-primary fusee-mtc fusee-secondary
|
|
|
|
TOPTARGETS := all clean
|
|
|
|
$(TOPTARGETS): $(SUBFOLDERS)
|
|
|
|
$(SUBFOLDERS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|