mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
0075a42d39
* Changed PACKAGE2_MAXVER_400_CURRENT to PACKAGE2_MAXVER_400_410. * Added top-level makefile and a .gitignore for thermosphere build files.
10 lines
247 B
Makefile
10 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)
|