~drizzle-trunk/drizzle/development

390.1.4 by Monty Taylor
More copyright header file fixes.
1
# Copyright (C) 2008 Sun Microsystems, Inc.
1 by brian
clean slate
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
# 
390.1.4 by Monty Taylor
More copyright header file fixes.
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
968.2.9 by Monty Taylor
Made libdrizzleclient a noinst ltlib.
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 \
971.3.16 by Eric Day
Cleaned up Protocol plugin interface (now a class factory) and moved libdrizzlclient to oldlibdrizzle to be clear.
30
		oldlibdrizzle.h \
968.2.9 by Monty Taylor
Made libdrizzleclient a noinst ltlib.
31
		errmsg.h \
32
		net_serv.h \
33
		options.h \
34
		pack.h \
35
		password.h \
36
		vio.h
37
971.3.16 by Eric Day
Cleaned up Protocol plugin interface (now a class factory) and moved libdrizzlclient to oldlibdrizzle to be clear.
38
noinst_LTLIBRARIES= liboldlibdrizzle.la
39
liboldlibdrizzle_la_SOURCES= \
968.2.13 by Monty Taylor
libdrizzleclient is no longer exported - it's now just a temporary conv. lib to be deleted. So we convert it to C++. Now, we have no pure-C code that we're responsible.
40
		client.cc \
41
		drizzle.cc \
42
		drizzle_data.cc \
43
		errmsg.cc \
44
		libdrizzle.cc \
971.3.16 by Eric Day
Cleaned up Protocol plugin interface (now a class factory) and moved libdrizzlclient to oldlibdrizzle to be clear.
45
		oldlibdrizzle.cc \
968.2.13 by Monty Taylor
libdrizzleclient is no longer exported - it's now just a temporary conv. lib to be deleted. So we convert it to C++. Now, we have no pure-C code that we're responsible.
46
		libdrizzle_priv.cc \
47
		net_serv.cc \
48
		pack.cc \
49
		password.cc \
50
		vio.cc \
51
		viosocket.cc
968.2.9 by Monty Taylor
Made libdrizzleclient a noinst ltlib.
52
971.3.16 by Eric Day
Cleaned up Protocol plugin interface (now a class factory) and moved libdrizzlclient to oldlibdrizzle to be clear.
53
liboldlibdrizzle_la_LIBADD = $(LIBZ)
28.1.2 by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2
54