~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-08-19 08:05:28 UTC
  • mfrom: (324.1.1 replication-simple)
  • Revision ID: monty@inaugust.com-20080819080528-scbbgnse7h09e2jx
MergedĀ fromĀ Mats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
libserialize_la_CXXFLAGS =
21
21
 
 
22
TESTS_ENVIRONMENT = sh
 
23
TESTS = check_length.sh
 
24
 
 
25
PROTOC = protoc
 
26
 
 
27
%.pb.h %.pb.cc : %.proto
 
28
        $(PROTOC) --cpp_out=${top_builddir}/drizzled/serialize $<
 
29
 
 
30
bin_PROGRAMS = \
 
31
               table_reader \
 
32
               table_writer \
 
33
               binlog_writer \
 
34
               binlog_reader \
 
35
               schema_reader
 
36
 
 
37
check_PROGRAMS = length
 
38
 
22
39
noinst_LTLIBRARIES = libserialize.la
23
40
 
24
41
libserialize_la_SOURCES = \
25
42
                          table.pb.cc \
26
 
                          schema.pb.cc 
 
43
                          binary_log.pb.cc \
 
44
                          schema.pb.cc
27
45
 
28
 
noinst_HEADERS = \
29
 
                 table.pb.h \
 
46
noinst_HEADERS = table.pb.h \
30
47
                 schema.pb.h \
 
48
                 binary_log.pb.h \
 
49
                 binlog_encoding.h \
31
50
                 serialize.h
32
51
 
33
 
schema.pb.h schema.pb.cc: schema.proto
34
 
        protoc --cpp_out=${top_builddir}/drizzled/serialize schema.proto
35
 
 
36
 
table.pb.h table.pb.cc: table.proto
37
 
        protoc --cpp_out=${top_builddir}/drizzled/serialize table.proto
38
 
        
39
52
DEFS= @DEFS@
40
53
 
41
 
bin_PROGRAMS = \
42
 
               table_reader \
43
 
               table_writer \
44
 
               schema_reader
 
54
binlog_reader_SOURCES = binlog_reader.cc binary_log.cc binlog_encoding.h
 
55
binlog_reader_CXXFLAGS = 
 
56
 
 
57
binlog_writer_SOURCES = binlog_writer.cc binary_log.cc binlog_encoding.h
 
58
binlog_writer_CXXFLAGS = 
45
59
 
46
60
schema_reader_SOURCES =  schema_reader.cc
47
61
 
51
65
table_writer_SOURCES =  table_writer.cc
52
66
table_writer_CXXFLAGS =
53
67
 
54
 
EXTRA_DIST = schema.proto table.proto
55
 
BUILT_SOURCES = schema.pb.h schema.pb.cc table.pb.h table.pb.cc
 
68
length_SOURCES = length.cc binlog_encoding.h
 
69
length_CXXFLAGS = -fexceptions
 
70
 
 
71
EXTRA_DIST = schema.proto table.proto binary_log.proto
 
72
BUILT_SOURCES = schema.pb.h \
 
73
                table.pb.h \
 
74
                schema.pb.cc \
 
75
                table.pb.cc \
 
76
                binary_log.pb.cc