1
# Copyright (C) 2000-2006 MySQL AB
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; version 2 of the License.
7
# This program is distributed in the hope that it will be useful,
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
# GNU General Public License for more details.
12
# You should have received a copy of the GNU General Public License
13
# along with this program; if not, write to the Free Software
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
LDADD= libmyisamutil.la \
1
# Copyright (C) 2009 Sun Microsystems
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; version 2 of the License.
7
# This program is distributed in the hope that it will be useful,
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
# GNU General Public License for more details.
12
# You should have received a copy of the GNU General Public License
13
# along with this program; if not, write to the Free Software
14
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16
noinst_LTLIBRARIES+= plugin/myisam/libmyisam.la
18
plugin/myisam/ha_myisam.h \
19
plugin/myisam/keycache.h \
20
plugin/myisam/my_handler.h \
21
plugin/myisam/myisam.h \
22
plugin/myisam/myisamdef.h \
23
plugin/myisam/myisampack.h
25
plugin_myisam_libmyisam_la_SOURCES= \
26
plugin/myisam/mf_keycache.cc \
27
plugin/myisam/mf_keycaches.cc \
28
plugin/myisam/mi_cache.cc \
29
plugin/myisam/mi_changed.cc \
30
plugin/myisam/mi_check.cc \
31
plugin/myisam/mi_checksum.cc \
32
plugin/myisam/mi_close.cc \
33
plugin/myisam/mi_create.cc\
34
plugin/myisam/mi_delete.cc \
35
plugin/myisam/mi_delete_all.cc \
36
plugin/myisam/mi_delete_table.cc \
37
plugin/myisam/mi_dynrec.cc \
38
plugin/myisam/mi_extra.cc \
39
plugin/myisam/mi_info.cc \
40
plugin/myisam/mi_key.cc \
41
plugin/myisam/mi_keycache.cc \
42
plugin/myisam/mi_locking.cc \
43
plugin/myisam/mi_open.cc \
44
plugin/myisam/mi_page.cc \
45
plugin/myisam/mi_panic.cc \
46
plugin/myisam/mi_preload.cc \
47
plugin/myisam/mi_range.cc \
48
plugin/myisam/mi_rename.cc \
49
plugin/myisam/mi_rfirst.cc \
50
plugin/myisam/mi_rkey.cc \
51
plugin/myisam/mi_rlast.cc \
52
plugin/myisam/mi_rnext.cc \
53
plugin/myisam/mi_rnext_same.cc \
54
plugin/myisam/mi_rprev.cc \
55
plugin/myisam/mi_rrnd.cc \
56
plugin/myisam/mi_rsame.cc \
57
plugin/myisam/mi_rsamepos.cc \
58
plugin/myisam/mi_scan.cc \
59
plugin/myisam/mi_search.cc \
60
plugin/myisam/mi_static.cc \
61
plugin/myisam/mi_statrec.cc \
62
plugin/myisam/mi_unique.cc \
63
plugin/myisam/mi_update.cc \
64
plugin/myisam/mi_write.cc \
65
plugin/myisam/my_handler.cc \
66
plugin/myisam/my_handler_errors.cc \
67
plugin/myisam/my_pread.cc \
70
nobase_bin_PROGRAMS+= plugin/myisam/myisamchk
71
plugin_myisam_myisamchk_SOURCES= \
72
plugin/myisam/mi_reportnone.cc \
73
plugin/myisam/myisamchk.cc
74
plugin_myisam_myisamchk_LDADD= \
75
plugin/myisam/libmyisam.la \
18
76
$(top_builddir)/mysys/libmysys.la \
19
77
$(top_builddir)/mystrings/libmystrings.la \
25
noinst_LTLIBRARIES = libmyisam.la libmyisamutil.la \
26
libmyisamha.la libmyisamnone.la
27
bin_PROGRAMS = myisamchk
37
libmyisamutil_la_SOURCES= \
78
my_handler_errors.cc \
82
libmyisamha_la_SOURCES = ha_myisam.cc
83
libmyisamnone_la_SOURCES = mi_reportnone.cc
84
libmyisam_la_SOURCES =
85
libmyisam_la_LIBADD = libmyisamha.la libmyisamutil.la
86
myisamchk_SOURCES = myisamchk.cc