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 |
||
77.1.85
by Monty Taylor
Changed heap and myisam to build plugins using libtool. Made mi_test_all generated by autoconf instead of automake. |
21 |
LDADD = libheap.la \ |
264.1.3
by Monty Taylor
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's |
22 |
$(top_builddir)/mysys/libmysys.la \ |
266.4.3
by Monty Taylor
Removed mystringslt conv lib and replaced it with a noinst lib. |
23 |
$(top_builddir)/strings/libmystrings.la |
1
by brian
clean slate |
24 |
|
25 |
DEFS = @DEFS@ |
|
77.1.85
by Monty Taylor
Changed heap and myisam to build plugins using libtool. Made mi_test_all generated by autoconf instead of automake. |
26 |
noinst_LTLIBRARIES = libheap.la |
212.5.9
by Monty Taylor
Moved heap.h to storage/heap |
27 |
noinst_HEADERS = heapdef.h ha_heap.h heap.h |
77.1.85
by Monty Taylor
Changed heap and myisam to build plugins using libtool. Made mi_test_all generated by autoconf instead of automake. |
28 |
libheap_la_SOURCES = hp_open.c hp_extra.c hp_close.c hp_panic.c hp_info.c \ |
1
by brian
clean slate |
29 |
hp_rrnd.c hp_scan.c hp_update.c hp_write.c hp_delete.c \
|
30 |
hp_rsame.c hp_create.c hp_rename.c hp_rfirst.c \
|
|
31 |
hp_rnext.c hp_rlast.c hp_rprev.c hp_clear.c \
|
|
244.1.1
by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns. |
32 |
hp_dspace.c hp_record.c \
|
1
by brian
clean slate |
33 |
hp_rkey.c hp_block.c \
|
244.1.1
by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns. |
34 |
hp_rectest.c \
|
1
by brian
clean slate |
35 |
ha_heap.cc \
|
51.3.3
by Jay Pipes
Removed test stuff from heap Makefile |
36 |
hp_hash.c hp_static.c |
1
by brian
clean slate |
37 |
|
38 |
||
28.1.25
by Monty Taylor
Removed CMake file references. |
39 |
EXTRA_DIST = plug.in |
1
by brian
clean slate |
40 |