mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
0d1ba873aa
BitKeeper/etc/ignore: auto-union BitKeeper/etc/logging_ok: auto-union Docs/manual.texi: Auto merged include/my_base.h: Auto merged mysql-test/t/func_time.test: Auto merged mysql-test/t/join.test: Auto merged mysql-test/t/rpl000012.test: Auto merged BUILD/FINISH.sh: Auto merged BitKeeper/deleted/.del-db_ext.h~a1e210bbd0de0a48: Auto merged BitKeeper/deleted/.del-mutex_ext.h~f20f47ddc346598b: Auto merged BitKeeper/deleted/.del-violite.c~984c09cffe14a11b: Auto merged BitKeeper/deleted/.del-violite.c~d7b85be615595ace: Auto merged Build-tools/Do-all-build-steps: Auto merged client/client_priv.h: Auto merged client/mysqladmin.c: Auto merged innobase/include/srv0srv.h: Auto merged innobase/include/univ.i: Auto merged innobase/log/log0log.c: Auto merged innobase/srv/srv0srv.c: Auto merged innobase/srv/srv0start.c: Auto merged isam/pack_isam.c: Auto merged libmysql_r/Makefile.am: Auto merged myisam/myisamchk.c: Auto merged mysql-test/t/having.test: Auto merged mysql-test/t/rpl000015-slave.sh: Auto merged mysql-test/t/rpl000016-slave.sh: Auto merged mysys/mf_cache.c: Auto merged mysys/mf_casecnv.c: Auto merged mysys/mf_tempfile.c: Auto merged readline/vi_mode.c: Auto merged strings/strto.c: Auto merged sql/field.cc: Auto merged sql/field.h: Auto merged sql/ha_berkeley.cc: Auto merged sql/ha_myisammrg.cc: Auto merged sql/handler.cc: Auto merged sql/item.h: Auto merged sql/log_event.cc: Auto merged sql/sql_acl.cc: Auto merged sql/time.cc: Auto merged BUILD/SETUP.sh: Use -mcpu as default (safe for all x86 cpu's) client/mysqldump.c: Merge from 3.23.44 configure.in: Update version number extra/resolveip.c: Portability fix
53 lines
2 KiB
Makefile
53 lines
2 KiB
Makefile
# 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
|
|
|
|
|
|
|
|
target = libmysqlclient_r.la
|
|
target_defs = -DDONT_USE_RAID @LIB_EXTRA_CCFLAGS@
|
|
## LIBS = @LIBS@
|
|
|
|
INCLUDES = @MT_INCLUDES@ -I$(srcdir)/../include -I../include \
|
|
-I$(srcdir)/.. -I$(top_srcdir) -I.. $(openssl_includes)
|
|
|
|
## automake barfs if you don't use $(srcdir) or $(top_srcdir) in include
|
|
include $(top_srcdir)/libmysql/Makefile.shared
|
|
|
|
# Don't depend on files in pthread library
|
|
OMIT_DEPENDENCIES = pthread.h stdio.h __stdio.h stdlib.h __stdlib.h math.h\
|
|
__math.h time.h __time.h unistd.h __unistd.h types.h \
|
|
xtypes.h ac-types.h posix.h string.h __string.h \
|
|
errno.h socket.h inet.h dirent.h netdb.h \
|
|
cleanup.h cond.h debug_out.h fd.h kernel.h mutex.h \
|
|
prio_queue.h pthread_attr.h pthread_once.h queue.h\
|
|
sleep.h specific.h version.h pwd.h timers.h uio.h \
|
|
cdefs.h machdep.h signal.h __signal.h util.h lex.h \
|
|
wait.h
|
|
|
|
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
|