Skip to content

Commit

Permalink
remove defunt servo cmdline from Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
justy committed Mar 14, 2013
1 parent e409354 commit 58466e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 1 addition & 4 deletions RPi_utils/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
all: send codesend servo
all: send codesend

send: RCSwitch.o send.o
$(CXX) $(CXXFLAGS) $(LDFLAGS) $+ -o $@ -lwiringPi

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

0 comments on commit 58466e8

Please sign in to comment.