aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demos/AVR/NIL-ARDUINO-MEGA/Makefile3
-rw-r--r--demos/AVR/NIL-ARDUINO-UNO/Makefile3
-rw-r--r--demos/AVR/RT-ARDUINO-LEONARDO/Makefile3
-rw-r--r--demos/AVR/RT-ARDUINO-MEGA/Makefile3
-rw-r--r--demos/AVR/RT-ARDUINO-MINI/Makefile3
-rw-r--r--demos/AVR/RT-ARDUINO-NANO/Makefile3
-rw-r--r--demos/AVR/RT-ARDUINO-UNO/Makefile3
-rw-r--r--demos/AVR/RT-PRO-MICRO/Makefile3
-rw-r--r--demos/AVR/RT-TEENSY2-USB/Makefile3
-rw-r--r--testhal/AVR/ADC/Makefile3
-rw-r--r--testhal/AVR/EXT/Makefile3
-rw-r--r--testhal/AVR/GPT/Makefile3
-rw-r--r--testhal/AVR/I2C/Makefile3
-rw-r--r--testhal/AVR/ICU/Makefile3
-rw-r--r--testhal/AVR/PWM/Makefile3
-rw-r--r--testhal/AVR/SPI/Makefile3
16 files changed, 48 insertions, 0 deletions
diff --git a/demos/AVR/NIL-ARDUINO-MEGA/Makefile b/demos/AVR/NIL-ARDUINO-MEGA/Makefile
index 161ecd928..6640259e8 100644
--- a/demos/AVR/NIL-ARDUINO-MEGA/Makefile
+++ b/demos/AVR/NIL-ARDUINO-MEGA/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/demos/AVR/NIL-ARDUINO-UNO/Makefile b/demos/AVR/NIL-ARDUINO-UNO/Makefile
index 43180c1ff..2668c9b00 100644
--- a/demos/AVR/NIL-ARDUINO-UNO/Makefile
+++ b/demos/AVR/NIL-ARDUINO-UNO/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega328p
diff --git a/demos/AVR/RT-ARDUINO-LEONARDO/Makefile b/demos/AVR/RT-ARDUINO-LEONARDO/Makefile
index 506592974..de8f8f5ee 100644
--- a/demos/AVR/RT-ARDUINO-LEONARDO/Makefile
+++ b/demos/AVR/RT-ARDUINO-LEONARDO/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega32u4
diff --git a/demos/AVR/RT-ARDUINO-MEGA/Makefile b/demos/AVR/RT-ARDUINO-MEGA/Makefile
index 72a042845..39542c4be 100644
--- a/demos/AVR/RT-ARDUINO-MEGA/Makefile
+++ b/demos/AVR/RT-ARDUINO-MEGA/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/demos/AVR/RT-ARDUINO-MINI/Makefile b/demos/AVR/RT-ARDUINO-MINI/Makefile
index 0b63fe11c..27fb26fd2 100644
--- a/demos/AVR/RT-ARDUINO-MINI/Makefile
+++ b/demos/AVR/RT-ARDUINO-MINI/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega328p
diff --git a/demos/AVR/RT-ARDUINO-NANO/Makefile b/demos/AVR/RT-ARDUINO-NANO/Makefile
index 471bcafda..6484385ba 100644
--- a/demos/AVR/RT-ARDUINO-NANO/Makefile
+++ b/demos/AVR/RT-ARDUINO-NANO/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega328p
diff --git a/demos/AVR/RT-ARDUINO-UNO/Makefile b/demos/AVR/RT-ARDUINO-UNO/Makefile
index 48991f9f1..d6c33a3f6 100644
--- a/demos/AVR/RT-ARDUINO-UNO/Makefile
+++ b/demos/AVR/RT-ARDUINO-UNO/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega328p
diff --git a/demos/AVR/RT-PRO-MICRO/Makefile b/demos/AVR/RT-PRO-MICRO/Makefile
index e162b0b90..f9a854287 100644
--- a/demos/AVR/RT-PRO-MICRO/Makefile
+++ b/demos/AVR/RT-PRO-MICRO/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega32u4
diff --git a/demos/AVR/RT-TEENSY2-USB/Makefile b/demos/AVR/RT-TEENSY2-USB/Makefile
index 6f540b11c..242fae2e0 100644
--- a/demos/AVR/RT-TEENSY2-USB/Makefile
+++ b/demos/AVR/RT-TEENSY2-USB/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = at90usb1286
diff --git a/testhal/AVR/ADC/Makefile b/testhal/AVR/ADC/Makefile
index 54baefdaa..1a85c215b 100644
--- a/testhal/AVR/ADC/Makefile
+++ b/testhal/AVR/ADC/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/testhal/AVR/EXT/Makefile b/testhal/AVR/EXT/Makefile
index d13875563..9a87cf0a8 100644
--- a/testhal/AVR/EXT/Makefile
+++ b/testhal/AVR/EXT/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/testhal/AVR/GPT/Makefile b/testhal/AVR/GPT/Makefile
index 54baefdaa..1a85c215b 100644
--- a/testhal/AVR/GPT/Makefile
+++ b/testhal/AVR/GPT/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/testhal/AVR/I2C/Makefile b/testhal/AVR/I2C/Makefile
index 5cdc3ffdf..8e5413576 100644
--- a/testhal/AVR/I2C/Makefile
+++ b/testhal/AVR/I2C/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/testhal/AVR/ICU/Makefile b/testhal/AVR/ICU/Makefile
index 2f86af8bf..7e410d01c 100644
--- a/testhal/AVR/ICU/Makefile
+++ b/testhal/AVR/ICU/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/testhal/AVR/PWM/Makefile b/testhal/AVR/PWM/Makefile
index 54baefdaa..1a85c215b 100644
--- a/testhal/AVR/PWM/Makefile
+++ b/testhal/AVR/PWM/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega2560
diff --git a/testhal/AVR/SPI/Makefile b/testhal/AVR/SPI/Makefile
index b13d75b57..cc4c2b459 100644
--- a/testhal/AVR/SPI/Makefile
+++ b/testhal/AVR/SPI/Makefile
@@ -39,6 +39,9 @@
# To rebuild project do "make clean" then "make all".
#----------------------------------------------------------------------------
+# Configuration of Smart Build. (can be yes, no)
+USE_SMART_BUILD = yes
+
# MCU name
MCU = atmega328p