~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
1 by brian
clean slate
21
28.1.2 by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2
22
779.3.37 by Monty Taylor
Renmaed libdrizzle in the tree to libdrizzleclient to avoid namespace clashes
23
libdrizzleclientincludedir = ${includedir}/libdrizzleclient
24
dist_libdrizzleclientinclude_HEADERS =	\
540 by Monty Taylor
Moved drizzle_com to drizzled/drizzle_common. Started splitting it up.
25
					get_password.h \
383.1.48 by Monty Taylor
Got rid of libsqlcommon and some surious defines.
26
					drizzle.h \
540 by Monty Taylor
Moved drizzle_com to drizzled/drizzle_common. Started splitting it up.
27
					drizzle_data.h \
383.1.48 by Monty Taylor
Got rid of libsqlcommon and some surious defines.
28
					drizzle_field.h \
29
					drizzle_methods.h \
30
					drizzle_options.h \
540 by Monty Taylor
Moved drizzle_com to drizzled/drizzle_common. Started splitting it up.
31
					drizzle_parameters.h \
32
					drizzle_res.h \
33
					drizzle_rows.h \
541 by Monty Taylor
Fixed spaces in Makefile.am.
34
					libdrizzle.h \
540 by Monty Taylor
Moved drizzle_com to drizzled/drizzle_common. Started splitting it up.
35
					errmsg.h \
36
					net_serv.h \
37
					pack.h \
575.2.2 by Monty Taylor
Moved vio stuff into libdrizzle.
38
					password.h \
39
					vio.h
212.5.25 by Monty Taylor
Moved drizzle.h to libdrizzle.
40
779.3.37 by Monty Taylor
Renmaed libdrizzle in the tree to libdrizzleclient to avoid namespace clashes
41
lib_LTLIBRARIES = libdrizzleclient.la
42
libdrizzleclient_la_SOURCES = client.c \
390.1.5 by Monty Taylor
Moved more functions into drizzle.c as part of the split of code.
43
			drizzle.c \
390.1.6 by Monty Taylor
Oh dear god the changes. The changes. I'd tell you what they are, but I'd just be making stuff up. Suffice it to day it's mostly all around splitting files in libdrizzle into different files and removing interdepends. And whatever else I happened to see...
44
			drizzle_data.c \
390.1.5 by Monty Taylor
Moved more functions into drizzle.c as part of the split of code.
45
			errmsg.c \
46
			get_password.c \
47
			libdrizzle.c \
390.1.6 by Monty Taylor
Oh dear god the changes. The changes. I'd tell you what they are, but I'd just be making stuff up. Suffice it to day it's mostly all around splitting files in libdrizzle into different files and removing interdepends. And whatever else I happened to see...
48
			libdrizzle_priv.c \
383.1.48 by Monty Taylor
Got rid of libsqlcommon and some surious defines.
49
			local_infile.c \
50
			net_serv.c \
51
			pack.c \
575.2.2 by Monty Taylor
Moved vio stuff into libdrizzle.
52
			password.c \
53
			vio.c \
54
			viosocket.c
383.1.48 by Monty Taylor
Got rid of libsqlcommon and some surious defines.
55
779.3.37 by Monty Taylor
Renmaed libdrizzle in the tree to libdrizzleclient to avoid namespace clashes
56
libdrizzleclient_la_LDFLAGS = -version-info @SHARED_LIB_VERSION@ @LD_VERSION_SCRIPT@
57
libdrizzleclient_la_LIBADD = $(LTLIBZ)
28.1.2 by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2
58
538 by Monty Taylor
Moved gettext.h into drizzled in anticipation of the new client lib.
59
noinst_HEADERS =	libdrizzle_priv.h \
383.1.49 by Monty Taylor
Got rid of client_settings.h
60
			local_infile.h
28.1.2 by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2
61
312.1.14 by Monty Taylor
Fixed bug#257694 - added various files to EXTRA_DIST and noinst_HEADERS to make make distcheck (and with-it out-of-tree builds) work.
62
EXTRA_DIST =		libdrizzle.ver
28.1.2 by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2
63
CLEANFILES =		$(target_libadd) $(SHLIBOBJS) \
64
			$(target) $(BUILT_SOURCES)
65