~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/include.am

  • Committer: Moriyoshi Koizumi
  • Date: 2008-11-15 18:36:31 UTC
  • mto: (584.1.5 devel)
  • mto: This revision was merged to the branch mainline in revision 588.
  • Revision ID: mozo@mozo.jp-20081115183631-81d0clowyot42mk7
Incorporating changes proposed by mtaylor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim:ft=automake
2
 
# included from Top Level Makefile.am
3
 
# All paths should be given relative to the root
4
 
 
5
 
#  Copyright (C) 2008 Sun Microsystems, Inc.
6
 
#
7
 
#  This program is free software; you can redistribute it and/or modify
8
 
#  it under the terms of the GNU General Public License as published by
9
 
#  the Free Software Foundation; version 2 of the License.
10
 
#
11
 
#  This program is distributed in the hope that it will be useful,
12
 
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
#  GNU General Public License for more details.
15
 
#
16
 
#  You should have received a copy of the GNU General Public License
17
 
#  along with this program; if not, write to the Free Software
18
 
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 
20
 
CLIENT_LDADD= \
21
 
              drizzled/internal/libinternal.la \
22
 
              libdrizzle/libdrizzle.la \
23
 
              $(LIBINTL) \
24
 
              $(LIBZ) \
25
 
              client/libgetpassword.la
26
 
 
27
 
noinst_LTLIBRARIES+= \
28
 
                     client/libgetpassword.la
29
 
 
30
 
noinst_PROGRAMS+= \
31
 
                  client/drizzletest
32
 
 
33
 
bin_PROGRAMS+= \
34
 
               client/drizzle \
35
 
               client/drizzleadmin \
36
 
               client/drizzledump \
37
 
               client/drizzleimport \
38
 
               client/drizzleslap
39
 
 
40
 
man_MANS+= \
41
 
           client/drizzle.1 \
42
 
           client/drizzled.8 \
43
 
           client/drizzleimport.1 \
44
 
           client/drizzleslap.1
45
 
 
46
 
client_libgetpassword_la_SOURCES= client/get_password.cc
47
 
 
48
 
noinst_HEADERS+= \
49
 
                 client/client_priv.h \
50
 
                 client/get_password.h \
51
 
                 client/linebuffer.h \
52
 
                 client/conclusions.h \
53
 
                 client/drizzledump_data.h \
54
 
                 client/drizzledump_drizzle.h \
55
 
                 client/drizzledump_mysql.h \
56
 
                 client/option_string.h \
57
 
                 client/server_detect.h \
58
 
                 client/statement.h \
59
 
                 client/stats.h \
60
 
                 client/thread_context.h \
61
 
                 client/wakeup.h
62
 
 
63
 
client_drizzle_SOURCES=         client/drizzle.cc client/linebuffer.cc
64
 
client_drizzle_LDADD=           ${READLINE_LIBS} ${BOOST_LIBS} \
65
 
                                libdrizzle/libdrizzle.la \
66
 
                                $(LIBINTL) \
67
 
                                $(LIBZ) \
68
 
                                client/libgetpassword.la
69
 
 
70
 
client_drizzleadmin_CXXFLAGS=   ${AM_CXXFLAGS} -DDRIZZLE_ADMIN_TOOL
71
 
client_drizzleadmin_SOURCES=    client/drizzle.cc client/linebuffer.cc
72
 
client_drizzleadmin_LDADD=      ${READLINE_LIBS} ${BOOST_LIBS} \
73
 
                                libdrizzle/libdrizzle.la \
74
 
                                $(LIBINTL) \
75
 
                                $(LIBZ) \
76
 
                                client/libgetpassword.la
77
 
 
78
 
client_drizzledump_SOURCES= \
79
 
                            client/drizzledump.cc \
80
 
                            client/drizzledump_data.cc \
81
 
                            client/drizzledump_drizzle.cc \
82
 
                            client/drizzledump_mysql.cc
83
 
 
84
 
client_drizzledump_LDADD=       ${CLIENT_LDADD} ${BOOST_LIBS}
85
 
 
86
 
client_drizzleimport_SOURCES=   client/drizzleimport.cc
87
 
client_drizzleimport_LDADD=     ${CLIENT_LDADD} ${BOOST_LIBS}
88
 
 
89
 
client_drizzleslap_SOURCES=     client/drizzleslap.cc
90
 
client_drizzleslap_LDADD=       ${CLIENT_LDADD} ${BOOST_LIBS}
91
 
client_drizzleslap_CXXFLAGS=    ${AM_CXXFLAGS} ${BOOSTSKIP_WARNINGS}
92
 
 
93
 
client_drizzletest_SOURCES=     client/drizzletest.cc
94
 
client_drizzletest_LDADD=       ${CLIENT_LDADD} ${BOOST_LIBS} ${LIBPCRE} 
95
 
 
96