aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSudar <sudar@sudarmuthu.com>2014-01-14 14:36:24 +0530
committerSudar <sudar@sudarmuthu.com>2014-01-14 14:36:24 +0530
commitce9c54848f4f1f991f3befe5af4938ab261d08a5 (patch)
tree756aee99e92e8be60f849532ca6645ecfd494f9d /examples
parentd4e0a383ae6ad13615e1c82a48646886cf175d2f (diff)
Remove `arduino-mk` folder from all examples
Fix #154
Diffstat (limited to 'examples')
-rw-r--r--examples/ATtinyBlink/Makefile2
-rw-r--r--examples/AnalogInOutSerial/Makefile2
-rw-r--r--examples/Blink/Makefile2
-rw-r--r--examples/BlinkChipKIT/Makefile2
-rw-r--r--examples/BlinkInAVRC/Makefile2
-rw-r--r--examples/BlinkWithoutDelay/Makefile2
-rw-r--r--examples/Fade/Makefile2
-rw-r--r--examples/HelloWorld/Makefile2
-rw-r--r--examples/TinySoftWareSerial/Makefile2
-rw-r--r--examples/WebServer/Makefile2
-rw-r--r--examples/master_reader/Makefile2
-rw-r--r--examples/toneMelody/Makefile2
12 files changed, 12 insertions, 12 deletions
diff --git a/examples/ATtinyBlink/Makefile b/examples/ATtinyBlink/Makefile
index 12d4a1f..a89de1c 100644
--- a/examples/ATtinyBlink/Makefile
+++ b/examples/ATtinyBlink/Makefile
@@ -8,6 +8,6 @@ ALTERNATE_CORE = attiny
BOARD_TAG = attiny85-8
ISP_PORT = /dev/ttyACM*
-include $(ARDMK_DIR)/arduino-mk/Arduino.mk
+include $(ARDMK_DIR)/Arduino.mk
# !!! Important. You have to use make ispload to upload when using ISP programmer
diff --git a/examples/AnalogInOutSerial/Makefile b/examples/AnalogInOutSerial/Makefile
index c971b12..0e3d886 100644
--- a/examples/AnalogInOutSerial/Makefile
+++ b/examples/AnalogInOutSerial/Makefile
@@ -2,4 +2,4 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS =
-include ../../arduino-mk/Arduino.mk \ No newline at end of file
+include ../../Arduino.mk
diff --git a/examples/Blink/Makefile b/examples/Blink/Makefile
index 344c0f0..e202b14 100644
--- a/examples/Blink/Makefile
+++ b/examples/Blink/Makefile
@@ -2,5 +2,5 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS =
-include ../../arduino-mk/Arduino.mk
+include ../../Arduino.mk
diff --git a/examples/BlinkChipKIT/Makefile b/examples/BlinkChipKIT/Makefile
index 45e321d..1c1d7e5 100644
--- a/examples/BlinkChipKIT/Makefile
+++ b/examples/BlinkChipKIT/Makefile
@@ -2,5 +2,5 @@ BOARD_TAG = mega_pic32
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS =
-include ../../arduino-mk/chipKIT.mk
+include ../../chipKIT.mk
diff --git a/examples/BlinkInAVRC/Makefile b/examples/BlinkInAVRC/Makefile
index 5dd4c5c..dcf21d9 100644
--- a/examples/BlinkInAVRC/Makefile
+++ b/examples/BlinkInAVRC/Makefile
@@ -12,6 +12,6 @@ ISP_PROG = stk500v1
AVRDUDE_ISP_BAUDRATE = 19200
ISP_PORT = /dev/ttyACM*
-include $(ARDMK_DIR)/arduino-mk/Arduino.mk
+include $(ARDMK_DIR)/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 c971b12..0e3d886 100644
--- a/examples/BlinkWithoutDelay/Makefile
+++ b/examples/BlinkWithoutDelay/Makefile
@@ -2,4 +2,4 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS =
-include ../../arduino-mk/Arduino.mk \ No newline at end of file
+include ../../Arduino.mk
diff --git a/examples/Fade/Makefile b/examples/Fade/Makefile
index c971b12..0e3d886 100644
--- a/examples/Fade/Makefile
+++ b/examples/Fade/Makefile
@@ -2,4 +2,4 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS =
-include ../../arduino-mk/Arduino.mk \ No newline at end of file
+include ../../Arduino.mk
diff --git a/examples/HelloWorld/Makefile b/examples/HelloWorld/Makefile
index b268341..bd804be 100644
--- a/examples/HelloWorld/Makefile
+++ b/examples/HelloWorld/Makefile
@@ -2,4 +2,4 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS = LiquidCrystal
-include ../../arduino-mk/Arduino.mk \ No newline at end of file
+include ../../Arduino.mk
diff --git a/examples/TinySoftWareSerial/Makefile b/examples/TinySoftWareSerial/Makefile
index 0f9c6e2..8c220db 100644
--- a/examples/TinySoftWareSerial/Makefile
+++ b/examples/TinySoftWareSerial/Makefile
@@ -10,6 +10,6 @@ ISP_PORT = /dev/ttyACM*
ARDUINO_LIBS = SoftwareSerial
-include $(ARDMK_DIR)/arduino-mk/Arduino.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 33d4fde..547c6fa 100644
--- a/examples/WebServer/Makefile
+++ b/examples/WebServer/Makefile
@@ -4,4 +4,4 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS = Ethernet SPI
-include ../../arduino-mk/Arduino.mk
+include ../../Arduino.mk
diff --git a/examples/master_reader/Makefile b/examples/master_reader/Makefile
index 2d26f86..38b7f82 100644
--- a/examples/master_reader/Makefile
+++ b/examples/master_reader/Makefile
@@ -4,4 +4,4 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS = Wire
-include ../../arduino-mk/Arduino.mk
+include ../../Arduino.mk
diff --git a/examples/toneMelody/Makefile b/examples/toneMelody/Makefile
index 51a9c1f..0e3d886 100644
--- a/examples/toneMelody/Makefile
+++ b/examples/toneMelody/Makefile
@@ -2,4 +2,4 @@ BOARD_TAG = uno
MONITOR_PORT = /dev/cu.usb*
ARDUINO_LIBS =
-include ../../arduino-mk/Arduino.mk
+include ../../Arduino.mk