From a01d0e94f8da69bceffbcbca875b5c092be7955a Mon Sep 17 00:00:00 2001 From: misson20000 Date: Fri, 21 Dec 2018 00:27:43 -0800 Subject: [PATCH] stratosphere/Makefile: change KIPS to MODULES --- stratosphere/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/stratosphere/Makefile b/stratosphere/Makefile index 61e6a119c..5369af9e4 100644 --- a/stratosphere/Makefile +++ b/stratosphere/Makefile @@ -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)