diff options
author | sasha@mysql.sashanet.com <> | 2001-08-27 17:33:11 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-08-27 17:33:11 -0600 |
commit | 608f25be52f3d5e2e8b56c65e477eb7d008a01e0 (patch) | |
tree | 0a747a3ef29d7575773417245b77e6f465e37496 /tools/Makefile.am | |
parent | a877b10c2daac6898dacd7a0ec9a9a462581bb44 (diff) | |
download | mariadb-git-608f25be52f3d5e2e8b56c65e477eb7d008a01e0.tar.gz |
work on MySQL server management daemon
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am new file mode 100644 index 00000000000..0b84298a829 --- /dev/null +++ b/tools/Makefile.am @@ -0,0 +1,22 @@ +INCLUDES = -I$(srcdir)/../include $(openssl_includes) \ + -I../include -I$(srcdir)/.. -I$(top_srcdir) \ + -I.. +LIBS = @TOOLS_LIBS@ +LDADD = @CLIENT_EXTRA_LDFLAGS@ ../libmysql_r/libmysqlclient_r.la +bin_PROGRAMS = mysqlmngd +mysqlmngd_SOURCES = mysqlmngd.c my_vsnprintf.c +mysqltest_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES) +DEFS = -DUNDEF_THREADS_HACK + +mysys_src=my_vsnprintf.c mysys_priv.h + +link_sources: + for f in $(mysys_src); do \ + rm -f $$f; \ + @LN_CP_F@ ../mysys/$$f $$f; \ + done; + +# Don't update the files from bitkeeper +%::SCCS/s.% + + |