~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
# Copyright (C) 2000-2002, 2005-2006 MySQL AB
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
MYSQLDATAdir =          $(localstatedir)
17
MYSQLSHAREdir =         $(pkgdatadir)
18
MYSQLBASEdir=           $(prefix)
19
MYSQLLIBdir=            $(pkglibdir)
28.1.20 by Monty Taylor
Replaced INCLUDES with AM_CPPFLAGS.
20
AM_CPPFLAGS =              -I$(top_srcdir)/include -I$(top_builddir)/include \
1 by brian
clean slate
21
			-I$(top_srcdir)/regex \
22
			-I$(top_srcdir)/sql \
23
                        -I$(srcdir)
24
WRAPLIBS=
25
26
LDADD =
27
28
DEFS =                  @DEFS@
29
pkglib_LIBRARIES =	libheap.a
30
noinst_PROGRAMS	=	hp_test1 hp_test2
31
noinst_LIBRARIES =	libheap.a
25 by Brian Aker
Clean up of configure.in
32
hp_test1_LDFLAGS = 
1 by brian
clean slate
33
hp_test1_LDADD =	libheap.a \
28.1.2 by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2
34
			$(top_builddir)/mysys/libmysyslt.la \
35
			$(top_builddir)/dbug/libdbuglt.la \
36
			$(top_builddir)/strings/libmystringslt.la
25 by Brian Aker
Clean up of configure.in
37
hp_test2_LDFLAGS = 
1 by brian
clean slate
38
hp_test2_LDADD =	libheap.a \
28.1.2 by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2
39
			$(top_builddir)/mysys/libmysyslt.la \
40
			$(top_builddir)/dbug/libdbuglt.la \
41
			$(top_builddir)/strings/libmystringslt.la
1 by brian
clean slate
42
noinst_HEADERS =	heapdef.h ha_heap.h
43
libheap_a_SOURCES =	hp_open.c hp_extra.c hp_close.c hp_panic.c hp_info.c \
44
			hp_rrnd.c hp_scan.c hp_update.c hp_write.c hp_delete.c \
45
			hp_rsame.c hp_create.c hp_rename.c hp_rfirst.c \
46
			hp_rnext.c hp_rlast.c hp_rprev.c hp_clear.c \
47
			hp_rkey.c hp_block.c \
48
			ha_heap.cc \
49
			hp_hash.c _check.c _rectest.c hp_static.c
50
51
52
EXTRA_DIST =		CMakeLists.txt plug.in
53