Atmosphere/stratosphere/Makefile

17 lines
262 B
Makefile
Raw Normal View History

2018-08-02 20:32:51 +00:00
KIPS := loader pm sm boot fs_mitm creport
#TODO: boot2 ?
SUBFOLDERS := libstratosphere $(KIPS)
TOPTARGETS := all clean
$(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
$(KIPS): libstratosphere
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)