diff options
Diffstat (limited to 'testhal/KINETIS/I2C/Makefile')
-rw-r--r-- | testhal/KINETIS/I2C/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testhal/KINETIS/I2C/Makefile b/testhal/KINETIS/I2C/Makefile index 63446d584..1d3773012 100644 --- a/testhal/KINETIS/I2C/Makefile +++ b/testhal/KINETIS/I2C/Makefile @@ -44,6 +44,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
##############################################################################
|