~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/Makefile.am

  • Committer: Jay Pipes
  • Date: 2009-02-04 15:44:25 UTC
  • mfrom: (829 drizzle)
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090204154425-th8xfk2ujz2y8xwg
Merge with trunk

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
 
LDADD= libdrizzledmessage.la \
17
 
        ${LIBPROTOBUF} \
18
 
        ${LIBUUID} \
19
 
        ${LIBINTL} \
 
16
LDADD= libserialize.la \
 
17
        ${LTLIBPROTOBUF} \
 
18
        ${LTLIBUUID} \
 
19
        ${LTLIBINTL} \
20
20
        ${top_builddir}/gnulib/libgnu.la
21
21
 
22
22
AM_CXXFLAGS += ${PROTOSKIP_WARNINGS}
23
 
TESTS_ENVIRONMENT = BINDIR=${top_builddir}/drizzled/message sh
 
23
 
 
24
TESTS_ENVIRONMENT = BINDIR=${top_builddir}/drizzled/serialize sh
24
25
TESTS = check_length.sh
25
26
 
26
 
noinst_PROGRAMS = table_reader \
27
 
                                                                        table_writer \
28
 
                                                                        transaction_reader \
29
 
                                                                        transaction_writer \
30
 
                                                                        master_list_reader \
31
 
                                                                        master_list_writer \
32
 
                                                                        binlog_reader \
33
 
                                                                        binlog_writer \
34
 
                                                                        schema_reader
 
27
noinst_PROGRAMS = \
 
28
               table_reader \
 
29
               table_writer \
 
30
               replication_event_reader \
 
31
               replication_event_writer \
 
32
               master_list_reader \
 
33
               master_list_writer \
 
34
               binlog_reader \
 
35
               binlog_writer \
 
36
               schema_reader
35
37
 
36
38
check_PROGRAMS = length
37
39
 
38
 
noinst_LTLIBRARIES = libdrizzledmessage.la
 
40
noinst_LTLIBRARIES = libserialize.la
39
41
 
40
 
nodist_libdrizzledmessage_la_SOURCES = \
 
42
libserialize_la_SOURCES = \
41
43
                binary_log.pb.cc \
42
44
                master_list.pb.cc \
43
 
                transaction.pb.cc \
 
45
                replication_event.pb.cc \
44
46
                schema.pb.cc \
45
47
                table.pb.cc
46
48
 
47
 
nodist_noinst_HEADERS= \
48
 
                binary_log.pb.h \
49
 
                master_list.pb.h \
50
 
                transaction.pb.h \
51
 
                schema.pb.h \
52
 
                table.pb.h
53
 
 
54
49
noinst_HEADERS= \
55
50
                binary_log.h \
 
51
                binary_log.pb.h \
56
52
                binlog_encoding.h \
57
53
                ioutil.h \
58
 
                all.h
 
54
                master_list.pb.h \
 
55
                replication_event.pb.h \
 
56
                schema.pb.h \
 
57
                serialize.h \
 
58
                table.pb.h
59
59
 
60
60
 
61
61
binlog_reader_SOURCES = binlog_reader.cc binary_log.cc
72
72
 
73
73
master_list_reader_SOURCES =  master_list_reader.cc
74
74
 
75
 
transaction_writer_SOURCES =  transaction_writer.cc
 
75
replication_event_writer_SOURCES =  replication_event_writer.cc
76
76
 
77
 
transaction_reader_SOURCES =  transaction_reader.cc
 
77
replication_event_reader_SOURCES =  replication_event_reader.cc
78
78
 
79
79
length_SOURCES = length.cc
80
80
 
81
 
EXTRA_DIST = schema.proto \
82
 
                                                 table.proto \
83
 
                                                 binary_log.proto \
84
 
                                                 master_list.proto \
85
 
                                                 transaction.proto \
86
 
                                                 check_length.sh
87
 
 
 
81
EXTRA_DIST = schema.proto table.proto binary_log.proto master_list.proto replication_event.proto check_length.sh
88
82
BUILT_SOURCES = schema.pb.h \
89
 
                                                                table.pb.h \
90
 
                                                                binary_log.pb.h \
91
 
                                                                transaction.pb.h \
92
 
                                                                master_list.pb.h
 
83
                table.pb.h \
 
84
                binary_log.pb.h \
 
85
                replication_event.pb.h \
 
86
                master_list.pb.h
93
87
 
94
88
CLEANFILES =  binary_log.pb.h \
95
89
              binary_log.pb.cc \
97
91
              schema.pb.cc \
98
92
              table.pb.h \
99
93
              table.pb.cc \
100
 
                                transaction.pb.h \
101
 
              transaction.pb.cc \
 
94
              replication_event.pb.h \
 
95
              replication_event.pb.cc \
102
96
              master_list.pb.h \
103
97
              master_list.pb.cc
104
98
 
105
99
SUFFIXES = .proto .pb.cc .pb.h
106
100
.proto.pb.cc:
107
 
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/message \
108
 
                --cpp_out=${top_builddir}/drizzled/message $<
 
101
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/serialize \
 
102
                --cpp_out=${top_builddir}/drizzled/serialize $<
109
103
.proto.pb.h:
110
 
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/message \
111
 
                --cpp_out=${top_builddir}/drizzled/message $<
 
104
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/serialize \
 
105
                --cpp_out=${top_builddir}/drizzled/serialize $<