~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/Makefile.am

  • Committer: Stewart Smith
  • Date: 2009-10-12 05:13:54 UTC
  • mfrom: (1178 staging)
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: stewart@flamingspork.com-20091012051354-2n7zpid9f67ddsa0
mergeĀ lp:drizzle/build

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
libdrizzledmessage_la_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
44
44
 
45
 
libdrizzledmessage_la_SOURCES = command_transform.cc
 
45
libdrizzledmessage_la_SOURCES = command_transform.cc statement_transform.cc
46
46
 
47
47
messageincludedir= ${includedir}/drizzled/message
48
 
messageinclude_HEADERS= command_transform.h
 
48
messageinclude_HEADERS= command_transform.h statement_transform.h
49
49
 
50
50
nodist_libdrizzledmessage_la_SOURCES = \
51
51
                binary_log.pb.cc \
59
59
                master_list.pb.h \
60
60
                replication.pb.h \
61
61
                schema.pb.h \
62
 
                table.pb.h \
63
 
                command_transform.h
 
62
                table.pb.h 
64
63
 
65
64
noinst_HEADERS= \
66
65
                binary_log.h \
85
84
 
86
85
master_list_reader_SOURCES =  master_list_reader.cc
87
86
 
88
 
transaction_writer_SOURCES =  transaction_writer.cc
89
 
 
90
 
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}
91
94
 
92
95
command_reader_SOURCES =  command_reader.cc
93
96
 
99
102
                binary_log.proto \
100
103
                master_list.proto \
101
104
                replication.proto \
 
105
                transaction.proto \
102
106
                check_length.sh
103
107
 
104
108
BUILT_SOURCES = \
106
110
                table.pb.h \
107
111
                binary_log.pb.h \
108
112
                replication.pb.h \
 
113
                transaction.pb.h \
109
114
                master_list.pb.h
110
115
 
111
116
CLEANFILES = \
117
122
                table.pb.cc \
118
123
                replication.pb.h \
119
124
                replication.pb.cc \
 
125
                transaction.pb.h \
 
126
                transaction.pb.cc \
120
127
                master_list.pb.h \
121
128
                master_list.pb.cc
122
129