mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* restore .gitmodules
* Revert "[TD-13408]<test>: move tests directory out"
This reverts commit 7db7bd9337.
* revert to make tests back
* immigrate file change in stand-alone repo to TDengine
* remove tests repository checkout
Co-authored-by: tangfangzhi <fztang@taosdata.com>
14 lines
No EOL
392 B
Makefile
14 lines
No EOL
392 B
Makefile
ROOT=./
|
|
TARGET=exe
|
|
LFLAGS = '-Wl,-rpath,/usr/lib' -ltaos -lpthread -lm -lrt
|
|
CFLAGS = -O3 -g -Wall -Wno-deprecated -fPIC -Wno-unused-result -Wconversion -Wno-char-subscripts -D_REENTRANT -Wno-format -D_REENTRANT -DLINUX -msse4.2 -Wno-unused-function -D_M_X64 -std=gnu99
|
|
|
|
all: $(TARGET)
|
|
|
|
exe:
|
|
gcc $(CFLAGS) ./tdengineTest.c -o $(ROOT)/tdengineTest $(LFLAGS)
|
|
|
|
clean:
|
|
rm $(ROOT)tdengineTest
|
|
|
|
|