Atmosphere/stratosphere/Makefile
2019-07-25 22:53:32 +10:00

14 lines
289 B
Makefile

MODULES := loader pm sm boot ams_mitm spl eclct.stub ro creport fatal dmnt ncm
SUBFOLDERS := libstratosphere $(MODULES)
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
$(MODULES): libstratosphere
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)