~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
16
MYSQLDATAdir =          $(localstatedir)
17
MYSQLSHAREdir =         $(pkgdatadir)
28.1.25 by Monty Taylor
Removed CMake file references.
18
MYSQLBASEdir =          $(prefix)
19
MYSQLLIBdir =           $(pkglibdir)
1 by brian
clean slate
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=			libmyisamutil.la \
22
			libmyisamnone.la \
23
			$(top_builddir)/mysys/libmysyslt.la \
212.5.4 by Monty Taylor
Renamed strings to mystrings, for include/lib naming consistency.
24
			$(top_builddir)/mystrings/libmystringslt.la -lz
1 by brian
clean slate
25
26
DEFS =                  @DEFS@
27
51.1.113 by Jay Pipes
Removed old test scripts and source files from Makefile and directory
28
EXTRA_DIST =		plug.in
77.1.9 by Monty Taylor
All of storage/ compiles clean now.
29
77.1.14 by Monty Taylor
Fixed the test programs linking issue. (I hope)
30
noinst_LTLIBRARIES =	libmyisam.la libmyisamutil.la \
31
			libmyisamha.la libmyisamnone.la
32
bin_PROGRAMS =		myisamchk myisamlog myisampack
73 by Brian Aker
Removal of RT bits from MyISAM
33
noinst_HEADERS =	myisamdef.h \
212.4.1 by Monty Taylor
Moved myisam headers to storage/myisam.
34
			ha_myisam.h \
35
			keycache.h \
36
			myisam.h \
37
			myisammrg.h \
38
			myisampack.h
39
77.1.14 by Monty Taylor
Fixed the test programs linking issue. (I hope)
40
libmyisamutil_la_SOURCES = mi_open.c mi_extra.c mi_info.c mi_rkey.c \
1 by brian
clean slate
41
			mi_rnext.c mi_rnext_same.c \
42
			mi_search.c mi_page.c mi_key.c mi_locking.c \
43
			mi_rrnd.c mi_scan.c mi_cache.c \
44
			mi_statrec.c mi_packrec.c mi_dynrec.c \
45
			mi_update.c mi_write.c mi_unique.c \
77.1.7 by Monty Taylor
Heap builds clean.
46
			mi_delete.c \
77.1.96 by Monty Taylor
Removed skip-external-locking.
47
			my_pread.c \
53.2.37 by Monty Taylor
Moved keycache code to MyISAM.
48
			mf_keycache.c mf_keycaches.c \
1 by brian
clean slate
49
			mi_rprev.c mi_rfirst.c mi_rlast.c mi_rsame.c \
50
			mi_rsamepos.c mi_panic.c mi_close.c mi_create.c\
51.1.94 by Jay Pipes
Removed/replaced DBUG symbols and TRUE/FALSE
51
			mi_range.c mi_checksum.c mi_log.c \
1 by brian
clean slate
52
			mi_changed.c mi_static.c mi_delete_all.c \
53
			mi_delete_table.c mi_rename.c  mi_check.c \
54
			mi_keycache.c mi_preload.c \
77.1.14 by Monty Taylor
Fixed the test programs linking issue. (I hope)
55
			sort.c 
56
libmyisamha_la_SOURCES = ha_myisam.cc
57
libmyisamnone_la_SOURCES = mi_reportnone.c
58
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.
59
libmyisam_la_LIBADD = libmyisamha.la libmyisamutil.la