2003-08-16 21:44:24 +04:00
|
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
|
|
|
|
# As all autoconf variables depend from ${prefix} and being resolved only when
|
|
|
|
# make is run, we can't put these defines to a header file (e.g. to
|
|
|
|
# default_options.h, generated from default_options.h.in)
|
|
|
|
# See automake/autoconf docs for details
|
|
|
|
|
|
|
|
noinst_LIBRARIES= liboptions.a
|
|
|
|
liboptions_a_CPPFLAGS= $(CPPFLAGS) \
|
|
|
|
-DDEFAULT_PID_FILE_NAME="$(localstatedir)/mysqlmanager.pid" \
|
|
|
|
-DDEFAULT_LOG_FILE_NAME="$(localstatedir)/mysqlmanager.log" \
|
|
|
|
-DDEFAULT_SOCKET_FILE_NAME="$(localstatedir)/mysqlmanager.sock"
|
|
|
|
|
2004-10-12 14:53:32 +04:00
|
|
|
liboptions_a_SOURCES= options.h options.cc
|
2003-08-16 21:44:24 +04:00
|
|
|
|
|
|
|
bin_PROGRAMS = mysqlmanager
|
|
|
|
|
2003-08-19 19:55:20 +04:00
|
|
|
mysqlmanager_SOURCES= mysqlmanager.cc manager.h manager.cc log.h log.cc \
|
|
|
|
listener.h listener.cc \
|
|
|
|
thread_repository.h thread_repository.cc
|
|
|
|
|
2003-08-16 21:44:24 +04:00
|
|
|
mysqlmanager_LDADD= liboptions.a \
|
|
|
|
$(top_builddir)/mysys/libmysys.a \
|
|
|
|
$(top_builddir)/strings/libmystrings.a \
|
|
|
|
$(top_builddir)/dbug/libdbug.a
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags -R *.h *.cc
|
|
|
|
|
|
|
|
# Don't update the files from bitkeeper
|
|
|
|
%::SCCS/s.%
|