~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/include.am

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  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) \
25
 
                drizzled/internal/libinternal.la
 
24
               $(GCOV_LIBS)
26
25
 
27
 
MESSAGE_AM_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS}
 
26
MESSAGE_AM_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS} ${NO_VISIBILITY}
28
27
 
29
28
noinst_PROGRAMS+= \
 
29
                  drizzled/message/catalog_reader \
 
30
                  drizzled/message/catalog_writer \
30
31
                  drizzled/message/schema_reader \
31
32
                  drizzled/message/schema_writer \
32
33
                  drizzled/message/table_raw_reader \
33
34
                  drizzled/message/table_reader \
34
35
                  drizzled/message/table_writer \
35
 
                  drizzled/message/transaction_reader \
36
36
                  drizzled/message/transaction_writer
37
37
 
38
38
lib_LTLIBRARIES += drizzled/message/libdrizzledmessage.la
42
42
drizzled_message_libdrizzledmessage_la_SOURCES = drizzled/message/statement_transform.cc
43
43
drizzled_message_libdrizzledmessage_la_LIBADD= ${LTLIBPROTOBUF} $(GCOV_LIBS) drizzled/libcharset.la
44
44
 
45
 
nobase_dist_include_HEADERS+= drizzled/message/statement_transform.h
46
 
 
47
 
nodist_drizzled_message_libdrizzledmessage_la_SOURCES = \
48
 
                                                        drizzled/message/engine.pb.cc \
49
 
                                                        drizzled/message/transaction.pb.cc \
50
 
                                                        drizzled/message/schema.pb.cc \
51
 
                                                        drizzled/message/resultset.pb.cc \
52
 
                                                        drizzled/message/table.pb.cc
53
 
 
54
 
nobase_nodist_include_HEADERS+= \
 
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 \
55
59
                                drizzled/message/engine.pb.h \
56
 
                                drizzled/message/transaction.pb.h \
 
60
                                drizzled/message/event.pb.h \
 
61
                                drizzled/message/resultset.pb.h \
57
62
                                drizzled/message/schema.pb.h \
58
 
                                drizzled/message/resultset.pb.h \
59
 
                                drizzled/message/table.pb.h 
 
63
                                drizzled/message/table.pb.h \
 
64
                                drizzled/message/transaction.pb.h
60
65
 
61
66
noinst_HEADERS+= \
62
 
                drizzled/message/ioutil.h \
63
 
                drizzled/message/all.h
64
 
 
 
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}
65
76
 
66
77
drizzled_message_schema_reader_SOURCES =  drizzled/message/schema_reader.cc
67
78
drizzled_message_schema_reader_LDADD = ${MESSAGE_LDADD}
87
98
drizzled_message_transaction_writer_LDADD = ${MESSAGE_LDADD} ${top_builddir}/drizzled/algorithm/libhash.la
88
99
drizzled_message_transaction_writer_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS} ${NO_WERROR}
89
100
 
90
 
drizzled_message_transaction_reader_SOURCES =  drizzled/message/transaction_reader.cc
91
 
drizzled_message_transaction_reader_LDADD = ${MESSAGE_LDADD} ${top_builddir}/drizzled/algorithm/libhash.la ${top_builddir}/drizzled/util/libutil.la
92
 
drizzled_message_transaction_reader_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS} ${NO_WERROR}
93
 
 
94
101
EXTRA_DIST += \
95
 
                ${MESSAGE_DIR}/engine.proto \
96
 
                ${MESSAGE_DIR}/schema.proto \
97
 
                ${MESSAGE_DIR}/table.proto \
98
 
                ${MESSAGE_DIR}/resultset.proto \
99
 
                ${MESSAGE_DIR}/transaction.proto
 
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
100
109
 
101
110
BUILT_SOURCES += \
102
 
                ${MESSAGE_DIR}/engine.pb.h \
103
 
                ${MESSAGE_DIR}/schema.pb.h \
104
 
                ${MESSAGE_DIR}/table.pb.h \
105
 
                ${MESSAGE_DIR}/resultset.pb.h \
106
 
                ${MESSAGE_DIR}/transaction.pb.h
 
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
107
118
 
108
119
CLEANFILES += \
109
 
            ${MESSAGE_DIR}/engine.pb.h \
110
 
            ${MESSAGE_DIR}/engine.pb.cc \
111
 
            ${MESSAGE_DIR}/schema.pb.h \
112
 
            ${MESSAGE_DIR}/schema.pb.cc \
113
 
            ${MESSAGE_DIR}/table.pb.h \
114
 
            ${MESSAGE_DIR}/table.pb.cc \
115
 
            ${MESSAGE_DIR}/resultset.pb.h \
116
 
            ${MESSAGE_DIR}/resultset.pb.cc \
117
 
            ${MESSAGE_DIR}/transaction.pb.h \
118
 
            ${MESSAGE_DIR}/transaction.pb.cc
 
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
119
134
 
120
135
SUFFIXES += .proto .pb.cc .pb.h
121
136