~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-08-05 19:01:20 UTC
  • mto: (266.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: monty@inaugust.com-20080805190120-tsuziqz2mfqcw7pe
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's
not a standalone lib, there's no reason to pretend otherwise.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim:ft=automake
2
1
# Copyright (C) 2000-2002, 2005-2006 MySQL AB
3
2
4
3
# This program is free software; you can redistribute it and/or modify
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
16
15
 
17
 
if BUILD_MEMORY_PLUGIN
18
 
noinst_LTLIBRARIES+=    plugin/memory/libheap.la
19
 
endif
20
 
noinst_HEADERS+= \
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)
 
20
 
 
21
LDADD =                 libheap.la \
 
22
                        $(top_builddir)/mysys/libmysys.la \
 
23
                        $(top_builddir)/strings/libmystringslt.la
 
24
 
 
25
DEFS =                  @DEFS@
 
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 \
 
34
                        hp_rectest.c \
 
35
                        ha_heap.cc \
 
36
                        hp_hash.c hp_static.c
 
37
 
 
38
 
 
39
EXTRA_DIST =            plug.in
50
40