Atmosphere/stratosphere/Makefile
2018-10-31 05:04:00 +09:00

16 lines
271 B
Makefile

KIPS := loader pm sm boot fs_mitm set_mitm creport
#TODO: boot2 ?
SUBFOLDERS := libstratosphere $(KIPS)
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
$(KIPS): libstratosphere
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)