~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/Makefile.am

  • Committer: Brian Aker
  • Date: 2008-11-04 15:39:09 UTC
  • mfrom: (575.1.2 devel)
  • Revision ID: brian@tangent.org-20081104153909-c72hn65udxs1ccal
Merge of Monty's work

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_CPPFLAGS}
 
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
                  ceiling.cc \
 
31
                  connection_id.cc \
 
32
                  coercibility.cc \
 
33
                  cos.cc \
 
34
                  decimal_typecast.cc \
 
35
                  divide.cc \
 
36
                  exp.cc \
 
37
                  get_user_var.cc \
 
38
                  get_variable.cc \
 
39
                  field.cc \
 
40
                  find_in_set.cc \
 
41
                  floor.cc \
 
42
                  found_rows.cc \
 
43
                  func.cc \
 
44
                  get_system_var.cc \
 
45
                  get_variable.cc \
 
46
                  int.cc \
 
47
                  integer.cc \
 
48
                  int_divide.cc \
 
49
                  int_val.cc \
 
50
                  last_insert.cc \
 
51
                  length.cc \
 
52
                  ln.cc \
 
53
                  locate.cc \
 
54
                  lock.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
 
 
84
noinst_HEADERS = abs.h \
 
85
                 acos.h \
 
86
                 ascii.h \
 
87
                 asin.h \
 
88
                 atan.h \
 
89
                 additive_op.h \
 
90
                 benchmark.h \
 
91
                 bit.h \
 
92
                 bit_count.h \
 
93
                 bit_length.h \
 
94
                 ceiling.h \
 
95
                 char_length.h \
 
96
                 coercibility.h \
 
97
                 connection_id.h \
 
98
                 cos.h \
 
99
                 dec.h \
 
100
                 decimal_typecast.h \
 
101
                 divide.h \
 
102
                 exp.h \
 
103
                 field.h \
 
104
                 find_in_set.h \
 
105
                 floor.h \
 
106
                 found_rows.h \
 
107
                 func.h \
 
108
                 get_system_var.h \
 
109
                 get_user_var.h \
 
110
                 int.h \
 
111
                 integer.h \
 
112
                 int_divide.h \
 
113
                 int_val.h \
 
114
                 last_insert.h \
 
115
                 length.h \
 
116
                 ln.h \
 
117
                 locate.h \
 
118
                 lock.h \
 
119
                 log.h \
 
120
                 master_pos_wait.h \
 
121
                 min_max.h \
 
122
                 minus.h \
 
123
                 mod.h \
 
124
                 multiply.h \
 
125
                 neg.h \
 
126
                 num1.h \
 
127
                 numhybrid.h \
 
128
                 num_op.h \
 
129
                 ord.h \
 
130
                 plus.h \
 
131
                 pow.h \
 
132
                 real.h \
 
133
                 rollup_const.h \
 
134
                 round.h \
 
135
                 row_count.h \
 
136
                 set_user_var.h \
 
137
                 sign.h \
 
138
                 signed.h \
 
139
                 sin.h \
 
140
                 sqrt.h \
 
141
                 tan.h \
 
142
                 unsigned.h \
 
143
                 user_var_as_out_param.h
 
144
        
 
145
 
 
146
DEFS= -DDRIZZLE_SERVER @DEFS@