~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
# Copyright (C) 2001, 2004, 2006 MySQL AB & Innobase Oy
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
# Process this file with automake to create Makefile.in
17
18
MYSQLDATAdir =          $(localstatedir)
19
MYSQLSHAREdir =         $(pkgdatadir)
20
MYSQLBASEdir=           $(prefix)
21
MYSQLLIBdir=            $(pkglibdir)
22
pkgplugindir =		$(pkglibdir)/plugin
202.1.23 by Monty Taylor
Moved the includes we use everywhere to to GLOBAL_CPPFLAGS and added AM_CPPFLAGS to an AC_SUBST, so that we could take out the redundant declaration from most fof the Makefiles.
23
AM_CPPFLAGS =		${GLOBAL_CPPFLAGS} \
212.5.45 by Monty Taylor
Removed excess AM_CPPFLAGS from the tree. Now the only thing that should be in the include path should be -I${top_srcdir} and -I${top_builddir}w
24
			-I$(top_srcdir)/storage/innobase/include
1 by brian
clean slate
25
26
DEFS =			@DEFS@
27
28
29
noinst_HEADERS = include/btr0btr.h include/btr0btr.ic			\
30
			include/btr0cur.h include/btr0cur.ic		\
31
			include/btr0pcur.h include/btr0pcur.ic		\
32
			include/btr0sea.h include/btr0sea.ic		\
33
			include/btr0types.h include/buf0buf.h		\
34
			include/buf0buf.ic include/buf0flu.h		\
35
			include/buf0flu.ic include/buf0lru.h		\
36
			include/buf0lru.ic include/buf0rea.h		\
37
			include/buf0types.h include/data0data.h		\
38
			include/data0data.ic include/data0type.h	\
39
			include/data0type.ic include/data0types.h	\
40
			include/db0err.h include/dict0boot.h		\
41
			include/dict0boot.ic include/dict0crea.h	\
42
			include/dict0crea.ic include/dict0dict.h	\
43
			include/dict0dict.ic include/dict0load.h	\
44
			include/dict0load.ic include/dict0mem.h		\
45
			include/dict0mem.ic include/dict0types.h	\
46
			include/dyn0dyn.h include/dyn0dyn.ic		\
47
			include/eval0eval.h include/eval0eval.ic	\
48
			include/eval0proc.h include/eval0proc.ic	\
49
			include/fil0fil.h include/fsp0fsp.h		\
50
			include/fsp0fsp.ic include/fut0fut.h		\
51
			include/fut0fut.ic include/fut0lst.h		\
52
			include/fut0lst.ic include/ha0ha.h		\
53
			include/ha0ha.ic include/hash0hash.h		\
54
			include/hash0hash.ic include/ibuf0ibuf.h	\
55
			include/ibuf0ibuf.ic include/ibuf0types.h	\
56
			include/lock0iter.h				\
57
			include/lock0lock.h include/lock0lock.ic	\
58
			include/lock0priv.h include/lock0priv.ic	\
59
			include/lock0types.h include/log0log.h		\
60
			include/log0log.ic include/log0recv.h		\
61
			include/log0recv.ic include/mach0data.h		\
62
			include/mach0data.ic include/mem0dbg.h		\
63
			include/mem0dbg.ic mem/mem0dbg.c		\
64
			include/mem0mem.h include/mem0mem.ic		\
65
			include/mem0pool.h include/mem0pool.ic		\
66
			include/mtr0log.h include/mtr0log.ic		\
67
			include/mtr0mtr.h include/mtr0mtr.ic		\
68
			include/mtr0types.h include/os0file.h		\
69
			include/os0proc.h include/os0proc.ic		\
70
			include/os0sync.h include/os0sync.ic		\
71
			include/os0thread.h include/os0thread.ic	\
72
			include/page0cur.h include/page0cur.ic		\
73
			include/page0page.h include/page0page.ic	\
74
			include/page0types.h include/pars0grm.h		\
75
			include/pars0opt.h include/pars0opt.ic		\
76
			include/pars0pars.h include/pars0pars.ic	\
77
			include/pars0sym.h include/pars0sym.ic		\
78
			include/pars0types.h include/que0que.h		\
79
			include/que0que.ic include/que0types.h		\
80
			include/read0read.h include/read0read.ic	\
81
			include/read0types.h include/rem0cmp.h		\
82
			include/rem0cmp.ic include/rem0rec.h		\
83
			include/rem0rec.ic include/rem0types.h		\
84
			include/row0ins.h include/row0ins.ic		\
85
			include/row0mysql.h include/row0mysql.ic	\
86
			include/row0purge.h include/row0purge.ic	\
87
			include/row0row.h include/row0row.ic		\
88
			include/row0sel.h include/row0sel.ic		\
89
			include/row0types.h include/row0uins.h		\
90
			include/row0uins.ic include/row0umod.h		\
91
			include/row0umod.ic include/row0undo.h		\
92
			include/row0undo.ic include/row0upd.h		\
93
			include/row0upd.ic include/row0vers.h		\
94
			include/row0vers.ic include/srv0que.h		\
95
			include/srv0srv.h include/srv0srv.ic		\
96
			include/srv0start.h include/sync0arr.h		\
97
			include/sync0arr.ic include/sync0rw.h		\
98
			include/sync0rw.ic include/sync0sync.h		\
99
			include/sync0sync.ic include/sync0types.h	\
100
			include/thr0loc.h include/thr0loc.ic		\
101
			include/trx0purge.h include/trx0purge.ic	\
102
			include/trx0rec.h include/trx0rec.ic		\
103
			include/trx0roll.h include/trx0roll.ic		\
104
			include/trx0rseg.h include/trx0rseg.ic		\
105
			include/trx0sys.h include/trx0sys.ic		\
106
			include/trx0trx.h include/trx0trx.ic		\
107
			include/trx0types.h include/trx0undo.h		\
108
			include/trx0undo.ic include/trx0xa.h		\
109
			include/univ.i include/usr0sess.h		\
110
			include/usr0sess.ic include/usr0types.h		\
111
			include/ut0byte.h include/ut0byte.ic		\
112
			include/ut0dbg.h include/ut0lst.h		\
113
			include/ut0mem.h include/ut0mem.ic		\
114
			include/ut0rnd.h include/ut0rnd.ic		\
115
			include/ut0sort.h include/ut0ut.h		\
116
			include/ut0ut.ic include/ut0vec.h		\
117
			include/ut0vec.ic include/ut0list.h		\
118
			include/ut0list.ic include/ut0wqueue.h		\
119
			include/ha_prototypes.h handler/ha_innodb.h
120
121
EXTRA_LIBRARIES =	libinnobase.a
122
noinst_LIBRARIES =	@plugin_innobase_static_target@
123
libinnobase_a_SOURCES =	btr/btr0btr.c btr/btr0cur.c btr/btr0pcur.c	\
124
			btr/btr0sea.c buf/buf0buf.c buf/buf0flu.c	\
125
			buf/buf0lru.c buf/buf0rea.c data/data0data.c	\
126
			data/data0type.c dict/dict0boot.c		\
127
			dict/dict0crea.c dict/dict0dict.c		\
128
			dict/dict0load.c dict/dict0mem.c dyn/dyn0dyn.c	\
129
			eval/eval0eval.c eval/eval0proc.c		\
130
			fil/fil0fil.c fsp/fsp0fsp.c fut/fut0fut.c	\
131
			fut/fut0lst.c ha/ha0ha.c ha/hash0hash.c		\
132
			ibuf/ibuf0ibuf.c lock/lock0iter.c		\
133
			lock/lock0lock.c				\
134
			log/log0log.c log/log0recv.c mach/mach0data.c	\
135
			mem/mem0mem.c mem/mem0pool.c mtr/mtr0log.c	\
136
			mtr/mtr0mtr.c os/os0file.c os/os0proc.c		\
137
			os/os0sync.c os/os0thread.c page/page0cur.c	\
138
			page/page0page.c pars/lexyy.c pars/pars0grm.c	\
139
			pars/pars0opt.c pars/pars0pars.c		\
140
			pars/pars0sym.c que/que0que.c read/read0read.c	\
141
			rem/rem0cmp.c rem/rem0rec.c row/row0ins.c	\
142
			row/row0mysql.c row/row0purge.c row/row0row.c	\
143
			row/row0sel.c row/row0uins.c row/row0umod.c	\
144
			row/row0undo.c row/row0upd.c row/row0vers.c	\
145
			srv/srv0que.c srv/srv0srv.c srv/srv0start.c	\
146
			sync/sync0arr.c sync/sync0rw.c			\
147
			sync/sync0sync.c thr/thr0loc.c trx/trx0purge.c	\
148
			trx/trx0rec.c trx/trx0roll.c trx/trx0rseg.c	\
149
			trx/trx0sys.c trx/trx0trx.c trx/trx0undo.c	\
150
			usr/usr0sess.c ut/ut0byte.c ut/ut0dbg.c		\
151
			ut/ut0list.c ut/ut0mem.c ut/ut0rnd.c		\
152
			ut/ut0ut.c ut/ut0vec.c ut/ut0wqueue.c		\
153
			handler/ha_innodb.cc
154
155
libinnobase_a_CXXFLAGS=	$(AM_CFLAGS)
156
libinnobase_a_CFLAGS  =	$(AM_CFLAGS)
157
158
EXTRA_LTLIBRARIES =	ha_innodb.la
159
pkglib_LTLIBRARIES =	@plugin_innobase_shared_target@
160
161
ha_innodb_la_LDFLAGS =	-module -rpath $(pkgplugindir)
162
ha_innodb_la_CXXFLAGS=	$(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
163
ha_innodb_la_CFLAGS  =	$(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
164
ha_innodb_la_SOURCES =	$(libinnobase_a_SOURCES)
165
28.1.25 by Monty Taylor
Removed CMake file references.
166
EXTRA_DIST =		plug.in \
1 by brian
clean slate
167
			pars/make_bison.sh pars/make_flex.sh \
168
			pars/pars0grm.y pars/pars0lex.l