stratosphere/Makefile: change KIPS to MODULES

This commit is contained in:
misson20000 2018-12-21 00:27:43 -08:00
parent 34c16e211f
commit a01d0e94f8

View file

@ -1,8 +1,6 @@
KIPS := loader pm sm boot fs_mitm set_mitm creport fatal
MODULES := loader pm sm boot fs_mitm set_mitm creport fatal
#TODO: boot2 ?
SUBFOLDERS := libstratosphere $(KIPS)
SUBFOLDERS := libstratosphere $(MODULES)
TOPTARGETS := all clean
@ -11,6 +9,6 @@ $(TOPTARGETS): $(SUBFOLDERS)
$(SUBFOLDERS):
$(MAKE) -C $@ $(MAKECMDGOALS)
$(KIPS): libstratosphere
$(MODULES): libstratosphere
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)