Atmosphere/stratosphere/Makefile

15 lines
281 B
Makefile
Raw Normal View History

2019-04-21 00:43:56 +00:00
MODULES := loader pm sm boot ams_mitm eclct.stub ro creport fatal dmnt
SUBFOLDERS := libstratosphere $(MODULES)
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
$(MODULES): libstratosphere
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)