This commit is contained in:
/jdi/ 2015-09-27 14:39:53 +02:00
parent f0def9c046
commit 87864b9975

View file

@ -1,13 +1,5 @@
# the compiler: gcc for C program, define as g++ for C++
CC = g++
# compiler flags:
# -g adds debugging information to the executable file
# -Wall turns on most, but not all, compiler warnings
#-I
CFLAGS = -g -Wall -std=c++11
# the build target executable:
TARGET = smrtlink
all: $(TARGET)