diff options
author | Nicolas Reinecke <nr@das-labor.org> | 2016-05-01 01:38:31 +0200 |
---|---|---|
committer | Nicolas Reinecke <nr@das-labor.org> | 2016-05-01 03:28:30 +0200 |
commit | 367bc6bcce15d90b49b040d865c3a8f69321b80e (patch) | |
tree | 2e148b46b925b84387c4d2101e80b34e906150f5 /testhal/STM32/STM32F4xx/FSMC_NAND/Makefile | |
parent | 1a6aba5009bf8ba1672adddb5b24fd7fe1f2c973 (diff) | |
download | ChibiOS-Contrib-367bc6bcce15d90b49b040d865c3a8f69321b80e.tar.gz ChibiOS-Contrib-367bc6bcce15d90b49b040d865c3a8f69321b80e.tar.bz2 ChibiOS-Contrib-367bc6bcce15d90b49b040d865c3a8f69321b80e.zip |
update stm32 demo and testhal projects to upstream chibios
Diffstat (limited to 'testhal/STM32/STM32F4xx/FSMC_NAND/Makefile')
-rw-r--r-- | testhal/STM32/STM32F4xx/FSMC_NAND/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/testhal/STM32/STM32F4xx/FSMC_NAND/Makefile b/testhal/STM32/STM32F4xx/FSMC_NAND/Makefile index 6087197..6ad8126 100644 --- a/testhal/STM32/STM32F4xx/FSMC_NAND/Makefile +++ b/testhal/STM32/STM32F4xx/FSMC_NAND/Makefile @@ -43,6 +43,12 @@ ifeq ($(USE_VERBOSE_COMPILE),) USE_VERBOSE_COMPILE = no endif +# If enabled, this option makes the build process faster by not compiling +# modules not used in the current configuration. +ifeq ($(USE_SMART_BUILD),) + USE_SMART_BUILD = no +endif + # # Build global options ############################################################################## @@ -63,7 +69,7 @@ ifeq ($(USE_EXCEPTIONS_STACKSIZE),) USE_EXCEPTIONS_STACKSIZE = 0x400 endif -# Enables the use of FPU on Cortex-M4 (no, softfp, hard). +# Enables the use of FPU (no, softfp, hard). ifeq ($(USE_FPU),) USE_FPU = no endif @@ -94,7 +100,7 @@ include $(CHIBIOS)/os/rt/rt.mk include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk # Define linker script file here -LDSCRIPT= $(STARTUPLD)/STM32F407xG.ld +LDSCRIPT = $(STARTUPLD)/STM32F407xG.ld # C sources that can be compiled in ARM or THUMB mode depending on the global # setting. @@ -146,7 +152,6 @@ INCDIR = $(CHIBIOS)/os/license \ $(CHIBIOS)/os/various \ $(CHIBIOS_CONTRIB)/os/various - # # Project, sources and paths ############################################################################## @@ -181,7 +186,7 @@ AOPT = TOPT = -mthumb -DTHUMB # Define C warning options here -CWARN = -Wall -Wextra -Wstrict-prototypes +CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes # Define C++ warning options here CPPWARN = -Wall -Wextra |