summaryrefslogtreecommitdiff
path: root/storage/maria/Makefile.am
blob: c2bb61e77dd583bbee3d41186405d955361b36e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# Copyright (C) 2000-2008 MySQL 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; version 2 of the License.
#
# 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

MYSQLDATAdir =          $(localstatedir)
MYSQLSHAREdir =         $(pkgdatadir)
MYSQLBASEdir=           $(prefix)
MYSQLLIBdir=            $(pkglibdir)
INCLUDES =              -I$(top_srcdir)/include -I$(top_builddir)/include \
			-I$(top_srcdir)/regex \
			-I$(top_srcdir)/sql \
                        -I$(srcdir)
WRAPLIBS=

LDADD =

DEFS =                  @DEFS@

# "." is needed first because tests in unittest need libaria
SUBDIRS =		. unittest

EXTRA_DIST =		ma_test_all.sh ma_test_all.res ma_test_big.sh \
			ma_ft_stem.c CMakeLists.txt plug.in ma_test_recovery
pkgdata_DATA =		
pkglib_LIBRARIES =	libaria.a
noinst_LTLIBRARIES =	libaria.la libaria_s.la \
			@plugin_aria_embedded_static_target@
EXTRA_LTLIBRARIES =	libaria_embedded.la
bin_PROGRAMS =		aria_chk aria_pack aria_ftdump aria_read_log \
			aria_dump_log
aria_chk_DEPENDENCIES=	$(LIBRARIES)
# Only reason to link with libmyisam.a here is that it's where some fulltext
# pieces are (but soon we'll remove fulltext dependencies from Aria).
# For now, it imposes that storage/myisam be built before storage/maria.
aria_chk_SOURCES=	maria_chk.c
aria_chk_LDADD=		@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
aria_pack_SOURCES=	maria_pack.c
aria_pack_DEPENDENCIES=$(LIBRARIES)
aria_pack_LDADD=	@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
aria_read_log_SOURCES=	maria_read_log.c
aria_read_log_DEPENDENCIES=$(LIBRARIES)
aria_read_log_LDADD=	@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
aria_dump_log_DEPENDENCIES=$(LIBRARIES) ma_loghandler.c
aria_dump_log_LDADD=	@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
                        $(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
aria_dump_log_SOURCES= 	maria_dump_log.c unittest/ma_loghandler_examples.c
noinst_PROGRAMS =	ma_test1 ma_test2 ma_test3 ma_rt_test ma_sp_test
noinst_HEADERS =	maria_def.h ma_rt_index.h ma_rt_key.h ma_rt_mbr.h \
			ma_sp_defs.h ma_fulltext.h ma_ftdefs.h ma_ft_test1.h \
			ma_ft_eval.h trnman.h lockman.h tablockman.h \
			ma_control_file.h ha_maria.h ma_blockrec.h \
			ma_loghandler.h ma_loghandler_lsn.h ma_pagecache.h \
			ma_checkpoint.h ma_recovery.h ma_commit.h ma_state.h \
			trnman_public.h ma_check_standalone.h \
			ma_key_recover.h ma_recovery_util.h \
			ma_servicethread.h compat_aliases.h
ma_test1_DEPENDENCIES=	$(LIBRARIES)
ma_test1_LDADD=		@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
ma_test2_DEPENDENCIES=	$(LIBRARIES)
ma_test2_LDADD=		@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
ma_test3_DEPENDENCIES=	$(LIBRARIES)
ma_test3_LDADD=		@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
#ma_ft_test1_DEPENDENCIES=	$(LIBRARIES)
#ma_ft_eval_DEPENDENCIES=	$(LIBRARIES)
aria_ftdump_SOURCES=	maria_ftdump.c
aria_ftdump_DEPENDENCIES= $(LIBRARIES)
aria_ftdump_LDADD=	@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
ma_rt_test_DEPENDENCIES=	$(LIBRARIES)
ma_rt_test_LDADD=		@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
ma_sp_test_DEPENDENCIES=	$(LIBRARIES)
ma_sp_test_LDADD=		@CLIENT_EXTRA_LDFLAGS@ libaria.a \
                        $(top_builddir)/storage/myisam/libmyisam.a \
			$(top_builddir)/mysys/libmysys.a \
			$(top_builddir)/dbug/libdbug.a \
			$(top_builddir)/strings/libmystrings.a @ZLIB_LIBS@
libaria_la_SOURCES =	ma_init.c ma_open.c ma_extra.c ma_info.c ma_rkey.c \
			ma_rnext.c ma_rnext_same.c \
			ma_search.c ma_page.c ma_key_recover.c ma_key.c \
			ma_locking.c ma_state.c \
			ma_rrnd.c ma_scan.c ma_cache.c \
			ma_statrec.c ma_packrec.c ma_dynrec.c \
			ma_blockrec.c ma_bitmap.c \
			ma_update.c ma_write.c ma_unique.c \
			ma_delete.c \
			ma_rprev.c ma_rfirst.c ma_rlast.c ma_rsame.c \
			ma_rsamepos.c ma_panic.c ma_close.c ma_create.c\
			ma_range.c ma_dbug.c ma_checksum.c \
			ma_changed.c ma_static.c ma_delete_all.c \
			ma_delete_table.c ma_rename.c  ma_check.c \
			ma_keycache.c ma_preload.c ma_ft_parser.c \
			ma_ft_update.c ma_ft_boolean_search.c \
			ma_ft_nlq_search.c ft_maria.c ma_sort.c \
			trnman.c lockman.c tablockman.c \
			ma_rt_index.c ma_rt_key.c ma_rt_mbr.c ma_rt_split.c \
			ma_sp_key.c ma_control_file.c ma_loghandler.c \
			ma_pagecache.c ma_pagecaches.c \
			ma_checkpoint.c ma_recovery.c ma_commit.c \
			ma_pagecrc.c ma_recovery_util.c \
			compat_aliases.cc ma_servicethread.c

libaria_s_la_SOURCES =	ha_maria.cc
libaria_s_la_CXXFLAGS =	$(AM_CXXFLAGS)
libaria_s_la_LIBADD =	libaria.la
libaria_embedded_la_SOURCES =	ha_maria.cc
libaria_embedded_la_LIBADD =	libaria.la
libaria_embedded_la_CXXFLAGS =	$(AM_CXXFLAGS) @plugin_embedded_defs@

libaria_a_SOURCES=
libaria.a: libaria.la
	$(CP) .libs/libaria.a $@


CLEANFILES =		test?.MA? FT?.MA? isam.log ma_test_all ma_rt_test.MA? sp_test.MA? aria_log_control aria_log.0000*

SUFFIXES = .sh

.sh:
	@RM@ -f $@ $@-t
	@SED@ \
	  -e 's!@''bindir''@!$(bindir)!g' \
	  -e 's!@''scriptdir''@!$(bindir)!g' \
	  -e 's!@''prefix''@!$(prefix)!g' \
	  -e 's!@''datadir''@!$(datadir)!g' \
	  -e 's!@''localstatedir''@!$(localstatedir)!g' \
	  -e 's!@''libexecdir''@!$(libexecdir)!g' \
	  -e 's!@''CC''@!@CC@!'\
	  -e 's!@''CXX''@!@CXX@!'\
	  -e 's!@''GXX''@!@GXX@!'\
	  -e 's!@''PERL''@!@PERL@!' \
	  -e 's!@''CFLAGS''@!@SAVE_CFLAGS@!'\
	  -e 's!@''CXXFLAGS''@!@SAVE_CXXFLAGS@!'\
	  -e 's!@''LDFLAGS''@!@SAVE_LDFLAGS@!'\
	  -e 's!@''VERSION''@!@VERSION@!' \
	  -e 's!@''MYSQL_SERVER_SUFFIX''@!@MYSQL_SERVER_SUFFIX@!' \
	  -e 's!@''COMPILATION_COMMENT''@!@COMPILATION_COMMENT@!' \
	  -e 's!@''MACHINE_TYPE''@!@MACHINE_TYPE@!' \
	  -e 's!@''HOSTNAME''@!@HOSTNAME@!' \
	  -e 's!@''SYSTEM_TYPE''@!@SYSTEM_TYPE@!' \
	  -e 's!@''CHECK_PID''@!@CHECK_PID@!' \
	  -e 's!@''FIND_PROC''@!@FIND_PROC@!' \
	  -e 's!@''MYSQLD_DEFAULT_SWITCHES''@!@MYSQLD_DEFAULT_SWITCHES@!' \
	  -e 's!@''MYSQL_UNIX_ADDR''@!@MYSQL_UNIX_ADDR@!' \
	  -e 's!@''TARGET_LINUX''@!@TARGET_LINUX@!' \
	  -e "s!@""CONF_COMMAND""@!@CONF_COMMAND@!" \
	  -e 's!@''MYSQLD_USER''@!@MYSQLD_USER@!' \
	  -e 's!@''sysconfdir''@!@sysconfdir@!' \
	  -e 's!@''SHORT_MYSQL_INTRO''@!@SHORT_MYSQL_INTRO@!' \
	  -e 's!@''SHARED_LIB_VERSION''@!@SHARED_LIB_VERSION@!' \
	  -e 's!@''MYSQL_BASE_VERSION''@!@MYSQL_BASE_VERSION@!' \
	  -e 's!@''MYSQL_NO_DASH_VERSION''@!@MYSQL_NO_DASH_VERSION@!' \
	  -e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
	  -e 's!@''PERL_DBI_VERSION''@!@PERL_DBI_VERSION@!' \
	  -e 's!@''PERL_DBD_VERSION''@!@PERL_DBD_VERSION@!' \
	  -e 's!@''PERL_DATA_DUMPER''@!@PERL_DATA_DUMPER@!' \
	$< > $@-t
	@CHMOD@ +x $@-t
	@MV@ $@-t $@

tags:
	etags *.h *.c *.cc

unittests = unittest

test:
	perl $(top_srcdir)/unittest/unit.pl run $(unittests)

test-verbose:
	HARNESS_VERBOSE=1 perl $(top_srcdir)/unittest/unit.pl run $(unittests)