~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/include.am

  • Committer: Brian Aker
  • Date: 2010-12-17 00:08:06 UTC
  • mfrom: (2002.1.4 clean)
  • Revision ID: brian@tangent.org-20101217000806-fa6kmggjnhsl4q85
Rollup for field encapsulation, monty fix for bzrignore, and Andrew bug
fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
               ${LIBPROTOBUF} \
22
22
               ${LIBUUID} \
23
23
               ${LTLIBINTL} \
24
 
               $(GCOV_LIBS)
 
24
               $(GCOV_LIBS) \
 
25
                drizzled/internal/libinternal.la
25
26
 
26
 
MESSAGE_AM_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS} ${NO_VISIBILITY}
 
27
MESSAGE_AM_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS}
27
28
 
28
29
noinst_PROGRAMS+= \
29
 
                  drizzled/message/catalog_reader \
30
 
                  drizzled/message/catalog_writer \
31
30
                  drizzled/message/schema_reader \
32
31
                  drizzled/message/schema_writer \
33
32
                  drizzled/message/table_raw_reader \
42
41
drizzled_message_libdrizzledmessage_la_SOURCES = drizzled/message/statement_transform.cc
43
42
drizzled_message_libdrizzledmessage_la_LIBADD= ${LTLIBPROTOBUF} $(GCOV_LIBS) drizzled/libcharset.la
44
43
 
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/replication_options.pb.cc \
53
 
                                                       drizzled/message/resultset.pb.cc \
54
 
                                                       drizzled/message/schema.pb.cc \
55
 
                                                       drizzled/message/table.pb.cc \
56
 
                                                       drizzled/message/transaction.pb.cc
57
 
 
58
 
nobase_nodist_pkginclude_HEADERS+= \
59
 
                                drizzled/message/catalog.pb.h \
 
44
nobase_dist_include_HEADERS+= drizzled/message/statement_transform.h \
 
45
                                                drizzled/message/schema.h \
 
46
                                                drizzled/message/table.h
 
47
 
 
48
nodist_drizzled_message_libdrizzledmessage_la_SOURCES = \
 
49
                                                        drizzled/message/event.pb.cc \
 
50
                                                        drizzled/message/engine.pb.cc \
 
51
                                                        drizzled/message/transaction.pb.cc \
 
52
                                                        drizzled/message/schema.pb.cc \
 
53
                                                        drizzled/message/resultset.pb.cc \
 
54
                                                        drizzled/message/table.pb.cc
 
55
 
 
56
nobase_nodist_include_HEADERS+= \
 
57
                                drizzled/message/event.pb.h \
60
58
                                drizzled/message/engine.pb.h \
61
 
                                drizzled/message/event.pb.h \
62
 
                                drizzled/message/replication_options.pb.h \
 
59
                                drizzled/message/transaction.pb.h \
 
60
                                drizzled/message/schema.pb.h \
63
61
                                drizzled/message/resultset.pb.h \
64
 
                                drizzled/message/schema.pb.h \
65
 
                                drizzled/message/table.pb.h \
66
 
                                drizzled/message/transaction.pb.h
 
62
                                drizzled/message/table.pb.h 
67
63
 
68
64
noinst_HEADERS+= \
69
 
                 drizzled/message/ioutil.h
70
 
 
71
 
drizzled_message_catalog_reader_SOURCES =  drizzled/message/catalog_reader.cc
72
 
drizzled_message_catalog_reader_LDADD = ${MESSAGE_LDADD}
73
 
drizzled_message_catalog_reader_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS}
74
 
 
75
 
drizzled_message_catalog_writer_SOURCES =  drizzled/message/catalog_writer.cc
76
 
drizzled_message_catalog_writer_LDADD = ${MESSAGE_LDADD}
77
 
drizzled_message_catalog_writer_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS}
 
65
                drizzled/message/ioutil.h 
78
66
 
79
67
drizzled_message_schema_reader_SOURCES =  drizzled/message/schema_reader.cc
80
68
drizzled_message_schema_reader_LDADD = ${MESSAGE_LDADD}
101
89
drizzled_message_transaction_writer_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS} ${NO_WERROR}
102
90
 
103
91
EXTRA_DIST += \
104
 
              ${MESSAGE_DIR}/catalog.proto \
105
 
              ${MESSAGE_DIR}/engine.proto \
106
 
              ${MESSAGE_DIR}/event.proto \
107
 
              ${MESSAGE_DIR}/replication_options.proto \
108
 
              ${MESSAGE_DIR}/resultset.proto \
109
 
              ${MESSAGE_DIR}/schema.proto \
110
 
              ${MESSAGE_DIR}/table.proto \
111
 
              ${MESSAGE_DIR}/transaction.proto
 
92
                ${MESSAGE_DIR}/event.proto \
 
93
                ${MESSAGE_DIR}/engine.proto \
 
94
                ${MESSAGE_DIR}/schema.proto \
 
95
                ${MESSAGE_DIR}/table.proto \
 
96
                ${MESSAGE_DIR}/resultset.proto \
 
97
                ${MESSAGE_DIR}/transaction.proto
112
98
 
113
99
BUILT_SOURCES += \
114
 
                 ${MESSAGE_DIR}/catalog.pb.h \
115
 
                 ${MESSAGE_DIR}/engine.pb.h \
116
 
                 ${MESSAGE_DIR}/event.pb.h \
117
 
                 ${MESSAGE_DIR}/replication_options.pb.h \
118
 
                 ${MESSAGE_DIR}/resultset.pb.h \
119
 
                 ${MESSAGE_DIR}/schema.pb.h \
120
 
                 ${MESSAGE_DIR}/table.pb.h \
121
 
                 ${MESSAGE_DIR}/transaction.pb.h
 
100
                ${MESSAGE_DIR}/event.pb.h \
 
101
                ${MESSAGE_DIR}/engine.pb.h \
 
102
                ${MESSAGE_DIR}/schema.pb.h \
 
103
                ${MESSAGE_DIR}/table.pb.h \
 
104
                ${MESSAGE_DIR}/resultset.pb.h \
 
105
                ${MESSAGE_DIR}/transaction.pb.h
122
106
 
123
107
CLEANFILES += \
124
 
              ${MESSAGE_DIR}/catalog.pb.cc \
125
 
              ${MESSAGE_DIR}/catalog.pb.h \
126
 
              ${MESSAGE_DIR}/engine.pb.cc \
127
 
              ${MESSAGE_DIR}/engine.pb.h \
128
 
              ${MESSAGE_DIR}/event.pb.cc \
129
 
              ${MESSAGE_DIR}/event.pb.h \
130
 
              ${MESSAGE_DIR}/replication_options.pb.cc \
131
 
              ${MESSAGE_DIR}/replication_options.pb.h \
132
 
              ${MESSAGE_DIR}/resultset.pb.cc \
133
 
              ${MESSAGE_DIR}/resultset.pb.h \
134
 
              ${MESSAGE_DIR}/schema.pb.cc \
135
 
              ${MESSAGE_DIR}/schema.pb.h \
136
 
              ${MESSAGE_DIR}/table.pb.cc \
137
 
              ${MESSAGE_DIR}/table.pb.h \
138
 
              ${MESSAGE_DIR}/transaction.pb.cc \
139
 
              ${MESSAGE_DIR}/transaction.pb.h
 
108
            ${MESSAGE_DIR}/event.pb.h \
 
109
            ${MESSAGE_DIR}/event.pb.cc \
 
110
            ${MESSAGE_DIR}/engine.pb.h \
 
111
            ${MESSAGE_DIR}/engine.pb.cc \
 
112
            ${MESSAGE_DIR}/schema.pb.h \
 
113
            ${MESSAGE_DIR}/schema.pb.cc \
 
114
            ${MESSAGE_DIR}/table.pb.h \
 
115
            ${MESSAGE_DIR}/table.pb.cc \
 
116
            ${MESSAGE_DIR}/resultset.pb.h \
 
117
            ${MESSAGE_DIR}/resultset.pb.cc \
 
118
            ${MESSAGE_DIR}/transaction.pb.h \
 
119
            ${MESSAGE_DIR}/transaction.pb.cc
140
120
 
141
121
SUFFIXES += .proto .pb.cc .pb.h
142
122