~drizzle-developers/pkg-libinnodb/karmic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright (C) 2008 Oracle/Innobase Oy
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

# Process this file with automake to create Makefile.in
#
noinst_PROGRAMS		= ib_cfg \
			  ib_cursor \
			  ib_drop \
			  ib_ddl \
			  ib_dict \
			  ib_logger \
			  ib_mt_drv \
			  ib_mt_stress \
			  ib_perf1 \
			  ib_shutdown \
			  ib_tablename \
			  ib_test1 \
			  ib_test2 \
			  ib_test3 \
			  ib_test5 \
			  ib_types

embeddeddir		= $(datadir)/$(INSTDIR)/examples
embedded_DATA		= COPYING \
			  Makefile.examples \
			  README \
			  ib_cfg.c \
			  ib_cursor.c \
			  ib_logger.c \
			  ib_mt_stress.c \
			  ib_perf1.c \
			  ib_test1.c \
			  ib_test2.c \
			  ib_test3.c \
			  ib_test5.c \
			  ib_types.c \
			  test0aux.c \
			  test0aux.h

noinst_HEADERS 		= ib_mt_base.h \
			  ib_mt_drv.h \
			  test0aux.h

# We want these in the dist tarball
EXTRA_DIST		= CMakeLists.txt \
			  COPYING \
			  Makefile.examples \
			  README

ib_shutdown_SOURCES	= test0aux.c ib_shutdown.c
ib_cfg_SOURCES		= ib_cfg.c
ib_ddl_SOURCES		= test0aux.c ib_ddl.c
ib_drop_SOURCES		= test0aux.c ib_drop.c
ib_dict_SOURCES		= test0aux.c ib_dict.c
ib_test1_SOURCES	= test0aux.c ib_test1.c
ib_tablename_SOURCES	= test0aux.c ib_tablename.c
ib_test2_SOURCES	= test0aux.c ib_test2.c
ib_test3_SOURCES	= test0aux.c ib_test3.c
ib_test5_SOURCES	= test0aux.c ib_test5.c
ib_mt_stress_SOURCES	= test0aux.c ib_mt_stress.c
ib_mt_drv_SOURCES	= test0aux.c ib_mt_drv.c ib_mt_base.c \
			  ib_mt_t1.c ib_mt_t2.c
ib_perf1_SOURCES	= test0aux.c ib_perf1.c
ib_types_SOURCES	= test0aux.c ib_types.c
ib_cursor_SOURCES	= test0aux.c ib_cursor.c
ib_logger_SOURCES	= test0aux.c ib_logger.c
INCLUDES		= -I@top_srcdir@/include -I@top_srcdir@/tests

LDADD			= @top_srcdir@/libinnodb.la -lpthread -lz -lm