allow for separation of user and system libraries so that it's easy to override system libraries with custom / experimental versions
This commit is contained in:
parent
184230fcf2
commit
91b6644aa5
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ ECHO = echo
|
|||
|
||||
# General arguments
|
||||
SYS_LIBS = $(patsubst %,$(ARDUINO_LIB_PATH)/%,$(ARDUINO_LIBS))
|
||||
USER_LIBS = $(patsubst %,$(USER_LIB_PATH)/%,$(ARDUINO_LIBS))
|
||||
USER_LIBS = $(patsubst %,$(USER_LIB_PATH)/%,$(ARDUINO_USR_LIBS))
|
||||
SYS_INCLUDES = $(patsubst %,-I%,$(SYS_LIBS))
|
||||
USER_INCLUDES = $(patsubst %,-I%,$(USER_LIBS))
|
||||
LIB_C_SRCS = $(wildcard $(patsubst %,%/*.c,$(SYS_LIBS)))
|
||||
|
|
Loading…
Reference in a new issue