~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/Makefile.am

  • Committer: Jay Pipes
  • Date: 2008-07-17 17:54:00 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717175400-xm2aazihjra8mdzq
Removal of DBUG from libdrizzle/ - Round 2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#  Copyright (C) 2008 Sun Microsystems
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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
 
 
16
 
noinst_LTLIBRARIES =    libfunctions.la
17
 
 
18
 
libfunctions_la_SOURCES = abs.cc \
19
 
                          acos.cc \
20
 
                          asin.cc \
21
 
                          atan.cc \
22
 
                          additive_op.cc \
23
 
                          ceiling.cc \
24
 
                          connection_id.cc \
25
 
                          cos.cc \
26
 
                          decimal_typecast.cc \
27
 
                          divide.cc \
28
 
                          exp.cc \
29
 
                          floor.cc \
30
 
                          func.cc \
31
 
                          int.cc \
32
 
                          int_divide.cc \
33
 
                          int_val.cc \
34
 
                          length.cc \
35
 
                          ln.cc \
36
 
                          log.cc \
37
 
                          min_max.cc \
38
 
                          minus.cc \
39
 
                          mod.cc \
40
 
                          multiply.cc \
41
 
                          neg.cc \
42
 
                          num1.cc \
43
 
                          numhybrid.cc \
44
 
                          num_op.cc \
45
 
                          plus.cc \
46
 
                          pow.cc \
47
 
                          rand.cc \
48
 
                          real.cc \
49
 
                          round.cc \
50
 
                          sign.cc \
51
 
                          signed.cc \
52
 
                          sin.cc \
53
 
                          sqrt.cc \
54
 
                          tan.cc \
55
 
                          unsigned.cc
56
 
 
57
 
noinst_HEADERS = abs.h \
58
 
                 acos.h \
59
 
                 asin.h \
60
 
                 atan.h \
61
 
                 additive_op.h \
62
 
                 ceiling.h \
63
 
                 connection_id.h \
64
 
                 cos.h \
65
 
                 dec.h \
66
 
                 decimal_typecast.h \
67
 
                 divide.h \
68
 
                 exp.h \
69
 
                 floor.h \
70
 
                 func.h \
71
 
                 int.h \
72
 
                 int_divide.h \
73
 
                 int_val.h \
74
 
                 length.h \
75
 
                 ln.h \
76
 
                 log.h \
77
 
                 min_max.h \
78
 
                 minus.h \
79
 
                 mod.h \
80
 
                 multiply.h \
81
 
                 neg.h \
82
 
                 num1.h \
83
 
                 numhybrid.h \
84
 
                 num_op.h \
85
 
                 plus.h \
86
 
                 pow.h \
87
 
                 real.h \
88
 
                 round.h \
89
 
                 round.h \
90
 
                 sign.h \
91
 
                 signed.h \
92
 
                 sin.h \
93
 
                 sqrt.h \
94
 
                 tan.h \
95
 
                 unsigned.h
96
 
        
97
 
 
98
 
DEFS= -DDRIZZLE_SERVER @DEFS@