mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
f8866c162b
BitKeeper/etc/ignore: auto-union BitKeeper/etc/logging_ok: auto-union client/mysqltest.c: Auto merged configure.in: Auto merged include/my_sys.h: Auto merged include/mysql_com.h: Auto merged libmysql/libmysql.c: Auto merged libmysqld/Makefile.am: Auto merged libmysqld/lib_sql.cc: Auto merged myisam/mi_check.c: Auto merged myisam/myisamchk.c: Auto merged myisam/myisamdef.h: Auto merged mysql-test/r/func_group.result: Auto merged mysql-test/r/func_time.result: Auto merged mysql-test/r/null.result: Auto merged mysql-test/r/query_cache.result: Auto merged mysql-test/r/rpl_server_id2.result: Auto merged mysql-test/r/select.result: Auto merged mysql-test/r/subselect.result: Auto merged mysql-test/r/variables.result: Auto merged mysql-test/t/rpl000015.test: Auto merged mysql-test/t/rpl_error_ignored_table.test: Auto merged mysql-test/t/rpl_log.test: Auto merged mysql-test/t/rpl_log_pos.test: Auto merged mysql-test/t/rpl_max_relay_size.test: Auto merged mysql-test/t/rpl_relayrotate.test: Auto merged mysql-test/t/rpl_rotate_logs.test: Auto merged mysql-test/t/rpl_server_id2.test: Auto merged mysql-test/t/subselect.test: Auto merged mysql-test/t/variables.test: Auto merged mysys/my_pthread.c: Auto merged netware/BUILD/compile-netware-all: Auto merged netware/BUILD/compile-netware-standard: Auto merged netware/BUILD/mwenv: Auto merged netware/Makefile.am: Auto merged netware/my_manage.c: Auto merged netware/my_manage.h: Auto merged netware/mysql_test_run.c: Auto merged scripts/mysql_install_db.sh: Auto merged sql/Makefile.am: Auto merged sql/ha_berkeley.cc: Auto merged sql/ha_berkeley.h: Auto merged sql/ha_innodb.cc: Auto merged sql/ha_innodb.h: Auto merged sql/ha_myisam.cc: Auto merged sql/handler.cc: Auto merged sql/handler.h: Auto merged sql/item.cc: Auto merged sql/item.h: Auto merged sql/item_cmpfunc.cc: Auto merged sql/item_func.cc: Auto merged sql/item_subselect.cc: Auto merged sql/item_subselect.h: Auto merged sql/item_sum.cc: Auto merged sql/item_sum.h: Auto merged sql/item_timefunc.cc: Auto merged sql/lock.cc: Auto merged sql/mysql_priv.h: Auto merged sql/opt_range.cc: Auto merged sql/protocol.cc: Auto merged sql/protocol.h: Auto merged sql/repl_failsafe.cc: Auto merged sql/set_var.cc: Auto merged sql/sql_acl.cc: Auto merged sql/sql_base.cc: Auto merged sql/sql_cache.cc: Auto merged sql/sql_class.cc: Auto merged sql/sql_class.h: Auto merged sql/sql_db.cc: Auto merged sql/sql_insert.cc: Auto merged sql/sql_parse.cc: Auto merged sql/sql_prepare.cc: Auto merged sql/sql_select.h: Auto merged sql/sql_show.cc: Auto merged sql/sql_string.cc: Auto merged sql/sql_string.h: Auto merged sql/sql_table.cc: Auto merged sql/sql_union.cc: Auto merged sql/sql_yacc.yy: Auto merged tests/client_test.c: Auto merged
147 lines
5.5 KiB
Makefile
147 lines
5.5 KiB
Makefile
# Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#called from the top level Makefile
|
|
|
|
MYSQLDATAdir = $(localstatedir)
|
|
MYSQLSHAREdir = $(pkgdatadir)
|
|
MYSQLBASEdir= $(prefix)
|
|
INCLUDES = @MT_INCLUDES@ \
|
|
@bdb_includes@ @innodb_includes@ @ndbcluster_includes@ \
|
|
-I$(top_srcdir)/include -I$(top_srcdir)/regex \
|
|
-I$(srcdir) $(openssl_includes)
|
|
WRAPLIBS= @WRAPLIBS@
|
|
SUBDIRS = share
|
|
libexec_PROGRAMS = mysqld
|
|
noinst_PROGRAMS = gen_lex_hash
|
|
gen_lex_hash_LDFLAGS = @NOINST_LDFLAGS@
|
|
LDADD = @isam_libs@ \
|
|
../myisam/libmyisam.a \
|
|
../myisammrg/libmyisammrg.a \
|
|
../heap/libheap.a \
|
|
../vio/libvio.a \
|
|
../mysys/libmysys.a \
|
|
../dbug/libdbug.a \
|
|
../regex/libregex.a \
|
|
../strings/libmystrings.a
|
|
|
|
mysqld_LDADD = @MYSQLD_EXTRA_LDFLAGS@ \
|
|
@bdb_libs@ @innodb_libs@ @pstack_libs@ \
|
|
@innodb_system_libs@ \
|
|
@ndbcluster_libs@ @ndbcluster_system_libs@ \
|
|
$(LDADD) $(CXXLDFLAGS) $(WRAPLIBS) @LIBDL@ @openssl_libs@
|
|
noinst_HEADERS = item.h item_func.h item_sum.h item_cmpfunc.h \
|
|
item_strfunc.h item_timefunc.h item_uniq.h \
|
|
item_create.h item_subselect.h item_row.h \
|
|
mysql_priv.h item_geofunc.h sql_bitmap.h \
|
|
procedure.h sql_class.h sql_lex.h sql_list.h \
|
|
sql_manager.h sql_map.h sql_string.h unireg.h \
|
|
field.h handler.h mysqld_suffix.h \
|
|
ha_isammrg.h ha_isam.h ha_myisammrg.h\
|
|
ha_heap.h ha_myisam.h ha_berkeley.h ha_innodb.h \
|
|
ha_ndbcluster.h opt_range.h protocol.h \
|
|
sql_select.h structs.h table.h sql_udf.h hash_filo.h\
|
|
lex.h lex_symbol.h sql_acl.h sql_crypt.h \
|
|
log_event.h sql_repl.h slave.h \
|
|
stacktrace.h sql_sort.h sql_cache.h set_var.h \
|
|
spatial.h gstream.h client_settings.h \
|
|
examples/ha_example.h \
|
|
sp_head.h sp_pcontext.h sp_rcontext.h sp.h sp_cache.h \
|
|
parse_file.h
|
|
mysqld_SOURCES = sql_lex.cc sql_handler.cc \
|
|
item.cc item_sum.cc item_buff.cc item_func.cc \
|
|
item_cmpfunc.cc item_strfunc.cc item_timefunc.cc \
|
|
thr_malloc.cc item_create.cc item_subselect.cc \
|
|
item_row.cc item_geofunc.cc \
|
|
field.cc strfunc.cc key.cc sql_class.cc sql_list.cc \
|
|
net_serv.cc protocol.cc sql_state.c \
|
|
lock.cc my_lock.c \
|
|
sql_string.cc sql_manager.cc sql_map.cc \
|
|
mysqld.cc password.c hash_filo.cc hostname.cc \
|
|
set_var.cc sql_parse.cc sql_yacc.yy \
|
|
sql_base.cc table.cc sql_select.cc sql_insert.cc \
|
|
sql_prepare.cc sql_error.cc \
|
|
sql_update.cc sql_delete.cc uniques.cc sql_do.cc \
|
|
procedure.cc item_uniq.cc sql_test.cc \
|
|
log.cc log_event.cc init.cc derror.cc sql_acl.cc \
|
|
unireg.cc des_key_file.cc \
|
|
discover.cc time.cc opt_range.cc opt_sum.cc \
|
|
records.cc filesort.cc handler.cc \
|
|
ha_heap.cc ha_myisam.cc ha_myisammrg.cc \
|
|
ha_berkeley.cc ha_innodb.cc \
|
|
ha_isam.cc ha_isammrg.cc ha_ndbcluster.cc \
|
|
sql_db.cc sql_table.cc sql_rename.cc sql_crypt.cc \
|
|
sql_load.cc mf_iocache.cc field_conv.cc sql_show.cc \
|
|
sql_udf.cc sql_analyse.cc sql_analyse.h sql_cache.cc \
|
|
slave.cc sql_repl.cc sql_union.cc sql_derived.cc \
|
|
client.c sql_client.cc mini_client_errors.c pack.c\
|
|
stacktrace.c repl_failsafe.h repl_failsafe.cc \
|
|
gstream.cc spatial.cc sql_help.cc protocol_cursor.cc \
|
|
examples/ha_example.cc \
|
|
sp_head.cc sp_pcontext.cc sp_rcontext.cc sp.cc \
|
|
sp_cache.cc parse_file.cc
|
|
gen_lex_hash_SOURCES = gen_lex_hash.cc
|
|
gen_lex_hash_LDADD = $(LDADD) $(CXXLDFLAGS)
|
|
|
|
DEFS = -DMYSQL_SERVER \
|
|
-DDEFAULT_MYSQL_HOME="\"$(MYSQLBASEdir)\"" \
|
|
-DDATADIR="\"$(MYSQLDATAdir)\"" \
|
|
-DSHAREDIR="\"$(MYSQLSHAREdir)\"" \
|
|
@DEFS@
|
|
# Don't put lex_hash.h in BUILT_SOURCES as this will give infinite recursion
|
|
BUILT_SOURCES = sql_yacc.cc sql_yacc.h
|
|
EXTRA_DIST = udf_example.cc $(BUILT_SOURCES)
|
|
AM_YFLAGS = -d
|
|
|
|
link_sources:
|
|
rm -f mini_client_errors.c
|
|
@LN_CP_F@ ../libmysql/errmsg.c mini_client_errors.c
|
|
rm -f pack.c
|
|
@LN_CP_F@ ../sql-common/pack.c pack.c
|
|
rm -f client.c
|
|
@LN_CP_F@ ../sql-common/client.c client.c
|
|
|
|
gen_lex_hash.o: gen_lex_hash.cc lex.h
|
|
$(CXXCOMPILE) -c $(INCLUDES) $<
|
|
|
|
# Try to get better dependencies for the grammar. Othervise really bad
|
|
# things like different grammars for different pars of MySQL can
|
|
# happen if you are unlucky.
|
|
sql_yacc.cc: sql_yacc.yy
|
|
sql_yacc.h: sql_yacc.yy
|
|
|
|
sql_yacc.o: sql_yacc.cc sql_yacc.h $(HEADERS)
|
|
@echo "Note: The following compile may take a long time."
|
|
@echo "If it fails, re-run configure with --with-low-memory"
|
|
$(CXXCOMPILE) $(LM_CFLAGS) -c $<
|
|
|
|
lex_hash.h: lex.h gen_lex_hash.cc sql_yacc.h
|
|
$(MAKE) gen_lex_hash$(EXEEXT)
|
|
./gen_lex_hash$(EXEEXT) > $@
|
|
|
|
# Hack to ensure that lex_hash.h is built early
|
|
sql_lex.o: lex_hash.h
|
|
|
|
# For testing of udf_example.so; Works on platforms with gcc
|
|
# (This is not part of our build process but only provided as an example)
|
|
udf_example.so: udf_example.cc
|
|
$(CXXCOMPILE) -shared -o $@ $<
|
|
|
|
#distclean:
|
|
# rm -f lex_hash.h
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|