~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/Makefile.am

pandora-build v0.71. Added check for avahi.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# along with this program; if not, write to the Free Software
14
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
15
 
16
 
#called from the top level Makefile
17
 
 
18
 
LDADD = $(top_builddir)/drizzled/serialize/libserialize.la -lprotobuf
19
 
 
20
 
bin_PROGRAMS = \
21
 
               table_reader \
22
 
               table_writer \
23
 
               schema_reader
24
 
 
25
 
libserialize_la_CXXFLAGS =
26
 
 
27
 
noinst_LTLIBRARIES = libserialize.la
28
 
 
29
 
libserialize_la_SOURCES = \
30
 
                          table.pb.cc \
31
 
                          schema.pb.cc 
32
 
 
33
 
noinst_HEADERS = \
34
 
                 table.pb.h \
35
 
                 schema.pb.h \
36
 
                 serialize.h
37
 
 
38
 
schema.pb.cc: schema.proto
39
 
        protoc --cpp_out=${top_builddir}/drizzled/serialize schema.proto
40
 
 
41
 
table.pb.cc: table.proto
42
 
        protoc --cpp_out=${top_builddir}/drizzled/serialize table.proto
43
 
        
44
 
DEFS= @DEFS@
 
16
LDADD= libdrizzledmessage.la \
 
17
        ${LIBPROTOBUF} \
 
18
        ${LIBUUID} \
 
19
        ${LTLIBINTL} \
 
20
        ${top_builddir}/gnulib/libgnu.la
 
21
 
 
22
AM_CXXFLAGS += ${PROTOSKIP_WARNINGS}
 
23
TESTS_ENVIRONMENT = BINDIR=${top_builddir}/drizzled/message sh
 
24
TESTS = check_length.sh
 
25
 
 
26
noinst_PROGRAMS = \
 
27
                table_reader \
 
28
                table_raw_reader \
 
29
                table_writer \
 
30
                transaction_reader \
 
31
                transaction_writer \
 
32
                master_list_reader \
 
33
                master_list_writer \
 
34
                binlog_reader \
 
35
                binlog_writer \
 
36
                schema_reader
 
37
 
 
38
check_PROGRAMS = length
 
39
 
 
40
noinst_LTLIBRARIES = libdrizzledmessage.la
 
41
 
 
42
libdrizzledmessage_la_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
 
43
 
 
44
libdrizzledmessage_la_SOURCES = statement_transform.cc
 
45
 
 
46
messageincludedir= ${includedir}/drizzled/message
 
47
messageinclude_HEADERS= statement_transform.h
 
48
 
 
49
nodist_libdrizzledmessage_la_SOURCES = \
 
50
                binary_log.pb.cc \
 
51
                master_list.pb.cc \
 
52
                transaction.pb.cc \
 
53
                schema.pb.cc \
 
54
                table.pb.cc
 
55
 
 
56
nodist_noinst_HEADERS= \
 
57
                binary_log.pb.h \
 
58
                master_list.pb.h \
 
59
                transaction.pb.h \
 
60
                schema.pb.h \
 
61
                table.pb.h 
 
62
 
 
63
noinst_HEADERS= \
 
64
                binary_log.h \
 
65
                binlog_encoding.h \
 
66
                ioutil.h \
 
67
                all.h
 
68
 
 
69
 
 
70
binlog_reader_SOURCES = binlog_reader.cc binary_log.cc
 
71
 
 
72
binlog_writer_SOURCES = binlog_writer.cc binary_log.cc
45
73
 
46
74
schema_reader_SOURCES =  schema_reader.cc
47
75
 
48
76
table_reader_SOURCES =  table_reader.cc
49
 
table_reader_CXXFLAGS =
 
77
 
 
78
table_raw_reader_SOURCES =  table_raw_reader.cc
50
79
 
51
80
table_writer_SOURCES =  table_writer.cc
52
 
table_writer_CXXFLAGS =
53
 
 
54
 
EXTRA_DIST = schema.proto table.proto
55
 
BUILT_SOURCES = schema.pb.cc table.pb.cc
 
81
 
 
82
master_list_writer_SOURCES =  master_list_writer.cc
 
83
 
 
84
master_list_reader_SOURCES =  master_list_reader.cc
 
85
 
 
86
transaction_writer_SOURCES =  transaction_writer.cc transaction.pb.cc
 
87
transaction_writer_LDADD = ${LDADD} ${top_builddir}/drizzled/hash/libhash.la
 
88
 
 
89
transaction_reader_SOURCES =  transaction_reader.cc transaction.pb.cc
 
90
transaction_reader_LDADD = ${LDADD} ${top_builddir}/drizzled/hash/libhash.la
 
91
 
 
92
transaction_writer_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
 
93
transaction_reader_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
 
94
 
 
95
length_SOURCES = length.cc
 
96
 
 
97
EXTRA_DIST = \
 
98
                schema.proto \
 
99
                table.proto \
 
100
                binary_log.proto \
 
101
                master_list.proto \
 
102
                transaction.proto \
 
103
                check_length.sh
 
104
 
 
105
BUILT_SOURCES = \
 
106
                schema.pb.h \
 
107
                table.pb.h \
 
108
                binary_log.pb.h \
 
109
                transaction.pb.h \
 
110
                master_list.pb.h
 
111
 
 
112
CLEANFILES = \
 
113
                binary_log.pb.h \
 
114
                binary_log.pb.cc \
 
115
                schema.pb.h \
 
116
                schema.pb.cc \
 
117
                table.pb.h \
 
118
                table.pb.cc \
 
119
                transaction.pb.h \
 
120
                transaction.pb.cc \
 
121
                master_list.pb.h \
 
122
                master_list.pb.cc
 
123
 
 
124
SUFFIXES = .proto .pb.cc .pb.h
 
125
.proto.pb.cc:
 
126
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/message \
 
127
                --cpp_out=${top_builddir}/drizzled/message $<
 
128
.proto.pb.h:
 
129
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/message \
 
130
                --cpp_out=${top_builddir}/drizzled/message $<