~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/plugin.am

  • Committer: Brian Aker
  • Date: 2011-12-23 20:13:32 UTC
  • mto: (2478.1.1 drizzle-build)
  • mto: This revision was merged to the branch mainline in revision 2482.
  • Revision ID: brian@tangent.org-20111223201332-fr37eu91nqpkaryt
Cleanup yacc include, remove dead PC file, and put in the basics for RPM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
16
 
17
 
if BUILD_MEMORY_PLUGIN
18
 
noinst_LTLIBRARIES+=    plugin/memory/libheap.la
19
 
endif
 
17
noinst_LTLIBRARIES+= plugin/memory/libheap.la
20
18
noinst_HEADERS+= \
21
 
                        plugin/memory/ha_heap.h \
22
 
                        plugin/memory/heap.h \
23
 
                        plugin/memory/heap_priv.h
 
19
                 plugin/memory/ha_heap.h \
 
20
                 plugin/memory/heap.h \
 
21
                 plugin/memory/heap_priv.h
24
22
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
 
23
                                  plugin/memory/hp_block.cc \
 
24
                                  plugin/memory/hp_clear.cc \
 
25
                                  plugin/memory/hp_close.cc \
 
26
                                  plugin/memory/hp_create.cc \
 
27
                                  plugin/memory/hp_delete.cc \
 
28
                                  plugin/memory/hp_dspace.cc \
 
29
                                  plugin/memory/hp_extra.cc \
 
30
                                  plugin/memory/hp_hash.cc \
 
31
                                  plugin/memory/hp_info.cc \
 
32
                                  plugin/memory/hp_open.cc \
 
33
                                  plugin/memory/hp_panic.cc \
 
34
                                  plugin/memory/hp_record.cc \
 
35
                                  plugin/memory/hp_rectest.cc \
 
36
                                  plugin/memory/hp_rename.cc \
 
37
                                  plugin/memory/hp_rfirst.cc \
 
38
                                  plugin/memory/hp_rkey.cc \
 
39
                                  plugin/memory/hp_rlast.cc \
 
40
                                  plugin/memory/hp_rnext.cc \
 
41
                                  plugin/memory/hp_rprev.cc \
 
42
                                  plugin/memory/hp_rrnd.cc \
 
43
                                  plugin/memory/hp_rsame.cc \
 
44
                                  plugin/memory/hp_scan.cc \
 
45
                                  plugin/memory/hp_static.cc \
 
46
                                  plugin/memory/hp_update.cc \
 
47
                                  plugin/memory/hp_write.cc
50
48