diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-12 08:25:58 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-12 08:25:58 +0000 |
commit | 7b2139850539c3032956b44fa94c405bbde885e8 (patch) | |
tree | e9181a8bd2122cf297c9e59ffa4f4ae5b4f768bb /demos/STM32/RT-STM32F373-STM32373C_EVAL | |
parent | 81a69797f3d32548fdb2d61c82b835066175c7e2 (diff) | |
download | ChibiOS-7b2139850539c3032956b44fa94c405bbde885e8.tar.gz ChibiOS-7b2139850539c3032956b44fa94c405bbde885e8.tar.bz2 ChibiOS-7b2139850539c3032956b44fa94c405bbde885e8.zip |
Smart build option added to all makefiles.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7963 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/RT-STM32F373-STM32373C_EVAL')
-rw-r--r-- | demos/STM32/RT-STM32F373-STM32373C_EVAL/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/demos/STM32/RT-STM32F373-STM32373C_EVAL/Makefile b/demos/STM32/RT-STM32F373-STM32373C_EVAL/Makefile index 27e12e119..3001ef6ab 100644 --- a/demos/STM32/RT-STM32F373-STM32373C_EVAL/Makefile +++ b/demos/STM32/RT-STM32F373-STM32373C_EVAL/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 = yes
+endif
+
#
# Build global options
##############################################################################
|