~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 05:31:39 UTC
  • mto: (971.1.47 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: jpipes@serialcoder-20090410053139-beat1rbcopkcgc4n
Changes libserialize to libdrizzledmessage per ML discussion.  All GPB messages are now in the drizzled::message namespace.

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= libserialize.la \
 
16
LDADD= libdrizzledmessage.la \
17
17
        ${LIBPROTOBUF} \
18
18
        ${LIBUUID} \
19
19
        ${LIBINTL} \
20
20
        ${top_builddir}/gnulib/libgnu.la
21
21
 
22
22
AM_CXXFLAGS += ${PROTOSKIP_WARNINGS}
23
 
TESTS_ENVIRONMENT = BINDIR=${top_builddir}/drizzled/serialize sh
 
23
TESTS_ENVIRONMENT = BINDIR=${top_builddir}/drizzled/message sh
24
24
TESTS = check_length.sh
25
25
 
26
26
noinst_PROGRAMS = \
36
36
 
37
37
check_PROGRAMS = length
38
38
 
39
 
noinst_LTLIBRARIES = libserialize.la
 
39
noinst_LTLIBRARIES = libdrizzledmessage.la
40
40
 
41
 
nodist_libserialize_la_SOURCES = \
 
41
nodist_libdrizzledmessage_la_SOURCES = \
42
42
                binary_log.pb.cc \
43
43
                master_list.pb.cc \
44
44
                replication_event.pb.cc \
56
56
                binary_log.h \
57
57
                binlog_encoding.h \
58
58
                ioutil.h \
59
 
                serialize.h
 
59
                all.h
60
60
 
61
61
 
62
62
binlog_reader_SOURCES = binlog_reader.cc binary_log.cc
99
99
 
100
100
SUFFIXES = .proto .pb.cc .pb.h
101
101
.proto.pb.cc:
102
 
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/serialize \
103
 
                --cpp_out=${top_builddir}/drizzled/serialize $<
 
102
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/message \
 
103
                --cpp_out=${top_builddir}/drizzled/message $<
104
104
.proto.pb.h:
105
 
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/serialize \
106
 
                --cpp_out=${top_builddir}/drizzled/serialize $<
 
105
        $(PROTOC) --proto_path=.:${top_srcdir}/drizzled/message \
 
106
                --cpp_out=${top_builddir}/drizzled/message $<