mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
e0345dbc54
with appropriate include directories make -f Makefile.win TOKUDB_DIR=c:/.../.. git-svn-id: file:///svn/mysql/tokudb-engine/src@9833 c7de825b-a66e-492c-adef-691d508d4ae1
11 lines
215 B
Text
11 lines
215 B
Text
|
|
.DELETE_ON_ERROR:
|
|
ifeq ($(TOKUDB_DIR),)
|
|
#error
|
|
CMakeLists.txt: CMakeLists.in
|
|
false #Need to define TOKUDB_DIR
|
|
else
|
|
CMakeLists.txt: CMakeLists.in
|
|
sed "s?TOKUDB_DIR_REPLACE_ME?$(TOKUDB_DIR)?g" < $< > $@
|
|
endif
|
|
|