~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/Makefile.am

  • Committer: Brian Aker
  • Date: 2008-10-15 06:16:05 UTC
  • mfrom: (511.1.3 codestyle)
  • Revision ID: brian@tangent.org-20081015061605-8bb3vss9m23dns5t
Monty merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
noinst_LTLIBRARIES =    libfunctions.la
17
17
 
18
18
libfunctions_la_SOURCES = abs.cc \
 
19
                          acos.cc \
 
20
                          asin.cc \
 
21
                          atan.cc \
19
22
                          additive_op.cc \
 
23
                          ceiling.cc \
20
24
                          connection_id.cc \
 
25
                          cos.cc \
21
26
                          decimal_typecast.cc \
22
27
                          divide.cc \
23
28
                          exp.cc \
 
29
                          floor.cc \
24
30
                          func.cc \
25
31
                          int.cc \
26
32
                          int_divide.cc \
 
33
                          int_val.cc \
 
34
                          length.cc \
27
35
                          ln.cc \
28
36
                          log.cc \
 
37
                          min_max.cc \
29
38
                          minus.cc \
30
39
                          mod.cc \
31
40
                          multiply.cc \
34
43
                          numhybrid.cc \
35
44
                          num_op.cc \
36
45
                          plus.cc \
 
46
                          pow.cc \
 
47
                          rand.cc \
37
48
                          real.cc \
 
49
                          round.cc \
 
50
                          sign.cc \
38
51
                          signed.cc \
 
52
                          sin.cc \
 
53
                          sqrt.cc \
 
54
                          tan.cc \
39
55
                          unsigned.cc
40
56
 
41
57
noinst_HEADERS = abs.h \
 
58
                 acos.h \
 
59
                 asin.h \
 
60
                 atan.h \
42
61
                 additive_op.h \
 
62
                 ceiling.h \
43
63
                 connection_id.h \
 
64
                 cos.h \
44
65
                 dec.h \
45
66
                 decimal_typecast.h \
46
67
                 divide.h \
47
68
                 exp.h \
 
69
                 floor.h \
48
70
                 func.h \
49
71
                 int.h \
50
72
                 int_divide.h \
 
73
                 int_val.h \
 
74
                 length.h \
51
75
                 ln.h \
52
76
                 log.h \
 
77
                 min_max.h \
53
78
                 minus.h \
54
79
                 mod.h \
55
80
                 multiply.h \
58
83
                 numhybrid.h \
59
84
                 num_op.h \
60
85
                 plus.h \
 
86
                 pow.h \
61
87
                 real.h \
 
88
                 round.h \
 
89
                 round.h \
 
90
                 sign.h \
62
91
                 signed.h \
 
92
                 sin.h \
 
93
                 sqrt.h \
 
94
                 tan.h \
63
95
                 unsigned.h
64
96
        
65
97