Remove "utility" from example makefiles
From commit fc968b9191
files inside
utility are automatically build.
Fix #84
This commit is contained in:
parent
c284ec93dd
commit
e0856e51d9
4 changed files with 8 additions and 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)
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
#
|
||||
# For example:
|
||||
#
|
||||
# ARDUINO_LIBS = Ethernet Ethernet/utility SPI
|
||||
# ARDUINO_LIBS = Ethernet SPI
|
||||
# BOARD_TAG = uno
|
||||
# ARDUINO_PORT = /dev/cu.usb*
|
||||
#
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue