mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-13 18:51:01 +01:00
13 lines
240 B
Makefile
13 lines
240 B
Makefile
SUBFOLDERS := exosphere fusee stratosphere thermosphere
|
|
|
|
TOPTARGETS := all clean
|
|
|
|
$(TOPTARGETS): $(SUBFOLDERS)
|
|
|
|
$(SUBFOLDERS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
fusee: exosphere thermosphere stratosphere
|
|
|
|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
|