mirror of
https://github.com/cathery/sys-con.git
synced 2024-12-25 09:14:35 +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"]
|
[submodule "source/Atmosphere-libs"]
|
||||||
path = source/libstratosphere
|
path = source/Atmosphere-libs
|
||||||
url = https://github.com/Atmosphere-NX/Atmosphere-libs.git
|
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
|
TOPTARGETS := all clean mrproper
|
||||||
|
|
||||||
.PHONY: $(TOPTARGETS) $(COMPONENTS)
|
.PHONY: $(TOPTARGETS) $(COMPONENTS)
|
||||||
|
|
||||||
all: $(COMPONENTS)
|
all: $(COMPONENTS)
|
||||||
|
|
||||||
libstratosphere:
|
$(Libstrat):
|
||||||
@echo Building libstratosphere...
|
@echo Building libstratosphere...
|
||||||
@$(MAKE) --no-print-directory -C $@
|
@$(MAKE) --no-print-directory -C $@
|
||||||
|
|
||||||
@ -13,7 +14,7 @@ AppletCompanion:
|
|||||||
@echo Building applet companion...
|
@echo Building applet companion...
|
||||||
@$(MAKE) --no-print-directory -C $@
|
@$(MAKE) --no-print-directory -C $@
|
||||||
|
|
||||||
Sysmodule: libstratosphere
|
Sysmodule: $(Libstrat)
|
||||||
@echo Building sysmodule...
|
@echo Building sysmodule...
|
||||||
@$(MAKE) --no-print-directory -C $@
|
@$(MAKE) --no-print-directory -C $@
|
||||||
|
|
||||||
@ -25,4 +26,4 @@ clean:
|
|||||||
|
|
||||||
mrproper: clean
|
mrproper: clean
|
||||||
@echo Cleaning libstratosphere...
|
@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
|
# 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
|
TARGET := sys-con
|
||||||
SOURCES += ../ControllerSwitch ../ControllerLib ../ControllerLib/Controllers ../inih
|
SOURCES += ../ControllerSwitch ../ControllerLib ../ControllerLib/Controllers ../inih
|
||||||
|
Loading…
Reference in New Issue
Block a user