aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSimon John <git@the-jedi.co.uk>2014-09-21 18:23:06 +0100
committerSimon John <git@the-jedi.co.uk>2014-09-21 19:36:50 +0100
commit6be2614c30a0d37a7c579df2805fbf8c192ca57a (patch)
treea31d0dfc702fefcc87cf334497b6149252a9e026 /examples
parentee1855c6b1aabf4d50afcfba69cecd2417d27237 (diff)
Removed Travis-CI references from all examples. Regular users
are not affected by test scripts/makefiles. Added makefile and gcc version info to config output. Tested on Arduino 1.0.6
Diffstat (limited to 'examples')
-rw-r--r--examples/AnalogInOutSerial/Makefile1
-rw-r--r--examples/Blink/Makefile1
-rw-r--r--examples/BlinkChipKIT/Makefile1
-rw-r--r--examples/BlinkInAVRC/Makefile3
-rw-r--r--examples/BlinkWithoutDelay/Makefile1
-rw-r--r--examples/Fade/Makefile1
-rw-r--r--examples/HelloWorld/Makefile1
-rw-r--r--examples/TestSuiteCommon.mk13
-rw-r--r--examples/TinySoftWareSerial/Makefile1
-rw-r--r--examples/WebServer/Makefile1
-rw-r--r--examples/master_reader/Makefile1
-rw-r--r--examples/toneMelody/Makefile1
12 files changed, 1 insertions, 25 deletions
diff --git a/examples/AnalogInOutSerial/Makefile b/examples/AnalogInOutSerial/Makefile
index 872d069..3dea6c0 100644
--- a/examples/AnalogInOutSerial/Makefile
+++ b/examples/AnalogInOutSerial/Makefile
@@ -1,5 +1,4 @@
BOARD_TAG = uno
ARDUINO_LIBS =
-include ../TestSuiteCommon.mk
include ../../Arduino.mk
diff --git a/examples/Blink/Makefile b/examples/Blink/Makefile
index d41effa..7678e9b 100644
--- a/examples/Blink/Makefile
+++ b/examples/Blink/Makefile
@@ -1,6 +1,5 @@
BOARD_TAG = uno
ARDUINO_LIBS =
-include ../TestSuiteCommon.mk
include ../../Arduino.mk
diff --git a/examples/BlinkChipKIT/Makefile b/examples/BlinkChipKIT/Makefile
index bec2794..87a9f7d 100644
--- a/examples/BlinkChipKIT/Makefile
+++ b/examples/BlinkChipKIT/Makefile
@@ -1,6 +1,5 @@
BOARD_TAG = mega_pic32
ARDUINO_LIBS =
-include ../TestSuiteCommon.mk
include ../../chipKIT.mk
diff --git a/examples/BlinkInAVRC/Makefile b/examples/BlinkInAVRC/Makefile
index 9080b24..a4cd2e4 100644
--- a/examples/BlinkInAVRC/Makefile
+++ b/examples/BlinkInAVRC/Makefile
@@ -11,7 +11,6 @@ F_CPU = 8000000L
ISP_PROG = stk500v1
AVRDUDE_ISP_BAUDRATE = 19200
-include ../TestSuiteCommon.mk
-include $(ARDMK_DIR)/Arduino.mk
+include ../../Arduino.mk
# !!! Important. You have to use make ispload to upload when using ISP programmer
diff --git a/examples/BlinkWithoutDelay/Makefile b/examples/BlinkWithoutDelay/Makefile
index 872d069..3dea6c0 100644
--- a/examples/BlinkWithoutDelay/Makefile
+++ b/examples/BlinkWithoutDelay/Makefile
@@ -1,5 +1,4 @@
BOARD_TAG = uno
ARDUINO_LIBS =
-include ../TestSuiteCommon.mk
include ../../Arduino.mk
diff --git a/examples/Fade/Makefile b/examples/Fade/Makefile
index 872d069..3dea6c0 100644
--- a/examples/Fade/Makefile
+++ b/examples/Fade/Makefile
@@ -1,5 +1,4 @@
BOARD_TAG = uno
ARDUINO_LIBS =
-include ../TestSuiteCommon.mk
include ../../Arduino.mk
diff --git a/examples/HelloWorld/Makefile b/examples/HelloWorld/Makefile
index 0af2ed4..fb94fdd 100644
--- a/examples/HelloWorld/Makefile
+++ b/examples/HelloWorld/Makefile
@@ -1,5 +1,4 @@
BOARD_TAG = uno
ARDUINO_LIBS = LiquidCrystal
-include ../TestSuiteCommon.mk
include ../../Arduino.mk
diff --git a/examples/TestSuiteCommon.mk b/examples/TestSuiteCommon.mk
deleted file mode 100644
index a66a007..0000000
--- a/examples/TestSuiteCommon.mk
+++ /dev/null
@@ -1,13 +0,0 @@
-ARDMK_DIR=../../
-DEPENDENCIES_FOLDER = /var/tmp/Arduino-Makefile-testing-dependencies
-DEPENDENCIES_MPIDE_DIR = $(DEPENDENCIES_FOLDER)/mpide-0023-linux64-20130817-test
-
-ifeq ($(MPIDE_DIR),)
- MPIDE_DIR = $(DEPENDENCIES_MPIDE_DIR)
-endif
-
-DEPENDENCIES_ARDUINO_DIR = $(DEPENDENCIES_FOLDER)/arduino-1.0.5
-
-ifeq ($(ARDUINO_DIR),)
- ARDUINO_DIR = $(DEPENDENCIES_ARDUINO_DIR)
-endif
diff --git a/examples/TinySoftWareSerial/Makefile b/examples/TinySoftWareSerial/Makefile
index 991e57e..08f918d 100644
--- a/examples/TinySoftWareSerial/Makefile
+++ b/examples/TinySoftWareSerial/Makefile
@@ -9,7 +9,6 @@ BOARD_TAG = attiny85-8
ARDUINO_LIBS = SoftwareSerial
-include ../TestSuiteCommon.mk
include $(ARDMK_DIR)/Arduino.mk
# !!! Important. You have to use make ispload to upload when using ISP programmer
diff --git a/examples/WebServer/Makefile b/examples/WebServer/Makefile
index 5fbefae..51b9ac2 100644
--- a/examples/WebServer/Makefile
+++ b/examples/WebServer/Makefile
@@ -3,5 +3,4 @@
BOARD_TAG = uno
ARDUINO_LIBS = Ethernet SPI
-include ../TestSuiteCommon.mk
include ../../Arduino.mk
diff --git a/examples/master_reader/Makefile b/examples/master_reader/Makefile
index 8a42a8e..3030deb 100644
--- a/examples/master_reader/Makefile
+++ b/examples/master_reader/Makefile
@@ -3,5 +3,4 @@
BOARD_TAG = uno
ARDUINO_LIBS = Wire
-include ../TestSuiteCommon.mk
include ../../Arduino.mk
diff --git a/examples/toneMelody/Makefile b/examples/toneMelody/Makefile
index 872d069..3dea6c0 100644
--- a/examples/toneMelody/Makefile
+++ b/examples/toneMelody/Makefile
@@ -1,5 +1,4 @@
BOARD_TAG = uno
ARDUINO_LIBS =
-include ../TestSuiteCommon.mk
include ../../Arduino.mk