rename directories

This commit is contained in:
shrkey
2016-10-17 17:54:19 +01:00
parent 56467516af
commit 4f0fe67c3b
2 changed files with 0 additions and 0 deletions

14
examples/PPM/Makefile Normal file
View File

@@ -0,0 +1,14 @@
CC = g++
DW = ../../darkwater
PIGPIO_PATH := $(PIGPIO_PATH)
LIB = -L$(PIGPIO_PATH)
INCLUDES = -I ../.. -I$(PIGPIO_PATH)
all:
$(CC) $(INCLUDES) $(LIB) PPM.cpp $(DW)/DW640.cpp $(DW)/PCA9685.cpp $(DW)/I2Cdev.cpp $(DW)/gpio.cpp $(DW)/Util.cpp -o PPM -lrt -lpthread -lpigpio
clean:
rm PPM