Atmosphere/stratosphere/Makefile
2019-02-27 01:44:47 -08:00

15 lines
278 B
Makefile

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