19 lines
554 B
Plaintext
19 lines
554 B
Plaintext
# You can set flags specifically for your module by using the MODULE_XCC_FLAGS
|
|
# variable. So the following
|
|
#
|
|
# MODULE_XCC_FLAGS = $(XCC_FLAGS) -O3
|
|
#
|
|
# specifies that everything in the modules should have the application
|
|
# build flags with -O3 appended (so the files will build at
|
|
# optimization level -O3).
|
|
#
|
|
# You can also set MODULE_XCC_C_FLAGS, MODULE_XCC_XC_FLAGS etc..
|
|
|
|
MODULE_XCC_XC_FLAGS = $(XCC_XC_FLAGS) -O3
|
|
|
|
VERSION = 3.1.0
|
|
|
|
DEPENDENT_MODULES = lib_xassert(>=3.0.0) lib_gpio(>=1.1.0) lib_logging(>=2.1.0)
|
|
|
|
OPTIONAL_HEADERS += uart_rx_conf.h
|