From e0856e51d972c1b7484f769e665ba7a680c53724 Mon Sep 17 00:00:00 2001 From: Sudar Date: Sat, 22 Jun 2013 11:48:26 +0530 Subject: Remove "utility" from example makefiles From commit fc968b919148eb99d1d58a8454a71bf703ca7c78 files inside utility are automatically build. Fix #84 --- examples/WebServer/Makefile | 4 +++- examples/master_reader/Makefile | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'examples') 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 -- cgit v1.2.3