14
13
# along with this program; if not, write to the Free Software
15
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
if BUILD_MEMORY_PLUGIN
18
noinst_LTLIBRARIES+= plugin/memory/libheap.la
21
plugin/memory/ha_heap.h \
22
plugin/memory/heap.h \
23
plugin/memory/heap_priv.h
24
plugin_memory_libheap_la_SOURCES= \
25
plugin/memory/hp_block.cc \
26
plugin/memory/hp_clear.cc \
27
plugin/memory/hp_close.cc \
28
plugin/memory/hp_create.cc \
29
plugin/memory/hp_delete.cc \
30
plugin/memory/hp_dspace.cc \
31
plugin/memory/hp_extra.cc \
32
plugin/memory/hp_hash.cc \
33
plugin/memory/hp_info.cc \
34
plugin/memory/hp_open.cc \
35
plugin/memory/hp_panic.cc \
36
plugin/memory/hp_record.cc \
37
plugin/memory/hp_rectest.cc \
38
plugin/memory/hp_rename.cc \
39
plugin/memory/hp_rfirst.cc \
40
plugin/memory/hp_rkey.cc \
41
plugin/memory/hp_rlast.cc \
42
plugin/memory/hp_rnext.cc \
43
plugin/memory/hp_rprev.cc \
44
plugin/memory/hp_rrnd.cc \
45
plugin/memory/hp_rsame.cc \
46
plugin/memory/hp_scan.cc \
47
plugin/memory/hp_static.cc \
48
plugin/memory/hp_update.cc \
49
plugin/memory/hp_write.cc
16
MYSQLDATAdir = $(localstatedir)
17
MYSQLSHAREdir = $(pkgdatadir)
18
MYSQLBASEdir= $(prefix)
19
MYSQLLIBdir= $(pkglibdir)
22
$(top_builddir)/mysys/libmysys.la \
23
$(top_builddir)/strings/libmystringslt.la
26
noinst_LTLIBRARIES = libheap.la
27
noinst_HEADERS = heapdef.h ha_heap.h heap.h
28
libheap_la_SOURCES = hp_open.c hp_extra.c hp_close.c hp_panic.c hp_info.c \
29
hp_rrnd.c hp_scan.c hp_update.c hp_write.c hp_delete.c \
30
hp_rsame.c hp_create.c hp_rename.c hp_rfirst.c \
31
hp_rnext.c hp_rlast.c hp_rprev.c hp_clear.c \
32
hp_dspace.c hp_record.c \
33
hp_rkey.c hp_block.c \