~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/include.am

  • Committer: Brian Aker
  • Date: 2010-08-17 01:34:55 UTC
  • mto: (1711.1.23 build)
  • mto: This revision was merged to the branch mainline in revision 1714.
  • Revision ID: brian@tangent.org-20100817013455-zx3nm7qilxvpwrgb
Style on structure cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
MESSAGE_DIR=drizzled/message
19
19
MESSAGE_LDADD= \
21
21
               ${LIBPROTOBUF} \
22
22
               ${LIBUUID} \
23
23
               ${LTLIBINTL} \
24
 
               $(GCOV_LIBS)
 
24
               $(GCOV_LIBS) \
 
25
               ${top_builddir}/gnulib/libgnu.la \
 
26
                drizzled/internal/libinternal.la
25
27
 
26
 
MESSAGE_AM_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS} ${NO_VISIBILITY}
 
28
MESSAGE_AM_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS}
27
29
 
28
30
noinst_PROGRAMS+= \
29
 
                  drizzled/message/catalog_reader \
30
 
                  drizzled/message/catalog_writer \
31
31
                  drizzled/message/schema_reader \
32
32
                  drizzled/message/schema_writer \
33
33
                  drizzled/message/table_raw_reader \
34
34
                  drizzled/message/table_reader \
35
35
                  drizzled/message/table_writer \
 
36
                  drizzled/message/transaction_reader \
36
37
                  drizzled/message/transaction_writer
37
38
 
38
39
lib_LTLIBRARIES += drizzled/message/libdrizzledmessage.la
42
43
drizzled_message_libdrizzledmessage_la_SOURCES = drizzled/message/statement_transform.cc
43
44
drizzled_message_libdrizzledmessage_la_LIBADD= ${LTLIBPROTOBUF} $(GCOV_LIBS) drizzled/libcharset.la
44
45
 
45
 
nobase_dist_pkginclude_HEADERS+= \
46
 
                              drizzled/message/statement_transform.h
47
 
 
48
 
nodist_drizzled_message_libdrizzledmessage_la_SOURCES= \
49
 
                                                       drizzled/message/catalog.pb.cc \
50
 
                                                       drizzled/message/engine.pb.cc \
51
 
                                                       drizzled/message/event.pb.cc \
52
 
                                                       drizzled/message/resultset.pb.cc \
53
 
                                                       drizzled/message/schema.pb.cc \
54
 
                                                       drizzled/message/table.pb.cc \
55
 
                                                       drizzled/message/transaction.pb.cc
56
 
 
57
 
nobase_nodist_pkginclude_HEADERS+= \
58
 
                                drizzled/message/catalog.pb.h \
 
46
nobase_dist_include_HEADERS+= drizzled/message/statement_transform.h
 
47
 
 
48
nodist_drizzled_message_libdrizzledmessage_la_SOURCES = \
 
49
                                                        drizzled/message/engine.pb.cc \
 
50
                                                        drizzled/message/transaction.pb.cc \
 
51
                                                        drizzled/message/schema.pb.cc \
 
52
                                                        drizzled/message/table.pb.cc
 
53
 
 
54
nobase_nodist_include_HEADERS+= \
59
55
                                drizzled/message/engine.pb.h \
60
 
                                drizzled/message/event.pb.h \
61
 
                                drizzled/message/resultset.pb.h \
 
56
                                drizzled/message/transaction.pb.h \
62
57
                                drizzled/message/schema.pb.h \
63
 
                                drizzled/message/table.pb.h \
64
 
                                drizzled/message/transaction.pb.h
 
58
                                drizzled/message/table.pb.h 
65
59
 
66
60
noinst_HEADERS+= \
67
 
                 drizzled/message/ioutil.h
68
 
 
69
 
drizzled_message_catalog_reader_SOURCES =  drizzled/message/catalog_reader.cc
70
 
drizzled_message_catalog_reader_LDADD = ${MESSAGE_LDADD}
71
 
drizzled_message_catalog_reader_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS}
72
 
 
73
 
drizzled_message_catalog_writer_SOURCES =  drizzled/message/catalog_writer.cc
74
 
drizzled_message_catalog_writer_LDADD = ${MESSAGE_LDADD}
75
 
drizzled_message_catalog_writer_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS}
 
61
                drizzled/message/ioutil.h \
 
62
                drizzled/message/all.h
 
63
 
76
64
 
77
65
drizzled_message_schema_reader_SOURCES =  drizzled/message/schema_reader.cc
78
66
drizzled_message_schema_reader_LDADD = ${MESSAGE_LDADD}
91
79
drizzled_message_table_raw_reader_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS}
92
80
 
93
81
drizzled_message_table_writer_SOURCES =  drizzled/message/table_writer.cc
94
 
drizzled_message_table_writer_LDADD = ${MESSAGE_LDADD} ${BOOST_LIBS}
 
82
drizzled_message_table_writer_LDADD = ${MESSAGE_LDADD}
95
83
drizzled_message_table_writer_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS}
96
84
 
97
85
drizzled_message_transaction_writer_SOURCES =  drizzled/message/transaction_writer.cc
98
86
drizzled_message_transaction_writer_LDADD = ${MESSAGE_LDADD} ${top_builddir}/drizzled/algorithm/libhash.la
99
87
drizzled_message_transaction_writer_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS} ${NO_WERROR}
100
88
 
 
89
drizzled_message_transaction_reader_SOURCES =  drizzled/message/transaction_reader.cc
 
90
drizzled_message_transaction_reader_LDADD = ${MESSAGE_LDADD} ${top_builddir}/drizzled/algorithm/libhash.la ${top_builddir}/drizzled/util/libutil.la
 
91
drizzled_message_transaction_reader_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS} ${NO_WERROR}
 
92
 
101
93
EXTRA_DIST += \
102
 
              ${MESSAGE_DIR}/catalog.proto \
103
 
              ${MESSAGE_DIR}/engine.proto \
104
 
              ${MESSAGE_DIR}/event.proto \
105
 
              ${MESSAGE_DIR}/resultset.proto \
106
 
              ${MESSAGE_DIR}/schema.proto \
107
 
              ${MESSAGE_DIR}/table.proto \
108
 
              ${MESSAGE_DIR}/transaction.proto
 
94
                ${MESSAGE_DIR}/engine.proto \
 
95
                ${MESSAGE_DIR}/schema.proto \
 
96
                ${MESSAGE_DIR}/table.proto \
 
97
                ${MESSAGE_DIR}/transaction.proto
109
98
 
110
99
BUILT_SOURCES += \
111
 
                 ${MESSAGE_DIR}/catalog.pb.h \
112
 
                 ${MESSAGE_DIR}/engine.pb.h \
113
 
                 ${MESSAGE_DIR}/event.pb.h \
114
 
                 ${MESSAGE_DIR}/resultset.pb.h \
115
 
                 ${MESSAGE_DIR}/schema.pb.h \
116
 
                 ${MESSAGE_DIR}/table.pb.h \
117
 
                 ${MESSAGE_DIR}/transaction.pb.h
 
100
                ${MESSAGE_DIR}/engine.pb.h \
 
101
                ${MESSAGE_DIR}/schema.pb.h \
 
102
                ${MESSAGE_DIR}/table.pb.h \
 
103
                ${MESSAGE_DIR}/transaction.pb.h
118
104
 
119
105
CLEANFILES += \
120
 
              ${MESSAGE_DIR}/catalog.pb.cc \
121
 
              ${MESSAGE_DIR}/catalog.pb.h \
122
 
              ${MESSAGE_DIR}/engine.pb.cc \
123
 
              ${MESSAGE_DIR}/engine.pb.h \
124
 
              ${MESSAGE_DIR}/event.pb.cc \
125
 
              ${MESSAGE_DIR}/event.pb.h \
126
 
              ${MESSAGE_DIR}/resultset.pb.cc \
127
 
              ${MESSAGE_DIR}/resultset.pb.h \
128
 
              ${MESSAGE_DIR}/schema.pb.cc \
129
 
              ${MESSAGE_DIR}/schema.pb.h \
130
 
              ${MESSAGE_DIR}/table.pb.cc \
131
 
              ${MESSAGE_DIR}/table.pb.h \
132
 
              ${MESSAGE_DIR}/transaction.pb.cc \
133
 
              ${MESSAGE_DIR}/transaction.pb.h
 
106
            ${MESSAGE_DIR}/engine.pb.h \
 
107
            ${MESSAGE_DIR}/engine.pb.cc \
 
108
            ${MESSAGE_DIR}/schema.pb.h \
 
109
            ${MESSAGE_DIR}/schema.pb.cc \
 
110
            ${MESSAGE_DIR}/table.pb.h \
 
111
            ${MESSAGE_DIR}/table.pb.cc \
 
112
            ${MESSAGE_DIR}/transaction.pb.h \
 
113
            ${MESSAGE_DIR}/transaction.pb.cc
134
114
 
135
115
SUFFIXES += .proto .pb.cc .pb.h
136
116