aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/KINETIS
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/KINETIS')
-rw-r--r--testhal/KINETIS/ADC/Makefile6
-rw-r--r--testhal/KINETIS/I2C/Makefile6
2 files changed, 12 insertions, 0 deletions
diff --git a/testhal/KINETIS/ADC/Makefile b/testhal/KINETIS/ADC/Makefile
index 98467dcc5..4250684cf 100644
--- a/testhal/KINETIS/ADC/Makefile
+++ b/testhal/KINETIS/ADC/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
##############################################################################
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
##############################################################################