mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
11 lines
247 B
Makefile
11 lines
247 B
Makefile
|
SUBFOLDERS := exosphere fusee/fusee-primary fusee/fusee-secondary stratosphere/libstratosphere thermosphere
|
||
|
|
||
|
TOPTARGETS := all clean
|
||
|
|
||
|
$(TOPTARGETS): $(SUBFOLDERS)
|
||
|
|
||
|
$(SUBFOLDERS):
|
||
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
||
|
|
||
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|