~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/oldlibdrizzle/Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-04-25 20:45:19 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 1003.
  • Revision ID: mordred@inaugust.com-20090425204519-lgrl7mz2r66v0jby
Blackhole.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008 Sun Microsystems, Inc.
 
2
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of version 2 GNU General Public License as
 
5
# published by the Free Software Foundation.
 
6
#
 
7
# There are special exceptions to the terms and conditions of the GPL as it
 
8
# is applied to this software. View the full text of the exception in file
 
9
# EXCEPTIONS-CLIENT in the directory of this software distribution.
 
10
 
11
# This library 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 GNU
 
14
# Library 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
 
 
21
noinst_HEADERS =\
 
22
                drizzle.h \
 
23
                drizzle_data.h \
 
24
                drizzle_field.h \
 
25
                drizzle_methods.h \
 
26
                drizzle_res.h \
 
27
                drizzle_rows.h \
 
28
                libdrizzle.h \
 
29
                libdrizzle_priv.h \
 
30
                oldlibdrizzle.h \
 
31
                errmsg.h \
 
32
                net_serv.h \
 
33
                options.h \
 
34
                pack.h \
 
35
                password.h \
 
36
                vio.h
 
37
 
 
38
noinst_LTLIBRARIES= liboldlibdrizzle.la
 
39
liboldlibdrizzle_la_SOURCES= \
 
40
                client.cc \
 
41
                drizzle.cc \
 
42
                drizzle_data.cc \
 
43
                errmsg.cc \
 
44
                libdrizzle.cc \
 
45
                oldlibdrizzle.cc \
 
46
                libdrizzle_priv.cc \
 
47
                net_serv.cc \
 
48
                pack.cc \
 
49
                password.cc \
 
50
                vio.cc \
 
51
                viosocket.cc
 
52
 
 
53
liboldlibdrizzle_la_LIBADD = $(LIBZ)
 
54