diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2016-08-11 09:24:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-11 09:24:52 +0200 |
commit | b153796a5dd6aff59e8f22c50f6017d175c76e0a (patch) | |
tree | 684d289629865e95cc48ccb7d5d233e516a295e8 /testhal/TIVA/TM4C123x/SPI/Makefile | |
parent | 569aa39fbad9b47efe45635850f82c040c765318 (diff) | |
parent | 1853428c80a396bb3434c50920ef5d10766c6a14 (diff) | |
download | ChibiOS-Contrib-b153796a5dd6aff59e8f22c50f6017d175c76e0a.tar.gz ChibiOS-Contrib-b153796a5dd6aff59e8f22c50f6017d175c76e0a.tar.bz2 ChibiOS-Contrib-b153796a5dd6aff59e8f22c50f6017d175c76e0a.zip |
Merge pull request #94 from marcoveeneman/tiva-improvements
Tiva smart build support
Diffstat (limited to 'testhal/TIVA/TM4C123x/SPI/Makefile')
-rw-r--r-- | testhal/TIVA/TM4C123x/SPI/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testhal/TIVA/TM4C123x/SPI/Makefile b/testhal/TIVA/TM4C123x/SPI/Makefile index f587083..f2833ec 100644 --- a/testhal/TIVA/TM4C123x/SPI/Makefile +++ b/testhal/TIVA/TM4C123x/SPI/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 ############################################################################## |