rename directory

This commit is contained in:
shrkey
2016-10-17 17:53:49 +01:00
parent 5688807619
commit a0bcaf88b2
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)/DWESCAPE.cpp $(DW)/PCA9685.cpp $(DW)/I2Cdev.cpp $(DW)/gpio.cpp $(DW)/Util.cpp -o PPM -lrt -lpthread -lpigpio
clean:
rm PPM