makefile 811 字节
Newer Older
D
dapan1121 已提交
1 2 3 4 5 6 7 8
# 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 -Wall -Wno-deprecated -fPIC -Wno-unused-result -Wconversion \
	-Wno-char-subscripts -D_REENTRANT -Wno-format -D_REENTRANT -DLINUX \
Z
zhaoyanggh 已提交
9 10
	-Wno-unused-function -D_M_X64 -I/usr/local/taos/include -std=gnu99 \
	-fsanitize=address
D
dapan1121 已提交
11 12 13 14

all: $(TARGET)

exe:
15
	gcc $(CFLAGS) ./batchprepare.c  -o $(ROOT)batchprepare  $(LFLAGS)
16
	gcc $(CFLAGS) ./stmtBatchTest.c -o $(ROOT)stmtBatchTest $(LFLAGS)
17
	gcc $(CFLAGS) ./stmtTest.c -o $(ROOT)stmtTest $(LFLAGS)
Z
zhaoyanggh 已提交
18
	gcc $(CFLAGS) ./stmt_function.c -o $(ROOT)stmt_function $(LFLAGS)
D
dapan1121 已提交
19 20 21

clean:
	rm $(ROOT)batchprepare
22
	rm $(ROOT)stmtBatchTest
23
	rm $(ROOT)stmtTest
Z
zhaoyanggh 已提交
24
	rm $(ROOT)stmt_function