~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-04-15 23:57:15 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090415235715-m9rkie0qmsvt4j0x
Moved client build into root Makefile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2000-2006 MySQL AB
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; version 2 of the License.
6
 
#
7
 
# This program is distributed in the hope that it will be useful,
8
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
# GNU General Public License for more details.
11
 
#
12
 
# You should have received a copy of the GNU General Public License
13
 
# along with this program; if not, write to the Free Software
14
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
 
 
16
 
# This file is public domain and comes with NO WARRANTY of any kind
17
 
 
18
 
LDADD=                  $(top_builddir)/mysys/libmysys.la \
19
 
                        $(top_builddir)/mystrings/libmystrings.la \
20
 
                        $(LIBDRIZZLE) $(LIBINTL) $(LIBZ) libgetpassword.la
21
 
 
22
 
 
23
 
noinst_HEADERS =        get_password.h \
24
 
                        my_readline.h \
25
 
                        client_priv.h \
26
 
                        errname.h
27
 
 
28
 
CLEANFILES =            $(BUILT_SOURCES)
29
 
 
30
 
bin_PROGRAMS =                  drizzle \
31
 
                                drizzlecheck \
32
 
                                drizzledump \
33
 
                                drizzleimport \
34
 
                                drizzletest \
35
 
                                drizzleslap
36
 
 
37
 
noinst_LTLIBRARIES=             libgetpassword.la
38
 
libgetpassword_la_SOURCES=      get_password.cc
39
 
 
40
 
drizzle_SOURCES=                drizzle.cc readline.cc
41
 
drizzle_LDADD=                  ${LDADD} ${READLINE_LIBS}
42
 
 
43
 
drizzlecheck_SOURCES =          drizzlecheck.cc
44
 
 
45
 
drizzledump_SOURCES=            drizzledump.cc
46
 
 
47
 
drizzleimport_SOURCES=          drizzleimport.cc
48
 
 
49
 
drizzleslap_SOURCES=            drizzleslap.cc
50
 
 
51
 
drizzletest_SOURCES=            drizzletest.cc
52
 
drizzletest_LDADD=              ${LDADD} ${LIBPCRE}
53