~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/plugin.am

  • Committer: Monty Taylor
  • Date: 2009-04-25 06:33:32 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 1003.
  • Revision ID: mordred@inaugust.com-20090425063332-7mwb7spok7yt6h1z
Moved myisam to new plugin system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2000-2006 MySQL AB
2
 
#
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.
6
 
#
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.
11
 
#
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
15
 
 
16
 
LDADD=                  libmyisamutil.la \
17
 
                        libmyisamnone.la \
 
1
#  Copyright (C) 2009 Sun Microsystems
 
2
#
 
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.
 
6
#
 
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.
 
11
#
 
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
 
15
 
 
16
noinst_LTLIBRARIES+=    plugin/myisam/libmyisam.la 
 
17
noinst_HEADERS+=        \
 
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
 
24
 
 
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 \
 
68
                        plugin/myisam/sort.cc 
 
69
 
 
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 \
20
 
                        $(LIBZ) \
21
 
                        $(LIBINTL)
22
 
 
23
 
EXTRA_DIST =            plug.in
24
 
 
25
 
noinst_LTLIBRARIES =    libmyisam.la libmyisamutil.la \
26
 
                        libmyisamha.la libmyisamnone.la
27
 
bin_PROGRAMS =          myisamchk
28
 
 
29
 
noinst_HEADERS =        \
30
 
                        ha_myisam.h \
31
 
                        keycache.h \
32
 
                        my_handler.h \
33
 
                        myisam.h \
34
 
                        myisamdef.h \
35
 
                        myisampack.h
36
 
 
37
 
libmyisamutil_la_SOURCES= \
38
 
                        mf_keycache.cc \
39
 
                        mf_keycaches.cc \
40
 
                        mi_cache.cc \
41
 
                        mi_changed.cc \
42
 
                        mi_check.cc \
43
 
                        mi_checksum.cc \
44
 
                        mi_close.cc \
45
 
                        mi_create.cc\
46
 
                        mi_delete.cc \
47
 
                        mi_delete_all.cc \
48
 
                        mi_delete_table.cc \
49
 
                        mi_dynrec.cc \
50
 
                        mi_extra.cc \
51
 
                        mi_info.cc \
52
 
                        mi_key.cc \
53
 
                        mi_keycache.cc \
54
 
                        mi_locking.cc \
55
 
                        mi_open.cc \
56
 
                        mi_page.cc \
57
 
                        mi_panic.cc \
58
 
                        mi_preload.cc \
59
 
                        mi_range.cc \
60
 
                        mi_rename.cc \
61
 
                        mi_rfirst.cc \
62
 
                        mi_rkey.cc \
63
 
                        mi_rlast.cc \
64
 
                        mi_rnext.cc \
65
 
                        mi_rnext_same.cc \
66
 
                        mi_rprev.cc \
67
 
                        mi_rrnd.cc \
68
 
                        mi_rsame.cc \
69
 
                        mi_rsamepos.cc \
70
 
                        mi_scan.cc \
71
 
                        mi_search.cc \
72
 
                        mi_static.cc \
73
 
                        mi_statrec.cc \
74
 
                        mi_unique.cc \
75
 
                        mi_update.cc \
76
 
                        mi_write.cc \
77
 
                        my_handler.cc \
78
 
                        my_handler_errors.cc \
79
 
                        my_pread.cc \
80
 
                        sort.cc 
81
 
 
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 
 
78
                        $(LIBZ) $(LIBINTL)