~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
# Copyright (C) 2000-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
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.
16
LDADD=			libmyisamutil.la \
17
			libmyisamnone.la \
264.1.3 by Monty Taylor
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's
18
			$(top_builddir)/mysys/libmysys.la \
779.2.4 by Monty Taylor
Updated some more build stuff.
19
			$(top_builddir)/mystrings/libmystrings.la \
840.2.1 by Monty Taylor
Use LIB* instead of LTLIB*.
20
			$(LIBZ) \
264.1.13 by Monty Taylor
Added libintl to myisam
21
			$(LIBINTL)
1 by brian
clean slate
22
51.1.113 by Jay Pipes
Removed old test scripts and source files from Makefile and directory
23
EXTRA_DIST =		plug.in
77.1.9 by Monty Taylor
All of storage/ compiles clean now.
24
77.1.14 by Monty Taylor
Fixed the test programs linking issue. (I hope)
25
noinst_LTLIBRARIES =	libmyisam.la libmyisamutil.la \
26
			libmyisamha.la libmyisamnone.la
310 by Brian Aker
Removing dead include file, external pack program.
27
bin_PROGRAMS =		myisamchk
598.1.1 by Super-User
Fixed solaris build crap.
28
73 by Brian Aker
Removal of RT bits from MyISAM
29
noinst_HEADERS =	myisamdef.h \
212.4.1 by Monty Taylor
Moved myisam headers to storage/myisam.
30
			ha_myisam.h \
31
			keycache.h \
548 by Monty Taylor
Moved my_handler to myisam, which is where it actually belongs.
32
			my_handler.h \
212.4.1 by Monty Taylor
Moved myisam headers to storage/myisam.
33
			myisam.h \
34
			myisampack.h
35
77.1.14 by Monty Taylor
Fixed the test programs linking issue. (I hope)
36
libmyisamutil_la_SOURCES = mi_open.c mi_extra.c mi_info.c mi_rkey.c \
1 by brian
clean slate
37
			mi_rnext.c mi_rnext_same.c \
38
			mi_search.c mi_page.c mi_key.c mi_locking.c \
39
			mi_rrnd.c mi_scan.c mi_cache.c \
311 by Brian Aker
Sqlech issues with pack
40
			mi_statrec.c mi_dynrec.c \
1 by brian
clean slate
41
			mi_update.c mi_write.c mi_unique.c \
77.1.7 by Monty Taylor
Heap builds clean.
42
			mi_delete.c \
77.1.96 by Monty Taylor
Removed skip-external-locking.
43
			my_pread.c \
53.2.37 by Monty Taylor
Moved keycache code to MyISAM.
44
			mf_keycache.c mf_keycaches.c \
1 by brian
clean slate
45
			mi_rprev.c mi_rfirst.c mi_rlast.c mi_rsame.c \
46
			mi_rsamepos.c mi_panic.c mi_close.c mi_create.c\
304 by Brian Aker
ulong cleanup, remove log code from myisam.
47
			mi_range.c mi_checksum.c \
1 by brian
clean slate
48
			mi_changed.c mi_static.c mi_delete_all.c \
49
			mi_delete_table.c mi_rename.c  mi_check.c \
50
			mi_keycache.c mi_preload.c \
548 by Monty Taylor
Moved my_handler to myisam, which is where it actually belongs.
51
			my_handler.c \
52
			my_handler_errors.c \
77.1.14 by Monty Taylor
Fixed the test programs linking issue. (I hope)
53
			sort.c 
54
libmyisamha_la_SOURCES = ha_myisam.cc
55
libmyisamnone_la_SOURCES = mi_reportnone.c
56
libmyisam_la_SOURCES = 
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.
57
libmyisam_la_LIBADD = libmyisamha.la libmyisamutil.la
598.1.1 by Super-User
Fixed solaris build crap.
58
myisamchk_SOURCES = myisamchk.cc