去掉 DEBUG 信息, 保证测速的稳定性
This commit is contained in:
parent
84fc106585
commit
6da0a3ccb4
|
|
@ -1,10 +1,10 @@
|
|||
all: xdb_searcher util_test
|
||||
|
||||
xdb_searcher: xdb_searcher.h xdb_searcher.c main.c
|
||||
gcc -g -O2 -I./ xdb_searcher.c main.c -o xdb_searcher
|
||||
gcc -O2 -I./ xdb_searcher.c main.c -o xdb_searcher
|
||||
|
||||
util_test: xdb_searcher.h xdb_searcher.c util_test.c
|
||||
gcc -g -O2 -I./ xdb_searcher.c util_test.c -o util_test
|
||||
gcc -O2 -I./ xdb_searcher.c util_test.c -o util_test
|
||||
|
||||
xdb_searcher.o: xdb_searcher.c
|
||||
gcc -c -o xdb_searcher.o xdb_searcher.c
|
||||
|
|
@ -21,4 +21,4 @@ clean:
|
|||
find ./ -name xdb_searcher | xargs rm -f
|
||||
rm -rf build
|
||||
|
||||
.PHONY: all clean xdb_searcher util_test
|
||||
.PHONY: all clean xdb_searcher util_test
|
||||
|
|
|
|||
Loading…
Reference in New Issue