mirror of
https://github.com/cathery/sys-con.git
synced 2024-11-16 14:09:51 +00:00
Only build libstratosphere
This commit is contained in:
parent
dd5cf85f69
commit
d6f8b3783e
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,3 +1,3 @@
|
||||
[submodule "source/libstratosphere"]
|
||||
path = source/libstratosphere
|
||||
[submodule "source/Atmosphere-libs"]
|
||||
path = source/Atmosphere-libs
|
||||
url = https://github.com/Atmosphere-NX/Atmosphere-libs.git
|
||||
|
@ -1,11 +1,12 @@
|
||||
COMPONENTS := libstratosphere AppletCompanion Sysmodule
|
||||
Libstrat := Atmosphere-libs/libstratosphere
|
||||
COMPONENTS := $(Libstrat) AppletCompanion Sysmodule
|
||||
TOPTARGETS := all clean mrproper
|
||||
|
||||
.PHONY: $(TOPTARGETS) $(COMPONENTS)
|
||||
|
||||
all: $(COMPONENTS)
|
||||
|
||||
libstratosphere:
|
||||
$(Libstrat):
|
||||
@echo Building libstratosphere...
|
||||
@$(MAKE) --no-print-directory -C $@
|
||||
|
||||
@ -13,7 +14,7 @@ AppletCompanion:
|
||||
@echo Building applet companion...
|
||||
@$(MAKE) --no-print-directory -C $@
|
||||
|
||||
Sysmodule: libstratosphere
|
||||
Sysmodule: $(Libstrat)
|
||||
@echo Building sysmodule...
|
||||
@$(MAKE) --no-print-directory -C $@
|
||||
|
||||
@ -25,4 +26,4 @@ clean:
|
||||
|
||||
mrproper: clean
|
||||
@echo Cleaning libstratosphere...
|
||||
@$(MAKE) --no-print-directory -C libstratosphere clean
|
||||
@$(MAKE) --no-print-directory -C $(Libstrat) clean
|
@ -1,7 +1,7 @@
|
||||
#---------------------------------------------------------------------------------
|
||||
# pull in common stratosphere sysmodule configuration
|
||||
#---------------------------------------------------------------------------------
|
||||
include $(dir $(abspath $(lastword $(MAKEFILE_LIST))))/../libstratosphere/config/templates/stratosphere.mk
|
||||
include $(dir $(abspath $(lastword $(MAKEFILE_LIST))))/../Atmosphere-libs/config/templates/stratosphere.mk
|
||||
|
||||
TARGET := sys-con
|
||||
SOURCES += ../ControllerSwitch ../ControllerLib ../ControllerLib/Controllers ../inih
|
||||
|
Loading…
Reference in New Issue
Block a user