diff options
| author | Sudar <sudar@sudarmuthu.com> | 2013-06-22 11:48:26 +0530 |
|---|---|---|
| committer | Sudar <sudar@sudarmuthu.com> | 2013-06-22 11:48:26 +0530 |
| commit | e0856e51d972c1b7484f769e665ba7a680c53724 (patch) | |
| tree | 11a7023a9d30d3680219d88592d44c3ed3dc1d02 | |
| parent | c284ec93dd939b4f8c4c0ab1eccf1516784de1dc (diff) | |
Remove "utility" from example makefiles
From commit fc968b919148eb99d1d58a8454a71bf703ca7c78 files inside
utility are automatically build.
Fix #84
| -rw-r--r-- | HISTORY.md | 1 | ||||
| -rw-r--r-- | arduino-mk/Arduino.mk | 2 | ||||
| -rw-r--r-- | examples/WebServer/Makefile | 4 | ||||
| -rw-r--r-- | examples/master_reader/Makefile | 4 |
4 files changed, 8 insertions, 3 deletions
@@ -7,6 +7,7 @@ The following is the rough list of changes that went into different versions. I - Add $OBJDIR to the list of configuration that gets printed. Fix issue #77 - Add support for specifying optimization level. Fix issue #81 - Add support for reseting "Micro" Arduino. Fix issue #80 (https://github.com/sej7278) +- Remove "utility" from example makefiles. Fix issue #84 ### 0.12.0 (2013-06-20) - Fix "generated_assembly" target, which got broken earlier. Fix issue #76 (https://github.com/matthijskooijman) diff --git a/arduino-mk/Arduino.mk b/arduino-mk/Arduino.mk index edc36e5..8ade57b 100644 --- a/arduino-mk/Arduino.mk +++ b/arduino-mk/Arduino.mk @@ -85,7 +85,7 @@ # # For example: # -# ARDUINO_LIBS = Ethernet Ethernet/utility SPI +# ARDUINO_LIBS = Ethernet SPI # BOARD_TAG = uno # ARDUINO_PORT = /dev/cu.usb* # diff --git a/examples/WebServer/Makefile b/examples/WebServer/Makefile index d361759..d55cfd3 100644 --- a/examples/WebServer/Makefile +++ b/examples/WebServer/Makefile @@ -1,5 +1,7 @@ +# Arduino Make file. Refer to https://github.com/sudar/Arduino-Makefile + BOARD_TAG = uno ARDUINO_PORT = /dev/cu.usb* -ARDUINO_LIBS = Ethernet Ethernet/utility SPI +ARDUINO_LIBS = Ethernet SPI include ../../arduino-mk/Arduino.mk diff --git a/examples/master_reader/Makefile b/examples/master_reader/Makefile index f242a44..8c4b56f 100644 --- a/examples/master_reader/Makefile +++ b/examples/master_reader/Makefile @@ -1,5 +1,7 @@ +# Arduino Make file. Refer to https://github.com/sudar/Arduino-Makefile + BOARD_TAG = uno ARDUINO_PORT = /dev/cu.usb* -ARDUINO_LIBS = Wire Wire/utility +ARDUINO_LIBS = Wire include ../../arduino-mk/Arduino.mk |
