diff options
author | Theodore Ateba <tf.ateba@gmail.com> | 2017-07-14 09:39:23 +0000 |
---|---|---|
committer | Theodore Ateba <tf.ateba@gmail.com> | 2017-07-14 09:39:23 +0000 |
commit | 42278a5df96b1ccf5e64a0e81b1302ad0399aa54 (patch) | |
tree | 53e27b1dbc2107979b043eb96eb662f26a4c7581 /testhal/AVR | |
parent | 93a50c1962a669a24e25207281bd558529d42916 (diff) | |
download | ChibiOS-42278a5df96b1ccf5e64a0e81b1302ad0399aa54.tar.gz ChibiOS-42278a5df96b1ccf5e64a0e81b1302ad0399aa54.tar.bz2 ChibiOS-42278a5df96b1ccf5e64a0e81b1302ad0399aa54.zip |
Update all AVR Makefile with the SMART BUILD variable.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10331 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/AVR')
-rw-r--r-- | testhal/AVR/ADC/Makefile | 3 | ||||
-rw-r--r-- | testhal/AVR/EXT/Makefile | 3 | ||||
-rw-r--r-- | testhal/AVR/GPT/Makefile | 3 | ||||
-rw-r--r-- | testhal/AVR/I2C/Makefile | 3 | ||||
-rw-r--r-- | testhal/AVR/ICU/Makefile | 3 | ||||
-rw-r--r-- | testhal/AVR/PWM/Makefile | 3 | ||||
-rw-r--r-- | testhal/AVR/SPI/Makefile | 3 |
7 files changed, 21 insertions, 0 deletions
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
|