~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to libdrizzle-2.0/include.am

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim:ft=automake
 
2
#
 
3
# Drizzle Client Library
 
4
#
 
5
# Copyright (C) 2008 Eric Day (eday@oddments.org)
 
6
# All rights reserved.
 
7
#
 
8
# Redistribution and use in source and binary forms, with or without
 
9
# modification, are permitted provided that the following conditions are
 
10
# met:
 
11
#
 
12
#     * Redistributions of source code must retain the above copyright
 
13
# notice, this list of conditions and the following disclaimer.
 
14
#
 
15
#     * Redistributions in binary form must reproduce the above
 
16
# copyright notice, this list of conditions and the following disclaimer
 
17
# in the documentation and/or other materials provided with the
 
18
# distribution.
 
19
#
 
20
#     * The names of its contributors may not be used to endorse or
 
21
# promote products derived from this software without specific prior
 
22
# written permission.
 
23
#
 
24
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
25
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
26
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
27
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
28
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
29
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
30
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
31
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
32
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
33
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
34
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
35
#
 
36
 
 
37
noinst_LTLIBRARIES+= libdrizzle-2.0/libdrizzle-2.0.la
 
38
 
 
39
if HAVE_LIBSQLITE3
 
40
SQLITE_PROGS= examples/sqlite_server
 
41
endif
 
42
 
 
43
noinst_PROGRAMS+= \
 
44
                  $(SQLITE_PROGS) \
 
45
                  examples/client \
 
46
                  examples/pipe_query \
 
47
                  examples/proxy \
 
48
                  examples/server \
 
49
                  examples/simple \
 
50
                  examples/simple_multi
 
51
 
 
52
libdrizzle_2_0_libdrizzle_2_0_la_CXXFLAGS= \
 
53
                                           ${AM_CXXFLAGS} \
 
54
                                           ${CFLAG_VISIBILITY} \
 
55
                                           -DBUILDING_LIBDRIZZLE
 
56
 
 
57
libdrizzle_2_0_libdrizzle_2_0_la_LDFLAGS= \
 
58
                                          $(AM_LDFLAGS) \
 
59
                                          $(GCOV_LIBS)
 
60
libdrizzle_2_0_libdrizzle_2_0_la_SOURCES= \
 
61
                                          libdrizzle-2.0/column.cc \
 
62
                                          libdrizzle-2.0/command.cc \
 
63
                                          libdrizzle-2.0/conn.cc \
 
64
                                          libdrizzle-2.0/conn_uds.cc \
 
65
                                          libdrizzle-2.0/drizzle.cc \
 
66
                                          libdrizzle-2.0/field.cc \
 
67
                                          libdrizzle-2.0/handshake.cc \
 
68
                                          libdrizzle-2.0/pack.cc \
 
69
                                          libdrizzle-2.0/query.cc \
 
70
                                          libdrizzle-2.0/result.cc \
 
71
                                          libdrizzle-2.0/row.cc \
 
72
                                          libdrizzle-2.0/sha1.cc \
 
73
                                          libdrizzle-2.0/state.cc
 
74
 
 
75
examples_server_SOURCES= examples/server.cc
 
76
examples_server_LDADD= libdrizzle-2.0/libdrizzle-2.0.la
 
77
 
 
78
examples_proxy_SOURCES= examples/proxy.cc
 
79
examples_proxy_LDADD= libdrizzle-2.0/libdrizzle-2.0.la
 
80
 
 
81
examples_client_SOURCES= examples/client.cc
 
82
examples_client_LDADD= libdrizzle-2.0/libdrizzle-2.0.la
 
83
 
 
84
examples_simple_SOURCES= examples/simple.cc
 
85
examples_simple_LDADD= libdrizzle-2.0/libdrizzle-2.0.la
 
86
 
 
87
examples_simple_multi_SOURCES= examples/simple_multi.cc
 
88
examples_simple_multi_LDADD= libdrizzle-2.0/libdrizzle-2.0.la
 
89
 
 
90
examples_pipe_query_SOURCES= examples/pipe_query.cc
 
91
examples_pipe_query_LDADD= libdrizzle-2.0/libdrizzle-2.0.la
 
92
 
 
93
if HAVE_LIBSQLITE3
 
94
examples_sqlite_server_LDFLAGS= libdrizzle-2.0/libdrizzle-2.0.la $(LTLIBSQLITE3)
 
95
examples_sqlite_server_DEPENDENCIES= libdrizzle-2.0/libdrizzle-2.0.la
 
96
examples_sqlite_server_SOURCES= examples/sqlite_server.cc
 
97
endif
 
98
 
 
99
noinst_HEADERS+= \
 
100
                 libdrizzle-2.0/column.h \
 
101
                 libdrizzle-2.0/column_client.h \
 
102
                 libdrizzle-2.0/column_server.h \
 
103
                 libdrizzle-2.0/command.h \
 
104
                 libdrizzle-2.0/command_client.h \
 
105
                 libdrizzle-2.0/command_server.h \
 
106
                 libdrizzle-2.0/common.h \
 
107
                 libdrizzle-2.0/conn.h \
 
108
                 libdrizzle-2.0/conn_client.h \
 
109
                 libdrizzle-2.0/conn_local.h \
 
110
                 libdrizzle-2.0/conn_server.h \
 
111
                 libdrizzle-2.0/constants.h \
 
112
                 libdrizzle-2.0/deprecated_enum.h \
 
113
                 libdrizzle-2.0/drizzle.h \
 
114
                 libdrizzle-2.0/drizzle_client.h \
 
115
                 libdrizzle-2.0/drizzle_local.h \
 
116
                 libdrizzle-2.0/drizzle_server.h \
 
117
                 libdrizzle-2.0/field_client.h \
 
118
                 libdrizzle-2.0/field_server.h \
 
119
                 libdrizzle-2.0/handshake_client.h \
 
120
                 libdrizzle-2.0/handshake_server.h \
 
121
                 libdrizzle-2.0/libdrizzle.h \
 
122
                 libdrizzle-2.0/libdrizzle.hpp \
 
123
                 libdrizzle-2.0/limits.h \
 
124
                 libdrizzle-2.0/pack.h \
 
125
                 libdrizzle-2.0/query.h \
 
126
                 libdrizzle-2.0/result.h \
 
127
                 libdrizzle-2.0/result_client.h \
 
128
                 libdrizzle-2.0/result_server.h \
 
129
                 libdrizzle-2.0/return.h \
 
130
                 libdrizzle-2.0/row_client.h \
 
131
                 libdrizzle-2.0/row_server.h \
 
132
                 libdrizzle-2.0/sha1.h \
 
133
                 libdrizzle-2.0/state.h \
 
134
                 libdrizzle-2.0/structs.h \
 
135
                 libdrizzle-2.0/verbose.h \
 
136
                 libdrizzle-2.0/visibility.h