2001-04-11 13:04:03 +02:00
|
|
|
# Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# This file is public domain and comes with NO WARRANTY of any kind
|
|
|
|
|
2001-10-08 03:58:07 +02:00
|
|
|
MYSQLDATAdir = $(localstatedir)
|
|
|
|
MYSQLSHAREdir = $(pkgdatadir)
|
|
|
|
MYSQLBASEdir= $(prefix)
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
DEFS = -DEMBEDDED_LIBRARY -DMYSQL_SERVER \
|
|
|
|
-DDEFAULT_MYSQL_HOME="\"$(MYSQLBASEdir)\"" \
|
|
|
|
-DDATADIR="\"$(MYSQLDATAdir)\"" \
|
|
|
|
-DSHAREDIR="\"$(MYSQLSHAREdir)\""
|
2004-04-26 22:37:42 +02:00
|
|
|
INCLUDES= @MT_INCLUDES@ @bdb_includes@ -I$(top_srcdir)/include \
|
2003-08-18 23:08:08 +02:00
|
|
|
-I$(top_srcdir)/sql -I$(top_srcdir)/regex \
|
|
|
|
$(openssl_includes)
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-10-08 03:58:07 +02:00
|
|
|
noinst_LIBRARIES = libmysqld_int.a
|
|
|
|
pkglib_LIBRARIES = libmysqld.a
|
2001-09-18 05:05:55 +02:00
|
|
|
SUBDIRS = . examples
|
2003-12-01 14:19:10 +01:00
|
|
|
libmysqld_sources= libmysqld.c lib_sql.cc emb_qcache.cc
|
2004-06-24 17:08:36 +02:00
|
|
|
libmysqlsources = errmsg.c get_password.c libmysql.c client.c pack.c \
|
|
|
|
my_time.c
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2003-12-01 14:19:10 +01:00
|
|
|
noinst_HEADERS = embedded_priv.h emb_qcache.h
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2003-11-03 13:01:59 +01:00
|
|
|
sqlsources = derror.cc field.cc field_conv.cc strfunc.cc filesort.cc \
|
2002-01-15 23:42:52 +01:00
|
|
|
ha_innodb.cc ha_berkeley.cc ha_heap.cc ha_isam.cc ha_isammrg.cc \
|
2001-04-25 00:11:29 +02:00
|
|
|
ha_myisam.cc ha_myisammrg.cc handler.cc sql_handler.cc \
|
2003-03-18 22:14:02 +01:00
|
|
|
hostname.cc init.cc password.c \
|
2001-04-11 13:04:03 +02:00
|
|
|
item.cc item_buff.cc item_cmpfunc.cc item_create.cc \
|
|
|
|
item_func.cc item_strfunc.cc item_sum.cc item_timefunc.cc \
|
2003-05-30 12:22:34 +02:00
|
|
|
item_geofunc.cc item_uniq.cc item_subselect.cc item_row.cc\
|
2003-06-04 23:12:45 +02:00
|
|
|
key.cc lock.cc log.cc log_event.cc sql_state.c \
|
2004-02-03 11:35:24 +01:00
|
|
|
protocol.cc net_serv.cc opt_range.cc \
|
2001-10-11 04:37:05 +02:00
|
|
|
opt_sum.cc procedure.cc records.cc sql_acl.cc \
|
2004-05-25 21:08:59 +02:00
|
|
|
sql_load.cc discover.cc \
|
2001-04-11 13:04:03 +02:00
|
|
|
sql_analyse.cc sql_base.cc sql_cache.cc sql_class.cc \
|
2002-06-15 00:08:50 +02:00
|
|
|
sql_crypt.cc sql_db.cc sql_delete.cc sql_error.cc sql_insert.cc \
|
|
|
|
sql_lex.cc sql_list.cc sql_manager.cc sql_map.cc sql_parse.cc \
|
2003-05-02 18:07:41 +02:00
|
|
|
sql_prepare.cc sql_derived.cc sql_rename.cc \
|
2002-08-30 11:40:40 +02:00
|
|
|
sql_select.cc sql_do.cc sql_show.cc set_var.cc \
|
2001-04-11 13:04:03 +02:00
|
|
|
sql_string.cc sql_table.cc sql_test.cc sql_udf.cc \
|
|
|
|
sql_update.cc sql_yacc.cc table.cc thr_malloc.cc time.cc \
|
2002-02-22 12:24:42 +01:00
|
|
|
unireg.cc uniques.cc stacktrace.c sql_union.cc hash_filo.cc \
|
2004-06-24 17:08:36 +02:00
|
|
|
spatial.cc gstream.cc sql_help.cc tztime.cc my_time.c
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-10-08 03:58:07 +02:00
|
|
|
libmysqld_int_a_SOURCES= $(libmysqld_sources) $(libmysqlsources) $(sqlsources)
|
2001-10-08 22:20:19 +02:00
|
|
|
libmysqld_a_SOURCES=
|
2001-10-08 03:58:07 +02:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
# automake misses these
|
|
|
|
sql_yacc.cc sql_yacc.h: $(top_srcdir)/sql/sql_yacc.yy
|
|
|
|
|
2001-10-08 03:58:07 +02:00
|
|
|
# The following libraries should be included in libmysqld.a
|
|
|
|
INC_LIB= $(top_builddir)/regex/libregex.a \
|
|
|
|
$(top_builddir)/myisam/libmyisam.a \
|
|
|
|
$(top_builddir)/myisammrg/libmyisammrg.a \
|
|
|
|
$(top_builddir)/heap/libheap.a \
|
2004-04-26 22:37:42 +02:00
|
|
|
@innodb_libs@ @bdb_libs_with_path@ \
|
2001-10-08 03:58:07 +02:00
|
|
|
$(top_builddir)/mysys/libmysys.a \
|
|
|
|
$(top_builddir)/strings/libmystrings.a \
|
|
|
|
$(top_builddir)/dbug/libdbug.a \
|
2003-06-17 18:32:31 +02:00
|
|
|
$(top_builddir)/vio/libvio.a
|
2001-10-08 03:58:07 +02:00
|
|
|
|
|
|
|
#
|
2004-05-25 21:00:14 +02:00
|
|
|
# To make it easy for the end user to use the embedded library we
|
|
|
|
# generate a total libmysqld.a from all library files,
|
2001-10-08 03:58:07 +02:00
|
|
|
|
|
|
|
libmysqld.a: libmysqld_int.a $(INC_LIB)
|
2004-05-25 21:00:14 +02:00
|
|
|
if test "$(host_os)" = "netware" ; \
|
|
|
|
then \
|
|
|
|
$(libmysqld_a_AR) libmysqld.a libmysqld_int.a $(INC_LIB) ; \
|
|
|
|
else \
|
|
|
|
if test ! -d tmp ; then mkdir tmp ; fi ; \
|
|
|
|
rm -f $@ libmysqld_int2.a tmp/*.o tmp/*.a ; \
|
|
|
|
cp $(INC_LIB) tmp ; \
|
|
|
|
cp libmysqld_int.a libmysqld_int2.a ; \
|
|
|
|
cd tmp ; \
|
|
|
|
for file in *.a ; do \
|
|
|
|
bfile=`basename $$file .a` ; \
|
2004-05-25 21:54:00 +02:00
|
|
|
$(AR) x $$file; \
|
2004-05-25 21:00:14 +02:00
|
|
|
for obj in *.o ; do mv $$obj $${bfile}_$$obj ; done ; \
|
2004-05-25 21:54:00 +02:00
|
|
|
$(AR) q ../libmysqld_int2.a *.o ; \
|
2004-05-25 21:00:14 +02:00
|
|
|
rm -f *.o ; \
|
|
|
|
done ; \
|
|
|
|
cd .. ; \
|
|
|
|
mv libmysqld_int2.a libmysqld.a ; \
|
|
|
|
rm -f tmp/* ; \
|
|
|
|
$(RANLIB) libmysqld.a ; \
|
|
|
|
fi
|
|
|
|
|
2001-10-08 03:58:07 +02:00
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
## XXX: any time the client interface changes, we'll need to bump
|
|
|
|
## the version info for libmysqld; however, it's possible for the
|
|
|
|
## libmysqld interface to change without affecting the standard
|
|
|
|
## libmysqlclient interface. Should we make a separate version
|
|
|
|
## string for the two?
|
2001-10-08 03:58:07 +02:00
|
|
|
#libmysqld_la_LDFLAGS = -version-info @SHARED_LIB_VERSION@
|
|
|
|
#CLEANFILES = $(libmysqld_la_LIBADD) libmysqld.la
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
# This is called from the toplevel makefile
|
|
|
|
link_sources:
|
|
|
|
set -x; \
|
|
|
|
for f in $(sqlsources); do \
|
|
|
|
rm -f $(srcdir)/$$f; \
|
|
|
|
@LN_CP_F@ $(srcdir)/../sql/$$f $(srcdir)/$$f; \
|
|
|
|
done; \
|
|
|
|
for f in $(libmysqlsources); do \
|
|
|
|
rm -f $(srcdir)/$$f; \
|
|
|
|
@LN_CP_F@ $(srcdir)/../libmysql/$$f $(srcdir)/$$f; \
|
2003-06-17 18:32:31 +02:00
|
|
|
done; \
|
2003-07-14 13:38:51 +02:00
|
|
|
rm -f $(srcdir)/client_settings.h; \
|
2003-06-17 18:32:31 +02:00
|
|
|
@LN_CP_F@ $(srcdir)/../libmysql/client_settings.h $(srcdir)/client_settings.h;
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
clean-local:
|
|
|
|
rm -f `echo $(sqlsources) $(libmysqlsources) | sed "s;\.lo;.c;g"` \
|
2003-06-17 18:32:31 +02:00
|
|
|
$(top_srcdir)/linked_libmysqld_sources; \
|
|
|
|
rm -f client_settings.h
|
2001-04-11 13:04:03 +02:00
|
|
|
|
|
|
|
# Don't update the files from bitkeeper
|
|
|
|
%::SCCS/s.%
|