Atmosphere/stratosphere/Makefile
2018-12-05 23:36:12 -08:00

16 lines
286 B
Makefile

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