Atmosphere/stratosphere/Makefile
2019-04-25 11:24:25 -07:00

14 lines
285 B
Makefile

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