~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/Makefile.am

code clean move Item_func_abs, Item_func_int_exp, Item_func_ln, Item_func_log to functions directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
noinst_LTLIBRARIES =    libfunctions.la
19
19
 
20
 
libfunctions_la_SOURCES = additive_op.cc \
 
20
libfunctions_la_SOURCES = abs.cc \
 
21
                          additive_op.cc \
21
22
                          connection_id.cc \
22
23
                          decimal_typecast.cc \
23
24
                          divide.cc \
 
25
                          exp.cc \
24
26
                          func.cc \
25
27
                          int.cc \
26
28
                          int_divide.cc \
 
29
                          ln.cc \
 
30
                          log.cc \
27
31
                          minus.cc \
28
32
                          mod.cc \
29
33
                          multiply.cc \
36
40
                          signed.cc \
37
41
                          unsigned.cc
38
42
 
39
 
noinst_HEADERS = additive_op.h \
 
43
noinst_HEADERS = abs.h \
 
44
                 additive_op.h \
40
45
                 connection_id.h \
 
46
                 dec.h \
41
47
                 decimal_typecast.h \
42
48
                 divide.h \
 
49
                 exp.h \
43
50
                 func.h \
44
51
                 int.h \
45
52
                 int_divide.h \
 
53
                 ln.h \
 
54
                 log.h \
46
55
                 minus.h \
47
56
                 mod.h \
48
57
                 multiply.h \