find Interfaces
This commit is contained in:
parent
d61bfbadf2
commit
f0def9c046
8 changed files with 54 additions and 84 deletions
5
Makefile
5
Makefile
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue