~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/Makefile.am

Merge Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
17
 
noinst_LTLIBRARIES =    libmysys.la
18
 
 
19
 
mysysincludedir= ${includedir}/mysys
20
 
dist_mysysinclude_HEADERS= \
21
 
                definitions.h \
22
 
                iocache.h \
23
 
                my_alloc.h \
24
 
                my_getopt.h \
25
 
                my_list.h \
26
 
                my_pthread.h \
27
 
                my_sys.h \
28
 
                typelib.h
29
 
 
30
 
noinst_HEADERS= \
31
 
                aio_result.h \
32
 
                base64.h \
33
 
                drizzle_time.h \
34
 
                hash.h \
35
 
                my_bit.h \
36
 
                my_bitmap.h \
37
 
                my_dir.h \
38
 
                my_static.h \
39
 
                my_time.h \
40
 
                my_tree.h \
41
 
                mysys_err.h \
42
 
                mysys_priv.h \
43
 
                queues.h \
44
 
                sha1.h \
45
 
                thr_lock.h
46
 
 
47
 
if BUILD_FAST_MUTEX
48
 
thr_mutex_source= thr_mutex.cc
49
 
endif
50
 
 
51
 
libmysys_la_SOURCES= \
52
 
                array.cc \
53
 
                base64.cc \
54
 
                charset-def.cc \
55
 
                charset.cc \
56
 
                checksum.cc \
57
 
                default.cc \
58
 
                default_modify.cc \
59
 
                errors.cc \
60
 
                hash.cc \
61
 
                list.cc \
62
 
                mf_arr_appstr.cc \
63
 
                mf_cache.cc \
64
 
                mf_dirname.cc \
65
 
                mf_fn_ext.cc \
66
 
                mf_format.cc \
67
 
                mf_getdate.cc \
68
 
                mf_iocache.cc \
69
 
                mf_iocache2.cc \
70
 
                mf_loadpath.cc \
71
 
                mf_pack.cc \
72
 
                mf_qsort.cc \
73
 
                mf_qsort2.cc \
74
 
                mf_radix.cc \
75
 
                mf_same.cc \
76
 
                mf_sort.cc \
77
 
                mf_tempfile.cc \
78
 
                mf_wcomp.cc \
79
 
                mulalloc.cc \
80
 
                my_access.cc \
81
 
                my_alloc.cc \
82
 
                my_bit.cc \
83
 
                my_bitmap.cc \
84
 
                my_copy.cc \
85
 
                my_create.cc \
86
 
                my_delete.cc \
87
 
                my_dup.cc \
88
 
                my_error.cc \
89
 
                my_file.cc \
90
 
                my_filename.cc \
91
 
                my_getopt.cc \
92
 
                my_getsystime.cc \
93
 
                my_init.cc \
94
 
                my_lib.cc \
95
 
                my_open.cc \
96
 
                my_read.cc \
97
 
                my_redel.cc \
98
 
                my_rename.cc \
99
 
                my_static.cc \
100
 
                my_symlink.cc \
101
 
                my_symlink2.cc \
102
 
                my_sync.cc \
103
 
                my_thr_init.cc \
104
 
                my_time.cc \
105
 
                my_write.cc \
106
 
                ptr_cmp.cc \
107
 
                queues.cc \
108
 
                sha1.cc \
109
 
                thr_lock.cc \
110
 
                tree.cc \
111
 
                typelib.cc \
112
 
                ${thr_mutex_source}
113
 
 
114