~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/Makefile.am

Merged up with trunk properly.

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 = 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
 
26
noinst_PROGRAMS = \
 
27
                table_reader \
 
28
                table_writer \
 
29
                transaction_reader \
 
30
                transaction_writer \
 
31
                master_list_reader \
 
32
                master_list_writer \
 
33
                binlog_reader \
 
34
                binlog_writer \
 
35
                schema_reader
35
36
 
36
37
check_PROGRAMS = length
37
38
 
78
79
 
79
80
length_SOURCES = length.cc
80
81
 
81
 
EXTRA_DIST = schema.proto \
82
 
                                                 table.proto \
83
 
                                                 binary_log.proto \
84
 
                                                 master_list.proto \
85
 
                                                 transaction.proto \
86
 
                                                 check_length.sh
87
 
 
88
 
BUILT_SOURCES = schema.pb.h \
89
 
                                                                table.pb.h \
90
 
                                                                binary_log.pb.h \
91
 
                                                                transaction.pb.h \
92
 
                                                                master_list.pb.h
93
 
 
94
 
CLEANFILES =  binary_log.pb.h \
95
 
              binary_log.pb.cc \
96
 
              schema.pb.h \
97
 
              schema.pb.cc \
98
 
              table.pb.h \
99
 
              table.pb.cc \
100
 
                                transaction.pb.h \
101
 
              transaction.pb.cc \
102
 
              master_list.pb.h \
103
 
              master_list.pb.cc
 
82
EXTRA_DIST = \
 
83
                schema.proto \
 
84
                table.proto \
 
85
                binary_log.proto \
 
86
                master_list.proto \
 
87
                transaction.proto \
 
88
                check_length.sh
 
89
 
 
90
BUILT_SOURCES = \
 
91
                schema.pb.h \
 
92
                table.pb.h \
 
93
                binary_log.pb.h \
 
94
                transaction.pb.h \
 
95
                master_list.pb.h
 
96
 
 
97
CLEANFILES = \
 
98
                binary_log.pb.h \
 
99
                binary_log.pb.cc \
 
100
                schema.pb.h \
 
101
                schema.pb.cc \
 
102
                table.pb.h \
 
103
                table.pb.cc \
 
104
                transaction.pb.h \
 
105
                transaction.pb.cc \
 
106
                master_list.pb.h \
 
107
                master_list.pb.cc
104
108
 
105
109
SUFFIXES = .proto .pb.cc .pb.h
106
110
.proto.pb.cc: