~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

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