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