~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/Makefile.am

  • Committer: Jay Pipes
  • Date: 2009-04-10 17:06:20 UTC
  • mto: (971.1.47 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: jpipes@serialcoder-20090410170620-u3t3pptfrb58k4l0
Removed binlog and correct sql_builtin generation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
TESTS_ENVIRONMENT = BINDIR=${top_builddir}/drizzled/message sh
24
24
TESTS = check_length.sh
25
25
 
26
 
noinst_PROGRAMS = \
27
 
               table_reader \
28
 
               table_writer \
29
 
               replication_event_reader \
30
 
               replication_event_writer \
31
 
               master_list_reader \
32
 
               master_list_writer \
33
 
               binlog_reader \
34
 
               binlog_writer \
35
 
               schema_reader
 
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
36
35
 
37
36
check_PROGRAMS = length
38
37
 
41
40
nodist_libdrizzledmessage_la_SOURCES = \
42
41
                binary_log.pb.cc \
43
42
                master_list.pb.cc \
44
 
                replication_event.pb.cc \
 
43
                transaction.pb.cc \
45
44
                schema.pb.cc \
46
45
                table.pb.cc
47
46
 
48
47
nodist_noinst_HEADERS= \
49
48
                binary_log.pb.h \
50
49
                master_list.pb.h \
51
 
                replication_event.pb.h \
 
50
                transaction.pb.h \
52
51
                schema.pb.h \
53
52
                table.pb.h
54
53
 
73
72
 
74
73
master_list_reader_SOURCES =  master_list_reader.cc
75
74
 
76
 
replication_event_writer_SOURCES =  replication_event_writer.cc
 
75
transaction_writer_SOURCES =  transaction_writer.cc
77
76
 
78
 
replication_event_reader_SOURCES =  replication_event_reader.cc
 
77
transaction_reader_SOURCES =  transaction_reader.cc
79
78
 
80
79
length_SOURCES = length.cc
81
80
 
82
 
EXTRA_DIST = schema.proto table.proto binary_log.proto master_list.proto replication_event.proto check_length.sh
 
81
EXTRA_DIST = schema.proto \
 
82
                                                 table.proto \
 
83
                                                 binary_log.proto \
 
84
                                                 master_list.proto \
 
85
                                                 transaction.proto \
 
86
                                                 check_length.sh
 
87
 
83
88
BUILT_SOURCES = schema.pb.h \
84
 
                table.pb.h \
85
 
                binary_log.pb.h \
86
 
                replication_event.pb.h \
87
 
                master_list.pb.h
 
89
                                                                table.pb.h \
 
90
                                                                binary_log.pb.h \
 
91
                                                                transaction.pb.h \
 
92
                                                                master_list.pb.h
88
93
 
89
94
CLEANFILES =  binary_log.pb.h \
90
95
              binary_log.pb.cc \
92
97
              schema.pb.cc \
93
98
              table.pb.h \
94
99
              table.pb.cc \
95
 
              replication_event.pb.h \
96
 
              replication_event.pb.cc \
 
100
                                transaction.pb.h \
 
101
              transaction.pb.cc \
97
102
              master_list.pb.h \
98
103
              master_list.pb.cc
99
104