From 58466e8a6d996446a2f7adced18bb571aede5168 Mon Sep 17 00:00:00 2001 From: Justin James CLayden Date: Thu, 14 Mar 2013 14:27:47 +1100 Subject: [PATCH] remove defunt servo cmdline from Makefile --- README.md | 4 ++-- RPi_utils/Makefile | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ee173bc..1bc4a67 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ It consists of two main sections- Arduino sketches and Raspberry Pi command line Place the Sketches in your normal Arduino Sketches location. Install any required libraries: -1. TODO servo lib url -2. [rc_switch](http://code.google.com/p/rc-switch/) +1. Servo motor library (Should be included in the Arduino IDE) +2. _Arduino_ [rc_switch](http://code.google.com/p/rc-switch/) library ### RPi\_utils diff --git a/RPi_utils/Makefile b/RPi_utils/Makefile index c895c30..ed49ed0 100644 --- a/RPi_utils/Makefile +++ b/RPi_utils/Makefile @@ -1,4 +1,4 @@ -all: send codesend servo +all: send codesend send: RCSwitch.o send.o $(CXX) $(CXXFLAGS) $(LDFLAGS) $+ -o $@ -lwiringPi @@ -6,8 +6,5 @@ send: RCSwitch.o send.o codesend: RCSwitch.o codesend.o $(CXX) $(CXXFLAGS) $(LDFLAGS) $+ -o $@ -lwiringPi -servo: RCSwitch.o servo.o - $(CXX) $(CXXFLAGS) $(LDFLAGS) $+ -o $@ -lwiringPi - clean: $(RM) *.o send codesend servo