Makefile.shared 4.64 KB
Newer Older
1 2 3 4 5 6 7 8
# Copyright (C) 2000-2004 MySQL AB
# 
# 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
9
# EXCEPTIONS-CLIENT in the directory of this software distribution.
10 11 12 13 14 15 16 17 18 19 20 21
# 
# 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
22 23 24 25 26 27 28 29 30 31 32 33

MYSQLDATAdir =			$(localstatedir)
MYSQLSHAREdir =			$(pkgdatadir)
MYSQLBASEdir=			$(prefix)
## We'll use CLIENT_EXTRA_LDFLAGS for threaded and non-threaded
## until someone complains that they need separate options.
LDADD =				@CLIENT_EXTRA_LDFLAGS@ $(target)
pkglib_LTLIBRARIES =		$(target)

noinst_PROGRAMS = conf_to_src


34 35
target_sources = 	libmysql.c password.c manager.c \
			get_password.c errmsg.c
36

37
mystringsobjects =	strmov.lo strxmov.lo strxnmov.lo strnmov.lo \
serg@serg.mylan's avatar
serg@serg.mylan committed
38
			strmake.lo strend.lo strtod.lo \
39 40
			strnlen.lo strfill.lo is_prefix.lo \
			int2str.lo str2int.lo strinstr.lo strcont.lo \
41
			strcend.lo bcmp.lo ctype-latin1.lo \
42
			bchange.lo bmove.lo bmove_upp.lo longlong2str.lo \
43
			strtoull.lo strtoll.lo llstr.lo my_vsnprintf.lo \
44
			ctype.lo ctype-simple.lo ctype-bin.lo ctype-mb.lo \
45
			ctype-big5.lo ctype-czech.lo ctype-cp932.lo ctype-eucjpms.lo ctype-euc_kr.lo \
46
			ctype-win1250ch.lo ctype-utf8.lo ctype-extra.lo \
47
			ctype-ucs2.lo ctype-gb2312.lo ctype-gbk.lo \
48
			ctype-sjis.lo ctype-tis620.lo ctype-ujis.lo \
49
			ctype-uca.lo xml.lo my_strtoll10.lo str_alloc.lo 
50

51
mystringsextra= 	strto.c
52 53
dbugobjects =		dbug.lo # IT IS IN SAFEMALLOC.C sanity.lo
mysysheaders =		mysys_priv.h my_static.h
54
vioheaders =		vio_priv.h
55
mysysobjects1 =		my_init.lo my_static.lo my_malloc.lo my_realloc.lo \
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
56
			my_create.lo my_delete.lo mf_tempfile.lo my_open.lo \
57
			my_file.lo my_read.lo my_write.lo errors.lo \
58 59 60 61
			my_error.lo my_getwd.lo my_div.lo \
			mf_pack.lo my_messnc.lo mf_dirname.lo mf_fn_ext.lo\
			mf_wcomp.lo typelib.lo safemalloc.lo my_alloc.lo \
			mf_format.lo mf_path.lo mf_unixpath.lo my_fopen.lo \
62
			my_symlink.lo my_fstream.lo \
63
			mf_loadpath.lo my_pthread.lo my_thr_init.lo \
64 65
			thr_mutex.lo mulalloc.lo string.lo \
                        default.lo default_modify.lo \
66
			my_compress.lo array.lo my_once.lo list.lo my_net.lo \
67
                        charset.lo charset-def.lo hash.lo mf_iocache.lo \
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
68
                        mf_iocache2.lo my_seek.lo my_sleep.lo \
69 70
			my_pread.lo mf_cache.lo md5.lo sha1.lo \
			my_getopt.lo my_gethostbyname.lo my_port.lo \
petr@mysql.com's avatar
petr@mysql.com committed
71
                        my_rename.lo my_chsize.lo
72
sqlobjects =		net.lo
73
sql_cmn_objects =	pack.lo client.lo my_time.lo
74

75
# Not needed in the minimum library
76
mysysobjects2 =		my_lib.lo
77
mysysobjects =		$(mysysobjects1) $(mysysobjects2)
78
target_libadd =		$(mysysobjects) $(mystringsobjects) $(dbugobjects) \
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
79
 $(sql_cmn_objects) $(vio_objects) $(sqlobjects)
80
target_ldflags = -version-info @SHARED_LIB_VERSION@ @LD_VERSION_SCRIPT@ 
81
vio_objects= vio.lo viosocket.lo viossl.lo viosslfactories.lo
82 83 84 85
CLEANFILES =		$(target_libadd) $(SHLIBOBJS) \
			$(target)
DEFS =			-DDEFAULT_CHARSET_HOME="\"$(MYSQLBASEdir)\"" \
			-DDATADIR="\"$(MYSQLDATAdir)\"" \
86
			-DDEFAULT_HOME_ENV=MYSQL_HOME \
monty@mishka.local's avatar
monty@mishka.local committed
87
			-DDEFAULT_GROUP_SUFFIX_ENV=MYSQL_GROUP_SUFFIX \
88 89
			-DSHAREDIR="\"$(MYSQLSHAREdir)\"" $(target_defs)

serg@serg.mylan's avatar
serg@serg.mylan committed
90 91 92 93 94
if HAVE_YASSL
yassl_las = $(top_srcdir)/extra/yassl/src/libyassl.la \
	    $(top_srcdir)/extra/yassl/taocrypt/src/libtaocrypt.la
endif

95
# The automatic dependencies miss this
96
#bmove_upp.lo:		$(LTCHARSET_OBJS)
97 98 99 100 101

clean-local:
	rm -f `echo $(mystringsobjects) | sed "s;\.lo;.c;g"` \
	      `echo $(dbugobjects) | sed "s;\.lo;.c;g"` \
	      `echo $(mysysobjects) | sed "s;\.lo;.c;g"` \
102
	      `echo $(vio_objects) | sed "s;\.lo;.c;g"` \
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
103
	      `echo $(sql_cmn_objects) | sed "s;\.lo;.c;g"` \
104
	       $(CHARSET_SRCS) $(CHARSET_OBJS) \
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
105
	       $(mystringsextra) $(mysysheaders) $(vioheaders)\
106 107
	       ../linked_libmysql_sources ../linked_libmysql_r_sources \
               net.c
108 109 110

conf_to_src_SOURCES = conf_to_src.c
conf_to_src_LDADD=
111 112 113 114
#force static linking of conf_to_src - essential when linking against
#custom installation of libc
conf_to_src_LDFLAGS=@NOINST_LDFLAGS@

115 116
# Don't update the files from bitkeeper
%::SCCS/s.%