~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/time/Makefile.am

Tags: innodb-plugin-1.0.1
Imported 1.0.1 with clean - with no changes.

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 =    libtimefunc.la
 
17
 
 
18
AM_CPPFLAGS = ${GLOBAL_CPPFLAGS} ${PROTOBUF_CFLAGS}
 
19
 
 
20
libtimefunc_la_SOURCES = \
 
21
                add_time.cc \
 
22
                curdate.cc \
 
23
                curtime.cc \
 
24
                date.cc \
 
25
                date_add_interval.cc \
 
26
                date_format.cc \
 
27
                dayname.cc \
 
28
                dayofmonth.cc \
 
29
                extract.cc \
 
30
                dayofyear.cc \
 
31
                from_days.cc \
 
32
                from_unixtime.cc \
 
33
                get_format.cc \
 
34
                get_interval_value.cc \
 
35
                hour.cc \
 
36
                last_day.cc \
 
37
                makedate.cc \
 
38
                make_datetime_with_warn.cc \
 
39
                make_datetime.cc \
 
40
                maketime.cc \
 
41
                make_time_with_warn.cc \
 
42
                microsecond.cc \
 
43
                minute.cc \
 
44
                month.cc \
 
45
                now.cc \
 
46
                quarter.cc \
 
47
                period_add.cc \
 
48
                period_diff.cc \
 
49
                sec_to_time.cc \
 
50
                second.cc \
 
51
                str_to_date.cc \
 
52
                sysdate_local.cc \
 
53
                timediff.cc \
 
54
                timestamp_diff.cc \
 
55
                time_to_sec.cc \
 
56
                to_days.cc \
 
57
                typecast.cc \
 
58
                unix_timestamp.cc \
 
59
                week.cc \
 
60
                week_mode.cc \
 
61
                weekday.cc \
 
62
                year.cc \
 
63
                yearweek.cc
 
64
 
 
65
functionsincludedir = ${includedir}/drizzled/functions/time
 
66
nobase_dist_functionsinclude_HEADERS = \
 
67
                add_time.h \
 
68
                curdate.h \
 
69
                curtime.h \
 
70
                date.h \
 
71
                date_add_interval.h \
 
72
                date_format.h \
 
73
                dayname.h \
 
74
                dayofmonth.h \
 
75
                dayofyear.h \
 
76
                extract.h \
 
77
                from_days.h \
 
78
                from_unixtime.h \
 
79
                get_format.h \
 
80
                get_interval_value.h \
 
81
                hour.h \
 
82
                last_day.h \
 
83
                makedate.h \
 
84
                make_datetime_with_warn.h \
 
85
                make_datetime.h \
 
86
                maketime.h \
 
87
                make_time_with_warn.h \
 
88
                microsecond.h \
 
89
                minute.h \
 
90
                month.h \
 
91
                now.h \
 
92
                quarter.h \
 
93
                period_add.h \
 
94
                period_diff.h \
 
95
                sec_to_time.h \
 
96
                second.h \
 
97
                str_to_date.h \
 
98
                sysdate_local.h \
 
99
                str_timefunc.h \
 
100
                timediff.h \
 
101
                timestamp_diff.h \
 
102
                time_to_sec.h \
 
103
                to_days.h \
 
104
                typecast.h \
 
105
                unix_timestamp.h \
 
106
                week.h \
 
107
                week_mode.h \
 
108
                weekday.h \
 
109
                year.h  \
 
110
                yearweek.h
 
111
 
 
112
DEFS= -DDRIZZLE_SERVER @DEFS@