~drizzle-trunk/drizzle/development

492.1.6 by Monty Taylor
Cleaned copyright headers.
1
#  Copyright (C) 2008 Sun Microsystems
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
202.1.6 by Monty Taylor
Added Makefile.am to server/field and build as libtool noinst lib.
15
16
noinst_LTLIBRARIES = 	libfield.la
17
18
libfield_la_SOURCES = 	blob.cc \
19
			date.cc \
20
			datetime.cc \
438.4.1 by Lee
breaking out enum field classes
21
			enum.cc \
214 by Brian Aker
Rename of fields (fix issue with string and decimal .h clashing).
22
			fdecimal.cc \
202.1.6 by Monty Taylor
Added Makefile.am to server/field and build as libtool noinst lib.
23
			double.cc \
24
			int64_t.cc \
25
			long.cc \
483.1.4 by Lee
break out Field_longstr
26
			longstr.cc \
202.1.6 by Monty Taylor
Added Makefile.am to server/field and build as libtool noinst lib.
27
			null.cc \
483.1.6 by Lee
code clean up for Field_num
28
			num.cc \
483.1.1 by Lee
latest code cleanup for Field_real
29
			real.cc \
483.1.5 by Lee
clean up code for Field_str
30
			str.cc \
202.1.6 by Monty Taylor
Added Makefile.am to server/field and build as libtool noinst lib.
31
			timestamp.cc \
32
			timetype.cc \
222 by Brian Aker
Remove YEAR field type
33
			varstring.cc
214 by Brian Aker
Rename of fields (fix issue with string and decimal .h clashing).
34
612.2.14 by Monty
Fixed Makefiles to install headers.
35
36
fieldincludedir = ${includedir}/drizzled/field
37
nobase_dist_fieldinclude_HEADERS = \
38
		blob.h \
39
		date.h \
40
		datetime.h \
41
		enum.h \
42
		fdecimal.h \
43
		double.h \
44
		int64_t.h \
45
		long.h \
46
		longstr.h \
47
		null.h \
48
		num.h \
49
		real.h \
50
		str.h \
51
		timestamp.h \
52
		timetype.h \
53
		varstring.h
54
202.1.6 by Monty Taylor
Added Makefile.am to server/field and build as libtool noinst lib.
55
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
56
DEFS= -DDRIZZLE_SERVER @DEFS@