mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
c41b0e48c9
ndb/tools/waiter.cpp: Rename: ndb/test/tools/waiter.cpp -> ndb/tools/waiter.cpp configure.in: added install dirs for ndb ndb/Makefile.am: ndb headers for install ndb/config/common.mk.am: DEFS_LOC in ndb make ndb/config/type_ndbapi.mk.am: added LDADD=libNDB_API.la default for type_ndbapi ndb/src/cw/cpcd/Makefile.am: changes install dir ndb/src/kernel/blocks/backup/restore/Makefile.am: changes install dir ndb/src/kernel/ndb-main/Makefile.am: changes install dir ndb/src/mgmapi/Makefile.am: changes install dir ndb/src/mgmclient/Makefile.am: changes install dir ndb/src/mgmsrv/Makefile.am: changes install dir ndb/src/ndbapi/Makefile.am: changes install dir ndb/test/ndbapi/Makefile.am: changes install dir ndb/test/ndbapi/bank/Makefile.am: changes install dir ndb/test/tools/Makefile.am: changes install dir mysql-test/ndb/install_ndbcluster.sh: new mysql-test/ndb/stop_ndbcluster.sh: new ndb/tools/Makefile.am: changes install dir
27 lines
465 B
Makefile
27 lines
465 B
Makefile
|
|
benchdir_root= $(prefix)
|
|
testdir = $(benchdir_root)/mysql-test/ndb
|
|
|
|
test_SCRIPTS = \
|
|
install_ndbcluster \
|
|
stop_ndbcluster
|
|
|
|
EXTRA_SCRIPTS = \
|
|
install_ndbcluster.sh \
|
|
stop_ndbcluster.sh
|
|
|
|
test_DATA = ndb_config_2_node.ini
|
|
|
|
SUFFIXES = .sh
|
|
|
|
.sh:
|
|
@RM@ -f $@ $@-t
|
|
@SED@ \
|
|
-e 's!@''ndbbindir''@!$(ndbbindir)!g' \
|
|
-e 's!@''ndbtoolsdir''@!$(ndbtoolsdir)!g' \
|
|
$< > $@-t
|
|
@CHMOD@ +x $@-t
|
|
@MV@ $@-t $@
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|