49 lines
2.0 KiB
Makefile
49 lines
2.0 KiB
Makefile
# Copyright (c) 2017 by TAOS Technologies, Inc.
|
|
# todo: library dependency, header file dependency
|
|
|
|
ROOT=./
|
|
TARGET=exe
|
|
LFLAGS = '-Wl,-rpath,/usr/local/taos/driver/' -ltaos -lpthread -lm -lrt
|
|
CFLAGS = -O0 -g -Wno-deprecated -fPIC -Wno-unused-result -Wconversion \
|
|
-Wno-char-subscripts -D_REENTRANT -Wno-format -D_REENTRANT -DLINUX \
|
|
-Wno-unused-function -D_M_X64 -I/usr/local/taos/include -std=gnu99 -Wno-sign-conversion
|
|
#CFLAGS += -fsanitize=address -fsanitize=undefined -fsanitize-recover=all -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow -fno-sanitize=shift-base -fno-sanitize=alignment
|
|
|
|
all: $(TARGET)
|
|
|
|
exe:
|
|
gcc $(CFLAGS) ./batchprepare.c -o $(ROOT)batchprepare $(LFLAGS)
|
|
# gcc $(CFLAGS) ./stmt2-test.c -o $(ROOT)stmt2-test $(LFLAGS)
|
|
gcc $(CFLAGS) ./stopquery.c -o $(ROOT)stopquery $(LFLAGS)
|
|
gcc $(CFLAGS) ./dbTableRoute.c -o $(ROOT)dbTableRoute $(LFLAGS)
|
|
gcc $(CFLAGS) ./insertSameTs.c -o $(ROOT)insertSameTs $(LFLAGS)
|
|
gcc $(CFLAGS) ./passwdTest.c -o $(ROOT)passwdTest $(LFLAGS)
|
|
gcc $(CFLAGS) ./whiteListTest.c -o $(ROOT)whiteListTest $(LFLAGS)
|
|
gcc $(CFLAGS) ./insert_stb.c -o $(ROOT)insert_stb $(LFLAGS)
|
|
gcc $(CFLAGS) ./tmqViewTest.c -o $(ROOT)tmqViewTest $(LFLAGS)
|
|
gcc $(CFLAGS) ./stmtQuery.c -o $(ROOT)stmtQuery $(LFLAGS)
|
|
# gcc $(CFLAGS) ./stmt.c -o $(ROOT)stmt $(LFLAGS)
|
|
# gcc $(CFLAGS) ./stmt2.c -o $(ROOT)stmt2 $(LFLAGS)
|
|
# gcc $(CFLAGS) ./stmt2-example.c -o $(ROOT)stmt2-example $(LFLAGS)
|
|
# gcc $(CFLAGS) ./stmt2-get-fields.c -o $(ROOT)stmt2-get-fields $(LFLAGS)
|
|
# gcc $(CFLAGS) ./stmt2-nohole.c -o $(ROOT)stmt2-nohole $(LFLAGS)
|
|
gcc $(CFLAGS) ./stmt-crash.c -o $(ROOT)stmt-crash $(LFLAGS)
|
|
|
|
clean:
|
|
rm $(ROOT)batchprepare
|
|
rm $(ROOT)stmt2-test
|
|
rm $(ROOT)stopquery
|
|
rm $(ROOT)dbTableRoute
|
|
rm $(ROOT)insertSameTs
|
|
rm $(ROOT)passwdTest
|
|
rm $(ROOT)whiteListTest
|
|
rm $(ROOT)insert_stb
|
|
rm $(ROOT)tmqViewTest
|
|
rm $(ROOT)stmtQuery
|
|
rm $(ROOT)stmt
|
|
rm $(ROOT)stmt2
|
|
rm $(ROOT)stmt2-example
|
|
rm $(ROOT)stmt2-get-fields
|
|
rm $(ROOT)stmt2-nohole
|
|
rm $(ROOT)stmt-crash
|