~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/src/Makefile.am

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
LDADD =
10
10
 
11
 
noinst_HEADERS =                ha_pbxt.h xt_config.h bsearch_xt.h cache_xt.h \
12
 
                                                database_xt.h datalog_xt.h xt_defs.h xt_errno.h \
13
 
                                                filesys_xt.h memory_xt.h myxt_xt.h sortedlist_xt.h \
14
 
                                                hashtab_xt.h heap_xt.h index_xt.h linklist_xt.h \
15
 
                                                strutil_xt.h table_xt.h thread_xt.h trace_xt.h \
16
 
                                                xaction_xt.h util_xt.h datadic_xt.h ccutils_xt.h \
17
 
                                                pthread_xt.h streaming_xt.h mybs.h
 
11
noinst_HEADERS =                bsearch_xt.h cache_xt.h ccutils_xt.h database_xt.h \
 
12
                                                datadic_xt.h datalog_xt.h filesys_xt.h hashtab_xt.h \
 
13
                                                ha_pbxt.h heap_xt.h index_xt.h linklist_xt.h \
 
14
                                                memory_xt.h myxt_xt.h pthread_xt.h restart_xt.h \
 
15
                                                streaming_xt.h sortedlist_xt.h strutil_xt.h \
 
16
                                                tabcache_xt.h table_xt.h trace_xt.h thread_xt.h \
 
17
                                                util_xt.h xaction_xt.h xactlog_xt.h lock_xt.h \
 
18
                                                mybs.h xt_config.h xt_defs.h xt_errno.h
18
19
 
19
20
lib_LTLIBRARIES =               libpbxt.la
20
21
 
21
 
libpbxt_la_SOURCES =    ha_pbxt.cc pthread_xt.cc filesys_xt.cc hashtab_xt.cc \
22
 
                                                heap_xt.cc linklist_xt.cc memory_xt.cc xaction_xt.cc \
23
 
                                                sortedlist_xt.cc strutil_xt.cc thread_xt.cc trace_xt.cc \
24
 
                                                util_xt.cc cache_xt.cc database_xt.cc datalog_xt.cc \
25
 
                                                index_xt.cc myxt_xt.cc table_xt.cc datadic_xt.cc \
26
 
                                                ccutils_xt.cc bsearch_xt.cc streaming_xt.cc
 
22
libpbxt_la_SOURCES =    bsearch_xt.cc cache_xt.cc ccutils_xt.cc database_xt.cc \
 
23
                                                datadic_xt.cc datalog_xt.cc filesys_xt.cc hashtab_xt.cc \
 
24
                                                ha_pbxt.cc heap_xt.cc index_xt.cc linklist_xt.cc \
 
25
                                                memory_xt.cc myxt_xt.cc pthread_xt.cc restart_xt.cc \
 
26
                                                streaming_xt.cc sortedlist_xt.cc strutil_xt.cc \
 
27
                                                tabcache_xt.cc table_xt.cc trace_xt.cc thread_xt.cc \
 
28
                                                util_xt.cc xaction_xt.cc xactlog_xt.cc lock_xt.cc
27
29
 
28
30
libpbxt_la_LDFLAGS =    -module
29
31