2004-08-05 11:59:17 +02:00
|
|
|
# Copyright (C) 2000-2004 MySQL AB
|
2000-08-18 20:49:31 +02:00
|
|
|
#
|
2004-08-05 11:59:17 +02:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of version 2 GNU General Public License as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# There are special exceptions to the terms and conditions of the GPL as it
|
|
|
|
# is applied to this software. View the full text of the exception in file
|
2004-08-05 17:05:11 +02:00
|
|
|
# EXCEPTIONS-CLIENT in the directory of this software distribution.
|
2000-08-18 20:49:31 +02: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
|
2004-08-05 11:59:17 +02:00
|
|
|
#
|
|
|
|
# This file is public domain and comes with NO WARRANTY of any kind
|
2000-08-18 20:49:31 +02:00
|
|
|
|
|
|
|
target = libmysqlclient_r.la
|
2004-05-26 18:40:27 +02:00
|
|
|
target_defs = -DDONT_USE_RAID -DMYSQL_CLIENT @LIB_EXTRA_CCFLAGS@
|
2005-01-05 03:05:19 +01:00
|
|
|
LIBS = @LIBS@ @ZLIB_LIBS@ @openssl_libs@
|
2000-08-18 20:49:31 +02:00
|
|
|
|
2005-03-17 01:22:56 +01:00
|
|
|
INCLUDES = -I$(top_srcdir)/include $(openssl_includes) @ZLIB_INCLUDES@ \
|
2005-01-28 17:14:03 +01:00
|
|
|
-I$(top_builddir)/include
|
2000-08-18 20:49:31 +02:00
|
|
|
## automake barfs if you don't use $(srcdir) or $(top_srcdir) in include
|
|
|
|
include $(top_srcdir)/libmysql/Makefile.shared
|
|
|
|
|
|
|
|
libmysql_dir = $(top_srcdir)/libmysql
|
|
|
|
|
|
|
|
libmysqlclient_r_la_SOURCES = $(target_sources)
|
|
|
|
libmysqlclient_r_la_LIBADD = $(target_libadd)
|
|
|
|
libmysqlclient_r_la_LDFLAGS = $(target_ldflags)
|
|
|
|
|
|
|
|
# This is called from the toplevel makefile
|
|
|
|
link_sources:
|
|
|
|
set -x; \
|
|
|
|
for f in `cd $(libmysql_dir) && echo *.[ch]`; do \
|
|
|
|
rm -f $(srcdir)/$$f; \
|
|
|
|
@LN_CP_F@ $(libmysql_dir)/$$f $(srcdir)/$$f; \
|
|
|
|
done
|