~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/include.am

  • Committer: Patrick Crews
  • Date: 2010-09-14 20:21:03 UTC
  • mto: (1771.1.1 pcrews)
  • mto: This revision was merged to the branch mainline in revision 1772.
  • Revision ID: gleebix@gmail.com-20100914202103-1db2n0bshzafep19
Moved transaction_log tests into updated non-publisher-based tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# included from Top Level Makefile.am
3
3
# All paths should be given relative to the root
4
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
5
CLIENT_LDADD= \
21
6
              drizzled/internal/libinternal.la \
22
7
              libdrizzle/libdrizzle.la \
30
15
noinst_PROGRAMS+= \
31
16
                  client/drizzletest
32
17
 
33
 
bin_PROGRAMS+= \
34
 
               client/drizzle \
35
 
               client/drizzleadmin \
36
 
               client/drizzledump \
37
 
               client/drizzleimport \
38
 
               client/drizzleslap
 
18
bin_PROGRAMS= \
 
19
              client/drizzle \
 
20
              client/drizzledump \
 
21
              client/drizzleimport \
 
22
              client/drizzleslap
39
23
 
40
 
man_MANS+= \
41
 
           client/drizzle.1 \
42
 
           client/drizzled.8 \
43
 
           client/drizzleimport.1 \
44
 
           client/drizzleslap.1
 
24
man_MANS= \
 
25
          client/drizzle.1 \
 
26
          client/drizzled.8 \
 
27
          client/drizzledump.1 \
 
28
          client/drizzleimport.1 \
 
29
          client/drizzleslap.1
45
30
 
46
31
client_libgetpassword_la_SOURCES= client/get_password.cc
47
32
 
48
33
noinst_HEADERS+= \
49
34
                 client/client_priv.h \
 
35
                 client/errname.h \
50
36
                 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/statement.h \
58
 
                 client/stats.h \
59
 
                 client/thread_context.h \
60
 
                 client/wakeup.h
 
37
                 client/linebuffer.h
 
38
 
61
39
 
62
40
client_drizzle_SOURCES=         client/drizzle.cc client/linebuffer.cc
63
41
client_drizzle_LDADD=           ${READLINE_LIBS} ${BOOST_LIBS} \
66
44
                                $(LIBZ) \
67
45
                                client/libgetpassword.la
68
46
 
69
 
client_drizzleadmin_CXXFLAGS=   ${AM_CXXFLAGS} -DDRIZZLE_ADMIN_TOOL
70
 
client_drizzleadmin_SOURCES=    client/drizzle.cc client/linebuffer.cc
71
 
client_drizzleadmin_LDADD=      ${READLINE_LIBS} ${BOOST_LIBS} \
72
 
                                libdrizzle/libdrizzle.la \
73
 
                                $(LIBINTL) \
74
 
                                $(LIBZ) \
75
 
                                client/libgetpassword.la
76
 
 
77
 
client_drizzledump_SOURCES= \
78
 
                            client/drizzledump.cc \
79
 
                            client/drizzledump_data.cc \
80
 
                            client/drizzledump_drizzle.cc \
81
 
                            client/drizzledump_mysql.cc
82
 
 
 
47
client_drizzledump_SOURCES=     client/drizzledump.cc
83
48
client_drizzledump_LDADD=       ${CLIENT_LDADD} ${BOOST_LIBS}
84
49
 
85
50
client_drizzleimport_SOURCES=   client/drizzleimport.cc
89
54
client_drizzleslap_LDADD=       ${CLIENT_LDADD} ${BOOST_LIBS}
90
55
client_drizzleslap_CXXFLAGS=    ${AM_CXXFLAGS} ${BOOSTSKIP_WARNINGS}
91
56
 
92
 
client_drizzletest_SOURCES=     client/drizzletest.cc
 
57
client_drizzletest_SOURCES=     client/drizzletest.cc client/errname.cc
93
58
client_drizzletest_LDADD=       ${CLIENT_LDADD} ${BOOST_LIBS} ${LIBPCRE} 
94
59
 
95
60