2006-12-31 01:02:27 +01:00
|
|
|
# Copyright (C) 2000-2006 MySQL AB
|
2000-12-13 18:32:54 +01:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
2006-12-23 20:17:15 +01:00
|
|
|
# License as published by the Free Software Foundation; version 2
|
|
|
|
# of the License.
|
2000-12-13 18:32:54 +01:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; if not, write to the Free
|
|
|
|
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
|
|
|
# MA 02111-1307, USA
|
2000-12-07 15:54:59 +01:00
|
|
|
|
2000-12-13 18:32:54 +01:00
|
|
|
## Process this file with automake to create Makefile.in
|
|
|
|
|
2004-06-05 13:16:29 +02:00
|
|
|
if HAVE_NDBCLUSTER_DB
|
2004-05-27 10:05:10 +02:00
|
|
|
SUBDIRS = ndb
|
2004-06-25 21:21:14 +02:00
|
|
|
DIST_SUBDIRS=ndb
|
2005-03-07 13:42:01 +01:00
|
|
|
USE_NDBCLUSTER=\"--ndbcluster\"
|
2004-06-25 21:21:14 +02:00
|
|
|
else
|
|
|
|
# If one uses automake conditionals, automake will automatically
|
|
|
|
# include all possible branches to DIST_SUBDIRS goal.
|
|
|
|
# Reset DIST_SUBDIRS if we don't use NDB
|
|
|
|
SUBDIRS=
|
|
|
|
DIST_SUBDIRS=
|
2005-03-07 13:42:01 +01:00
|
|
|
USE_NDBCLUSTER=\"\"
|
2004-06-05 13:16:29 +02:00
|
|
|
endif
|
2004-05-27 10:05:10 +02:00
|
|
|
|
2001-01-02 13:29:47 +01:00
|
|
|
benchdir_root= $(prefix)
|
|
|
|
testdir = $(benchdir_root)/mysql-test
|
2006-11-14 09:43:30 +01:00
|
|
|
EXTRA_SCRIPTS = mysql-test-run-shell.sh install_test_db.sh valgrind.supp $(PRESCRIPTS)
|
2007-04-20 15:49:35 +02:00
|
|
|
EXTRA_DIST = $(EXTRA_SCRIPTS) suite
|
2007-02-28 15:15:38 +01:00
|
|
|
GENSCRIPTS = mysql-test-run-shell mysql-test-run install_test_db mtr
|
2007-07-17 16:25:32 +02:00
|
|
|
PRESCRIPTS = mysql-test-run.pl mysql-stress-test.pl
|
2006-04-02 02:10:41 +02:00
|
|
|
test_SCRIPTS = $(GENSCRIPTS) $(PRESCRIPTS)
|
2007-07-27 17:39:07 +02:00
|
|
|
CLEANFILES = $(GENSCRIPTS)
|
2000-12-13 18:32:54 +01:00
|
|
|
|
Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
client/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
cmd-line-utils/libedit/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
dbug/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
extra/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
heap/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
isam/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
libmysql/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
libmysql_r/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
libmysqld/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
libmysqld/examples/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
merge/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
myisam/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
myisammrg/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
mysql-test/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
mysys/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
netware/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
regex/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
sql/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
strings/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
tests/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
vio/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
tools/Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
2005-07-05 23:24:48 +02:00
|
|
|
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -I..
|
2004-09-15 20:47:45 +02:00
|
|
|
|
2000-12-13 18:32:54 +01:00
|
|
|
dist-hook:
|
|
|
|
mkdir -p $(distdir)/t $(distdir)/r $(distdir)/include \
|
2007-08-20 12:47:09 +02:00
|
|
|
$(distdir)/std_data \
|
|
|
|
$(distdir)/std_data/ndb_backup50_data_be $(distdir)/std_data/ndb_backup50_data_le \
|
|
|
|
$(distdir)/lib
|
2005-07-08 21:13:14 +02:00
|
|
|
-$(INSTALL_DATA) $(srcdir)/t/*.def $(distdir)/t
|
2005-03-03 16:01:39 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/t/*.test $(distdir)/t
|
2005-08-31 02:25:28 +02:00
|
|
|
-$(INSTALL_DATA) $(srcdir)/t/*.imtest $(distdir)/t
|
2005-06-03 18:20:25 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/t/*.sql $(distdir)/t
|
2005-03-03 16:01:39 +01:00
|
|
|
-$(INSTALL_DATA) $(srcdir)/t/*.disabled $(distdir)/t
|
2005-10-16 06:49:19 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/t/*.opt $(srcdir)/t/*.slave-mi $(distdir)/t
|
|
|
|
$(INSTALL_SCRIPT) $(srcdir)/t/*.sh $(distdir)/t
|
2001-02-02 02:49:04 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/include/*.inc $(distdir)/include
|
2006-11-14 14:29:05 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/include/*.test $(distdir)/include
|
2005-04-05 22:01:42 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/r/*.result $(srcdir)/r/*.require $(distdir)/r
|
2004-11-03 18:59:03 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/Moscow_leap $(distdir)/std_data
|
2007-06-08 11:51:32 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/Index.xml $(distdir)/std_data
|
2002-10-29 23:11:13 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.dat $(srcdir)/std_data/*.000001 $(distdir)/std_data
|
2003-03-05 08:13:37 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/des_key_file $(distdir)/std_data
|
2003-09-01 13:16:20 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.pem $(distdir)/std_data
|
2005-01-04 08:15:33 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.frm $(distdir)/std_data
|
2006-11-30 11:33:26 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.MY* $(distdir)/std_data
|
2005-10-12 22:49:33 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.cnf $(distdir)/std_data
|
2007-08-20 12:47:09 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_be/BACKUP* $(distdir)/std_data/ndb_backup50_data_be
|
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_le/BACKUP* $(distdir)/std_data/ndb_backup50_data_le
|
2005-04-06 12:20:55 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/lib/*.pl $(distdir)/lib
|
2007-04-20 15:49:35 +02:00
|
|
|
-rm -rf `find $(distdir)/suite -type d -name SCCS`
|
2000-12-13 18:32:54 +01:00
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
$(mkinstalldirs) \
|
|
|
|
$(DESTDIR)$(testdir)/t \
|
|
|
|
$(DESTDIR)$(testdir)/r \
|
|
|
|
$(DESTDIR)$(testdir)/include \
|
2005-04-06 12:20:55 +02:00
|
|
|
$(DESTDIR)$(testdir)/std_data \
|
2007-08-20 12:47:09 +02:00
|
|
|
$(DESTDIR)$(testdir)/std_data/ndb_backup50_data_be \
|
|
|
|
$(DESTDIR)$(testdir)/std_data/ndb_backup50_data_le \
|
2005-04-06 12:20:55 +02:00
|
|
|
$(DESTDIR)$(testdir)/lib
|
2001-01-31 21:01:16 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(testdir)
|
2005-07-08 21:13:14 +02:00
|
|
|
-$(INSTALL_DATA) $(srcdir)/t/*.def $(DESTDIR)$(testdir)/t
|
2001-01-31 21:01:16 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/t/*.test $(DESTDIR)$(testdir)/t
|
2005-08-31 02:25:28 +02:00
|
|
|
-$(INSTALL_DATA) $(srcdir)/t/*.imtest $(DESTDIR)$(testdir)/t
|
2005-06-08 11:49:24 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/t/*.sql $(DESTDIR)$(testdir)/t
|
2005-03-03 16:01:39 +01:00
|
|
|
-$(INSTALL_DATA) $(srcdir)/t/*.disabled $(DESTDIR)$(testdir)/t
|
2001-01-31 21:01:16 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/t/*.opt $(DESTDIR)$(testdir)/t
|
2005-10-16 06:49:19 +02:00
|
|
|
$(INSTALL_SCRIPT) $(srcdir)/t/*.sh $(DESTDIR)$(testdir)/t
|
2003-02-28 11:32:37 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/t/*.slave-mi $(DESTDIR)$(testdir)/t
|
2005-02-17 20:07:52 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/r/*.result $(DESTDIR)$(testdir)/r
|
2002-10-07 15:30:39 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/r/*.require $(DESTDIR)$(testdir)/r
|
2001-01-31 21:01:16 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/include/*.inc $(DESTDIR)$(testdir)/include
|
2006-11-14 14:29:05 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/include/*.test $(DESTDIR)$(testdir)/include
|
2001-01-31 21:01:16 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.dat $(DESTDIR)$(testdir)/std_data
|
2004-08-14 15:24:40 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.*001 $(DESTDIR)$(testdir)/std_data
|
2006-07-24 14:31:37 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.cnf $(DESTDIR)$(testdir)/std_data
|
2003-03-04 22:24:00 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/des_key_file $(DESTDIR)$(testdir)/std_data
|
2004-11-03 18:59:03 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/Moscow_leap $(DESTDIR)$(testdir)/std_data
|
2007-06-08 11:51:32 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/Index.xml $(DESTDIR)$(testdir)/std_data
|
2003-09-01 13:16:20 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.pem $(DESTDIR)$(testdir)/std_data
|
2005-01-04 08:15:33 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.frm $(DESTDIR)$(testdir)/std_data
|
2006-12-12 13:55:40 +01:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.MY* $(DESTDIR)$(testdir)/std_data
|
2005-10-12 22:49:33 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/*.cnf $(DESTDIR)$(testdir)/std_data
|
2007-08-20 12:47:09 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_be/BACKUP* $(DESTDIR)$(testdir)/std_data/ndb_backup50_data_be
|
|
|
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_le/BACKUP* $(DESTDIR)$(testdir)/std_data/ndb_backup50_data_le
|
2005-04-06 12:20:55 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/lib/*.pl $(DESTDIR)$(testdir)/lib
|
2007-04-20 15:49:35 +02:00
|
|
|
for f in `(cd $(srcdir); find suite -type f | grep -v SCCS)`; \
|
|
|
|
do \
|
|
|
|
d=$(DESTDIR)$(testdir)/`dirname $$f`; \
|
|
|
|
mkdir -p $$d ; \
|
2007-04-20 15:52:49 +02:00
|
|
|
$(INSTALL_DATA) $(srcdir)/$$f $$d ; \
|
2007-04-20 15:49:35 +02:00
|
|
|
done
|
2003-09-01 13:16:20 +02:00
|
|
|
|
2005-09-24 15:51:45 +02:00
|
|
|
uninstall-local:
|
|
|
|
@RM@ -f -r $(DESTDIR)$(testdir)
|
|
|
|
|
2006-09-01 10:21:08 +02:00
|
|
|
# mtr - a shortcut for executing mysql-test-run.pl
|
|
|
|
mtr:
|
|
|
|
$(RM) -f mtr
|
|
|
|
$(LN_S) mysql-test-run.pl mtr
|
|
|
|
|
2006-11-13 19:12:34 +01:00
|
|
|
# mysql-test-run - a shortcut for executing mysql-test-run.pl
|
|
|
|
mysql-test-run:
|
|
|
|
$(RM) -f mysql-test-run
|
|
|
|
$(LN_S) mysql-test-run.pl mysql-test-run
|
|
|
|
|
2000-12-13 18:32:54 +01:00
|
|
|
SUFFIXES = .sh
|
|
|
|
|
|
|
|
.sh:
|
|
|
|
@RM@ -f $@ $@-t
|
|
|
|
@SED@ \
|
2001-01-02 13:29:47 +01:00
|
|
|
-e 's!@''testdir''@!$(testdir)!g' \
|
2000-12-13 18:32:54 +01:00
|
|
|
-e 's!@''bindir''@!$(bindir)!g' \
|
|
|
|
-e 's!@''scriptdir''@!$(bindir)!g' \
|
|
|
|
-e 's!@''prefix''@!$(prefix)!g' \
|
|
|
|
-e 's!@''datadir''@!$(datadir)!g' \
|
|
|
|
-e 's!@''localstatedir''@!$(localstatedir)!g' \
|
|
|
|
-e 's!@''libexecdir''@!$(libexecdir)!g' \
|
|
|
|
-e 's!@''PERL''@!@PERL@!' \
|
|
|
|
-e 's!@''VERSION''@!@VERSION@!' \
|
2004-06-11 22:00:08 +02:00
|
|
|
-e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
|
Bug #15327: configure: --with-tcp-port option being partially ignored
make sure that if builder configured with a non-standard (!= 3306)
default TCP port that value actually gets used throughout. if they
didn't configure a value, assume "use a sensible default", which
will be read from /etc/services or, failing that, from the factory
default. That makes the order of preference
- command-line option
- my.cnf, where applicable
- $MYSQL_TCP_PORT environment variable
- /etc/services (unless configured --with-tcp-port)
- default port (--with-tcp-port=... or factory default)
client/mysql.cc:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysql_upgrade.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysqladmin.cc:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysqlbinlog.cc:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysqlcheck.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysqldump.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysqlimport.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysqlmanagerc.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
configure.in:
Bug #15327: configure: --with-tcp-port option being partially ignored
If MYSQL_TCP_PORT defaulted in configure (factory default 3306
at the time of this writing), set MYSQL_TCP_PORT to factory
default, then clear factory default after. That way, we lose no
information, and we can distinguish between "defaulted" and the
pathological case "builder specifically configured a port that
coincides with factory default." This can in theory happen if
builder configures and builds several servers from a script
(--with-tcp-port=3306, --with-tcp-port=3316, --with-tcp-port=3326).
Not all that probable, but much preferable to having more "magic"
happen in the server when we can solve this without any guesswork.
client/mysqlshow.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
client/mysqltest.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
include/mysql_version.h.in:
Bug #15327: configure: --with-tcp-port option being partially ignored
make factory default for TCP port available as MYSQL_PORT_DEFAULT
if build-time configured with a different default. (0 if unchanged)
libmysql/libmysql.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
initialize default tcp port for client, like so:
- if user configured --with-tcp-port, use that value as default
- otherwise assume "use a good default": search mysqld/tcp in
/etc/services; if that doesn't exist, use factory default (3306)
- environment variable MYSQL_TCP_PORT overrides this default
- command-line option overrides all of the above
mysql-test/Makefile.am:
Bug #15327: configure: --with-tcp-port option being partially ignored
make factory default for TCP port available as MYSQL_TCP_PORT_DEFAULT
if build-time configured with a different default. (0 if unchanged)
mysql-test/mysql-test-run-shell.sh:
Bug #15327: configure: --with-tcp-port option being partially ignored
set up MYSQL_TCP_PORT if not already set in environment:
- if user configured --with-tcp-port, use that value as default
- otherwise assume "use a good default": search mysqld/tcp in
/etc/services; if that doesn't exist, use factory default (3306)
netware/mysql_test_run.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
account for non-standard default port-no. configured at build-time
netware/mysqld_safe.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
account for non-standard default port-no. configured at build-time
scripts/Makefile.am:
Bug #15327: configure: --with-tcp-port option being partially ignored
make factory default for TCP port available as MYSQL_TCP_PORT_DEFAULT
if build-time configured with a different default. (0 if unchanged)
scripts/mysql_config.sh:
Bug #15327: configure: --with-tcp-port option being partially ignored
set up MYSQL_TCP_PORT if not already set in environment:
- if user configured --with-tcp-port, use that value as default
- otherwise assume "use a good default": search mysqld/tcp in
/etc/services; if that doesn't exist, use factory default (3306)
scripts/mysql_fix_privilege_tables.sh:
Bug #15327: configure: --with-tcp-port option being partially ignored
clarifying notice only
scripts/mysqld_safe-watch.sh:
Bug #15327: configure: --with-tcp-port option being partially ignored
account for non-standard default port-no. configured at build-time
server-tools/instance-manager/priv.h:
Bug #15327: configure: --with-tcp-port option being partially ignored
account for non-standard default port-no. configured at build-time
sql/mysqld.cc:
Bug #15327: configure: --with-tcp-port option being partially ignored
if builder specifically requested a default port, use that
(even if it coincides with our factory default).
only if they didn't do we check /etc/services (and, failing
on that, fall back to the factory default of 3306).
either default can be overridden by the environment variable
MYSQL_TCP_PORT, which in turn can be overridden with command
line options.
tests/mysql_client_test.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
tests/ssl_test.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
account for non-standard default port-no. configured at build-time
tests/thread_test.c:
Bug #15327: configure: --with-tcp-port option being partially ignored
make help on --port a little more clear
2007-09-13 16:19:46 +02:00
|
|
|
-e 's!@''MYSQL_TCP_PORT_DEFAULT''@!@MYSQL_TCP_PORT_DEFAULT@!' \
|
2001-06-30 21:08:35 +02:00
|
|
|
-e 's!@''MYSQL_BASE_VERSION''@!@MYSQL_BASE_VERSION@!' \
|
2003-11-02 13:00:25 +01:00
|
|
|
-e 's!@''MYSQL_UNIX_ADDR''@!@MYSQL_UNIX_ADDR@!' \
|
2004-06-23 12:29:05 +02:00
|
|
|
-e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
|
2001-06-30 21:08:35 +02:00
|
|
|
-e 's!@''MYSQL_NO_DASH_VERSION''@!@MYSQL_NO_DASH_VERSION@!' \
|
2001-01-19 01:46:13 +01:00
|
|
|
-e 's!@''MYSQL_SERVER_SUFFIX''@!@MYSQL_SERVER_SUFFIX@!' \
|
2005-03-07 13:42:01 +01:00
|
|
|
-e 's!@''USE_NDBCLUSTER''@!$(USE_NDBCLUSTER)!g' \
|
2000-12-13 18:32:54 +01:00
|
|
|
$< > $@-t
|
|
|
|
@CHMOD@ +x $@-t
|
|
|
|
@MV@ $@-t $@
|
|
|
|
|
|
|
|
# Don't update the files from bitkeeper
|
|
|
|
%::SCCS/s.%
|