Commit 81981d00 authored by Yoni Fogel's avatar Yoni Fogel

logformat is run before other prerequisites

so newbrt/log_header.h and newbrt/log_code.c are generated even if missing.
Closes #60.

git-svn-id: file:///svn/tokudb@891 c7de825b-a66e-492c-adef-691d508d4ae1
parent 68e02ebb
......@@ -18,11 +18,14 @@ LIBEXT=so
SHARED=-shared
endif
install: $(LIBNAME).$(LIBEXT) $(LIBNAME).a
(cd ../newbrt;make)
.PHONY: install logformat
install: logformat $(LIBNAME).$(LIBEXT) $(LIBNAME).a
cp $(LIBNAME).$(LIBEXT) ../lib/
cp $(LIBNAME).a ../lib
logformat:
(cd ../newbrt;make)
check: $(LIBNAME).$(LIBEXT)
python tokuglobals.py $(LIBNAME).$(LIBEXT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment