added adc reader standalone

This commit is contained in:
Dhanya Maliakal
2017-08-24 18:39:35 +02:00
parent e5c84fd11c
commit 5e11e0a7db
4 changed files with 139 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
CC = g++
SRC = slsADCReader.cpp
INCLUDES = -I ../../slsReceiverSoftware/include -I ../commonFiles
CFLAGS = -Wall -lm -lstdc++
all: clean slsADCReader
slsADCReader: $(SRC)
echo "creating adc reader"
$(CC) -o $@ $^ $(CFLAGS) $(INCLUDES)
clean:
echo "cleaning"
rm -rf *.o