~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/Makefile.am

code clean move Item_func_ceiling, Item_func_cos, Item_func_sin, Item_func_tan, Item_func_int_val to functions directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
                          asin.cc \
23
23
                          atan.cc \
24
24
                          additive_op.cc \
 
25
                          ceiling.cc \
25
26
                          connection_id.cc \
 
27
                          cos.cc \
26
28
                          decimal_typecast.cc \
27
29
                          divide.cc \
28
30
                          exp.cc \
29
31
                          func.cc \
30
32
                          int.cc \
31
33
                          int_divide.cc \
 
34
                          int_val.cc \
32
35
                          ln.cc \
33
36
                          log.cc \
34
37
                          minus.cc \
42
45
                          pow.cc \
43
46
                          real.cc \
44
47
                          signed.cc \
 
48
                          sin.cc \
45
49
                          sqrt.cc \
 
50
                          tan.cc \
46
51
                          unsigned.cc
47
52
 
48
53
noinst_HEADERS = abs.h \
50
55
                 asin.h \
51
56
                 atan.h \
52
57
                 additive_op.h \
 
58
                 ceiling.h \
53
59
                 connection_id.h \
 
60
                 cos.h \
54
61
                 dec.h \
55
62
                 decimal_typecast.h \
56
63
                 divide.h \
58
65
                 func.h \
59
66
                 int.h \
60
67
                 int_divide.h \
 
68
                 int_val.h \
61
69
                 ln.h \
62
70
                 log.h \
63
71
                 minus.h \
71
79
                 pow.h \
72
80
                 real.h \
73
81
                 signed.h \
 
82
                 sin.h \
74
83
                 sqrt.h \
 
84
                 tan.h \
75
85
                 unsigned.h
76
86
        
77
87