Merge pull request #14385 from aabadie/pr/make/appdeps_export
boards/mips: remove use of APPDEPS, un-export globally APPDEPS
This commit is contained in:
commit
41888674a4
@ -1,5 +1,3 @@
|
||||
APPDEPS += $(RIOTCPU)/$(CPU)/$(CPU_MODEL)/$(CPU_MODEL).S
|
||||
|
||||
# use pic32prog by default to program this board
|
||||
PROGRAMMER ?= pic32prog
|
||||
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
APPDEPS += $(RIOTCPU)/$(CPU)/$(CPU_MODEL)/$(CPU_MODEL).S
|
||||
|
||||
PORT_LINUX ?= /dev/ttyUSB0
|
||||
include $(RIOTMAKE)/tools/serial.inc.mk
|
||||
|
||||
|
||||
@ -4,4 +4,8 @@ USEMODULE += mips_pic32_common_periph
|
||||
# mips32 needs periph_timer for its gettimeofday() implementation
|
||||
USEMODULE += periph_timer
|
||||
|
||||
# add module defining cpu model specific symbols. This module is located in
|
||||
# $(RIOTCPU)/$(CPU)/$(CPU_MODEL)
|
||||
USEMODULE += $(CPU_MODEL)
|
||||
|
||||
include $(RIOTCPU)/mips32r2_common/Makefile.dep
|
||||
|
||||
@ -3,3 +3,5 @@ include $(RIOTCPU)/mips32r2_common/Makefile.include
|
||||
CFLAGS += -DCPU_FAM_$(call uppercase_and_underscore,$(CPU_FAM))
|
||||
|
||||
INCLUDES += -I$(RIOTCPU)/mips_pic32_common/include
|
||||
|
||||
DIRS += $(RIOTCPU)/$(CPU)/$(CPU_MODEL)
|
||||
|
||||
2
dist/tools/buildsystem_sanity_check/check.sh
vendored
2
dist/tools/buildsystem_sanity_check/check.sh
vendored
@ -109,9 +109,9 @@ UNEXPORTED_VARIABLES+=('JLINK_DEVICE' 'JLINK_IF')
|
||||
UNEXPORTED_VARIABLES+=('JLINK_PRE_FLASH' 'JLINK_RESET_FILE')
|
||||
UNEXPORTED_VARIABLES+=('GIT_CACHE' 'GIT_CACHE_DIR')
|
||||
UNEXPORTED_VARIABLES+=('LINKXX')
|
||||
UNEXPORTED_VARIABLES+=('APPDEPS' 'BUILDDEPS' 'DEBUGDEPS')
|
||||
|
||||
EXPORTED_VARIABLES_ONLY_IN_VARS=()
|
||||
EXPORTED_VARIABLES_ONLY_IN_VARS+=('APPDEPS')
|
||||
EXPORTED_VARIABLES_ONLY_IN_VARS+=('CPU_ARCH')
|
||||
EXPORTED_VARIABLES_ONLY_IN_VARS+=('CPU_CORE')
|
||||
EXPORTED_VARIABLES_ONLY_IN_VARS+=('CPU_FAM')
|
||||
|
||||
@ -23,7 +23,7 @@ export NATIVEINCLUDES # The native include paths, set by the various nati
|
||||
export USEMODULE # Sys Module dependencies of the application. Set in the application's Makefile.
|
||||
export USEPKG # Pkg dependencies (third party modules) of the application. Set in the application's Makefile.
|
||||
export DISABLE_MODULE # Used in the application's Makefile to suppress DEFAULT_MODULEs.
|
||||
export APPDEPS # Files / Makefile targets that need to be created before the application can be build. Set in the application's Makefile.
|
||||
# APPDEPS # Files / Makefile targets that need to be created before the application can be build. Set in the application's Makefile.
|
||||
# BUILDDEPS # Files / Makefile targets that need to be created before starting to build.
|
||||
# DEBUGDEPS # Files / Makefile targets that need to be created before starting a debug session.
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user