verify: new macro 'assume'
[gnulib.git] / modules / parse-datetime
1 Description:
2 Convert a date/time string to linear time.
3
4 Files:
5 doc/parse-datetime.texi
6 lib/parse-datetime.h
7 lib/parse-datetime.y
8 m4/bison.m4
9 m4/tm_gmtoff.m4
10 m4/parse-datetime.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_PARSE_DATETIME
26
27 Makefile.am:
28 # This rule overrides the Automake generated .y.c rule, to ensure that the
29 # parse-datetime.c file gets generated in the source directory, not in the
30 # build directory.
31 parse-datetime.c: parse-datetime.y
32         $(AM_V_GEN)$(SHELL) $(YLWRAP) $(srcdir)/parse-datetime.y \
33                                       y.tab.c parse-datetime.c \
34                                       y.tab.h parse-datetime.h \
35                                       y.output parse-datetime.output \
36                                       -- $(YACC) $(YFLAGS) $(AM_YFLAGS) && \
37         mv parse-datetime.c parse-datetime.c-t && \
38         mv parse-datetime.c-t $(srcdir)/parse-datetime.c
39 lib_SOURCES += parse-datetime.y
40 BUILT_SOURCES += parse-datetime.c
41 MOSTLYCLEANFILES += parse-datetime.c-t
42 MAINTAINERCLEANFILES += parse-datetime.c
43 EXTRA_DIST += parse-datetime.c
44
45 Include:
46 "parse-datetime.h"
47
48 License:
49 GPL
50
51 Maintainer:
52 Paul Eggert