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) |
|
20 |
INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include \ |
|
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 |
|
32 |
hp_test1_LDFLAGS = @NOINST_LDFLAGS@ |
|
33 |
hp_test1_LDADD = libheap.a \ |
|
34 |
$(top_builddir)/mysys/libmysys.a \ |
|
35 |
$(top_builddir)/dbug/libdbug.a \ |
|
36 |
$(top_builddir)/strings/libmystrings.a |
|
37 |
hp_test2_LDFLAGS = @NOINST_LDFLAGS@ |
|
38 |
hp_test2_LDADD = libheap.a \ |
|
39 |
$(top_builddir)/mysys/libmysys.a \ |
|
40 |
$(top_builddir)/dbug/libdbug.a \ |
|
41 |
$(top_builddir)/strings/libmystrings.a |
|
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 |
||
54 |
# Don't update the files from bitkeeper
|
|
55 |
%::SCCS/s.% |