mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
addresses #479
change makefiles to support tlog versions of rangetree and lock tree git-svn-id: file:///svn/tokudb@2727 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
d1a6ea8526
commit
550fff4e7f
2 changed files with 5 additions and 3 deletions
|
@ -44,7 +44,7 @@ default: check
|
||||||
|
|
||||||
all: make_libs $(ALL_TESTS)
|
all: make_libs $(ALL_TESTS)
|
||||||
|
|
||||||
check: check.lin check.tlin #check.tlog check.log
|
check: check.lin check.tlin check.tlog #check.log
|
||||||
@ echo $@ ok
|
@ echo $@ ok
|
||||||
tests.lin: make_libs $(LIN_TESTS)
|
tests.lin: make_libs $(LIN_TESTS)
|
||||||
@ echo $@ ok
|
@ echo $@ ok
|
||||||
|
@ -102,7 +102,7 @@ libs:
|
||||||
|
|
||||||
RT_LINEAR_BINS = ../../range_tree/linear.o
|
RT_LINEAR_BINS = ../../range_tree/linear.o
|
||||||
RT_TLINEAR_BINS = ../../range_tree/linear.o
|
RT_TLINEAR_BINS = ../../range_tree/linear.o
|
||||||
RT_TLOG_BINS = ../../range_tree/tlog.o
|
RT_TLOG_BINS = ../../range_tree/log_nooverlap.o ../../range_tree/tokuredblack.o
|
||||||
RT_LOG_BINS = ../../range_tree/log.o
|
RT_LOG_BINS = ../../range_tree/log.o
|
||||||
|
|
||||||
LT_BINS = ../lth.o ../rth.o
|
LT_BINS = ../lth.o ../rth.o
|
||||||
|
|
|
@ -23,7 +23,7 @@ CFLAGS+=-fno-common
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: install logformat
|
.PHONY: install logformat
|
||||||
install: linear.o rangetree.o #log_nooverlap.o log.o
|
install: linear.o rangetree.o log_nooverlap.o tokuredblack.o #log.o
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf *.o *.gcno *.gcda *.gcov
|
rm -rf *.o *.gcno *.gcda *.gcov
|
||||||
|
@ -39,3 +39,5 @@ linear.o: linear.c $(HEADERS)
|
||||||
log.o: log.c $(HEADERS)
|
log.o: log.c $(HEADERS)
|
||||||
|
|
||||||
log_nooverlap.o: log_nooverlap.c $(HEADERS)
|
log_nooverlap.o: log_nooverlap.c $(HEADERS)
|
||||||
|
|
||||||
|
tokuredblack.o: tokuredblack.c $(HEADERS) tokuredblack.h
|
Loading…
Add table
Reference in a new issue