~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-12-12 20:31:58 UTC
  • mfrom: (670.4.1 devel)
  • mto: This revision was merged to the branch mainline in revision 676.
  • Revision ID: monty@inaugust.com-20081212203158-racsfizpux2mk08d
Merged removal of recursive subdirs in the drizzled dir.

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
 
AM_CPPFLAGS = ${GLOBAL_CPPFLAGS} ${PROTOBUF_CFLAGS}
19
 
 
20
 
libfunctions_la_SOURCES = abs.cc \
21
 
                  acos.cc \
22
 
                  ascii.cc \
23
 
                  asin.cc \
24
 
                  atan.cc \
25
 
                  additive_op.cc \
26
 
                  benchmark.cc \
27
 
                  bit.cc \
28
 
                  bit_count.cc \
29
 
                  char_length.cc \
30
 
                  check_reserved_words.cc \
31
 
                  ceiling.cc \
32
 
                  connection_id.cc \
33
 
                  coercibility.cc \
34
 
                  cos.cc \
35
 
                  decimal_typecast.cc \
36
 
                  divide.cc \
37
 
                  exp.cc \
38
 
                  get_user_var.cc \
39
 
                  get_variable.cc \
40
 
                  field.cc \
41
 
                  find_in_set.cc \
42
 
                  floor.cc \
43
 
                  found_rows.cc \
44
 
                  func.cc \
45
 
                  get_system_var.cc \
46
 
                  get_variable.cc \
47
 
                  int.cc \
48
 
                  integer.cc \
49
 
                  int_divide.cc \
50
 
                  int_val.cc \
51
 
                  last_insert.cc \
52
 
                  length.cc \
53
 
                  ln.cc \
54
 
                  locate.cc \
55
 
                  log.cc \
56
 
                  master_pos_wait.cc \
57
 
                  min_max.cc \
58
 
                  minus.cc \
59
 
                  mod.cc \
60
 
                  multiply.cc \
61
 
                  neg.cc \
62
 
                  num1.cc \
63
 
                  numhybrid.cc \
64
 
                  num_op.cc \
65
 
                  ord.cc \
66
 
                  plus.cc \
67
 
                  pow.cc \
68
 
                  rand.cc \
69
 
                  real.cc \
70
 
                  round.cc \
71
 
                  row_count.cc \
72
 
                  set_user_var.cc \
73
 
                  shift.cc \
74
 
                  sign.cc \
75
 
                  signed.cc \
76
 
                  sin.cc \
77
 
                  sqrt.cc \
78
 
                  tan.cc \
79
 
                  update_hash.cc \
80
 
                  units.cc \
81
 
                  unsigned.cc \
82
 
                  user_var_as_out_param.cc \
83
 
                  user_var_entry.cc
84
 
 
85
 
functionsincludedir = ${includedir}/drizzled/functions
86
 
nobase_dist_functionsinclude_HEADERS = \
87
 
                abs.h \
88
 
                acos.h \
89
 
                ascii.h \
90
 
                asin.h \
91
 
                atan.h \
92
 
                additive_op.h \
93
 
                benchmark.h \
94
 
                bit.h \
95
 
                bit_count.h \
96
 
                bit_length.h \
97
 
                ceiling.h \
98
 
                char_length.h \
99
 
                coercibility.h \
100
 
                connection_id.h \
101
 
                cos.h \
102
 
                dec.h \
103
 
                decimal_typecast.h \
104
 
                divide.h \
105
 
                exp.h \
106
 
                field.h \
107
 
                find_in_set.h \
108
 
                floor.h \
109
 
                found_rows.h \
110
 
                func.h \
111
 
                get_system_var.h \
112
 
                get_user_var.h \
113
 
                int.h \
114
 
                integer.h \
115
 
                int_divide.h \
116
 
                int_val.h \
117
 
                last_insert.h \
118
 
                length.h \
119
 
                ln.h \
120
 
                locate.h \
121
 
                log.h \
122
 
                master_pos_wait.h \
123
 
                min_max.h \
124
 
                minus.h \
125
 
                mod.h \
126
 
                multiply.h \
127
 
                neg.h \
128
 
                num1.h \
129
 
                numhybrid.h \
130
 
                num_op.h \
131
 
                ord.h \
132
 
                plus.h \
133
 
                pow.h \
134
 
                real.h \
135
 
                rollup_const.h \
136
 
                round.h \
137
 
                row_count.h \
138
 
                set_user_var.h \
139
 
                sign.h \
140
 
                signed.h \
141
 
                sin.h \
142
 
                sqrt.h \
143
 
                tan.h \
144
 
                unsigned.h \
145
 
                user_var_as_out_param.h
146
 
        
147
 
 
148
 
DEFS= -DDRIZZLE_SERVER @DEFS@