1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-13 23:46:40 +00:00

Merge pull request #306 from misson20000/stratosphere-makefile-kips-modules

stratosphere/Makefile: change KIPS to MODULES
This commit is contained in:
SciresM 2018-12-21 01:11:27 -08:00 committed by GitHub
commit ad3be84ac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)