mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
2b9bd45bf3
git-svn-id: file:///svn/toku/tokudb@15988 c7de825b-a66e-492c-adef-691d508d4ae1
25 lines
615 B
Makefile
25 lines
615 B
Makefile
TARGETS = db-insert db-insert-bdb db-scan db-scan-bdb
|
|
CFLAGS = -g
|
|
CPPFLAGS = -I./include
|
|
LDFLAGS = -L.. -lfractaltreeindex -Wl,-rpath,..
|
|
|
|
default: $(TARGETS)
|
|
|
|
db-insert-bdb: db-insert.c
|
|
cc -ldb db-insert.c -o db-insert-bdb -DBDB $(CFLAGS)
|
|
|
|
db-scan-bdb: db-scan.c
|
|
cc -ldb db-scan.c -o db-scan-bdb -DBDB $(CFLAGS)
|
|
|
|
default: db-insert
|
|
|
|
setup:
|
|
cp ../../include/db.h include/tokudb.h
|
|
cp ../../include/tdb-internal.h include/tdb-internal.h
|
|
cp ../../toku_include/toku_list.h include/toku_list.h
|
|
|
|
check: $(TARGETS)
|
|
./db-insert && ./db-scan --nox --lwc --prelock --prelockflag
|
|
|
|
clean:
|
|
rm -rf $(TARGETS) bench.*
|