More renaming from 'getdate' to 'get_date'.
[gnulib.git] / modules / get_date
1 Description:
2 Convert a date/time string to linear time.
3
4 Files:
5 doc/get_date.texi
6 lib/getdate.h
7 lib/get_date.y
8 m4/bison.m4
9 m4/tm_gmtoff.m4
10 m4/get_date.m4
11
12 Depends-on:
13 c-ctype
14 stdbool
15 gettime
16 intprops
17 mktime
18 setenv
19 unsetenv
20 time
21 verify
22 xalloc
23
24 configure.ac:
25 gl_GET_DATE
26
27 Makefile.am:
28 # This rule overrides the Automake generated .y.c rule, to ensure that the
29 # get_date.c file gets generated in the source directory, not in the build
30 # directory.
31 get_date.c: get_date.y
32         $(AM_V_GEN)$(SHELL) $(YLWRAP) $(srcdir)/get_date.y \
33                                       y.tab.c get_date.c \
34                                       y.tab.h getdate.h \
35                                       y.output get_date.output \
36                                       -- $(YACC) $(YFLAGS) $(AM_YFLAGS) && \
37         mv get_date.c get_date.c-t && \
38         mv get_date.c-t $(srcdir)/get_date.c
39 lib_SOURCES += get_date.y
40 BUILT_SOURCES += get_date.c
41 MOSTLYCLEANFILES += get_date.c-t
42 MAINTAINERCLEANFILES += get_date.c
43 EXTRA_DIST += get_date.c
44
45 Include:
46 "getdate.h"
47
48 License:
49 GPL
50
51 Maintainer:
52 Paul Eggert