~drizzle-pbxt/drizzle/drizzle-pbxt-2

« back to all changes in this revision

Viewing changes to drizzled/message/Makefile.am

  • Committer: Paul McCullagh
  • Date: 2009-11-10 14:18:39 UTC
  • mfrom: (1038.1.7 drizzle-pbxt-pre-merge)
  • Revision ID: paul.mccullagh@primebase.org-20091110141839-2j3k43b17ag6f605
Merged Drizzle trunk and PBXT 1.0.09

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
LDADD= libdrizzledmessage.la \
17
17
        ${LIBPROTOBUF} \
18
18
        ${LIBUUID} \
19
 
        ${LIBINTL} \
 
19
        ${LTLIBINTL} \
20
20
        ${top_builddir}/gnulib/libgnu.la
21
21
 
22
22
AM_CXXFLAGS += ${PROTOSKIP_WARNINGS}
25
25
 
26
26
noinst_PROGRAMS = \
27
27
                table_reader \
 
28
                table_raw_reader \
28
29
                table_writer \
29
30
                transaction_reader \
 
31
                command_reader \
30
32
                transaction_writer \
31
33
                master_list_reader \
32
34
                master_list_writer \
38
40
 
39
41
noinst_LTLIBRARIES = libdrizzledmessage.la
40
42
 
 
43
libdrizzledmessage_la_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
 
44
 
 
45
libdrizzledmessage_la_SOURCES = command_transform.cc statement_transform.cc
 
46
 
 
47
messageincludedir= ${includedir}/drizzled/message
 
48
messageinclude_HEADERS= command_transform.h statement_transform.h
 
49
 
41
50
nodist_libdrizzledmessage_la_SOURCES = \
42
51
                binary_log.pb.cc \
43
52
                master_list.pb.cc \
44
 
                transaction.pb.cc \
 
53
                replication.pb.cc \
45
54
                schema.pb.cc \
46
55
                table.pb.cc
47
56
 
48
57
nodist_noinst_HEADERS= \
49
58
                binary_log.pb.h \
50
59
                master_list.pb.h \
51
 
                transaction.pb.h \
 
60
                replication.pb.h \
52
61
                schema.pb.h \
53
 
                table.pb.h
 
62
                table.pb.h 
54
63
 
55
64
noinst_HEADERS= \
56
65
                binary_log.h \
67
76
 
68
77
table_reader_SOURCES =  table_reader.cc
69
78
 
 
79
table_raw_reader_SOURCES =  table_raw_reader.cc
 
80
 
70
81
table_writer_SOURCES =  table_writer.cc
71
82
 
72
83
master_list_writer_SOURCES =  master_list_writer.cc
73
84
 
74
85
master_list_reader_SOURCES =  master_list_reader.cc
75
86
 
76
 
transaction_writer_SOURCES =  transaction_writer.cc
77
 
 
78
 
transaction_reader_SOURCES =  transaction_reader.cc
 
87
transaction_writer_SOURCES =  transaction_writer.cc transaction.pb.cc
 
88
 
 
89
transaction_reader_SOURCES =  transaction_reader.cc transaction.pb.cc
 
90
 
 
91
# @TODO: Remove this when Jay's branch hits replacing replication.pb fully
 
92
transaction_writer_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
 
93
transaction_reader_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
 
94
 
 
95
command_reader_SOURCES =  command_reader.cc
79
96
 
80
97
length_SOURCES = length.cc
81
98
 
84
101
                table.proto \
85
102
                binary_log.proto \
86
103
                master_list.proto \
 
104
                replication.proto \
87
105
                transaction.proto \
88
106
                check_length.sh
89
107
 
91
109
                schema.pb.h \
92
110
                table.pb.h \
93
111
                binary_log.pb.h \
 
112
                replication.pb.h \
94
113
                transaction.pb.h \
95
114
                master_list.pb.h
96
115
 
101
120
                schema.pb.cc \
102
121
                table.pb.h \
103
122
                table.pb.cc \
 
123
                replication.pb.h \
 
124
                replication.pb.cc \
104
125
                transaction.pb.h \
105
126
                transaction.pb.cc \
106
127
                master_list.pb.h \