find Interfaces

This commit is contained in:
/jdi/ 2015-09-27 14:38:25 +02:00
parent d61bfbadf2
commit f0def9c046
8 changed files with 54 additions and 84 deletions

View file

@ -4,7 +4,8 @@ CC = g++
# compiler flags:
# -g adds debugging information to the executable file
# -Wall turns on most, but not all, compiler warnings
CFLAGS = -g -Wall -lrt -lpthread -lc -std=c++11
#-I
CFLAGS = -g -Wall -std=c++11
# the build target executable:
TARGET = smrtlink
@ -15,5 +16,5 @@ $(TARGET): src/*.cpp
$(CC) $(CFLAGS) -o $(TARGET) src/*.cpp src/*.h
clean:
$(RM) $(TARGET)
rm src/$(TARGET).g