annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
[gnulib.git] / modules / sys_time
1 Description:
2 A <sys/time.h> that conforms better to POSIX.
3
4 Files:
5 lib/sys_time.in.h
6 m4/sys_time_h.m4
7
8 Depends-on:
9 include_next
10
11 configure.ac:
12 gl_HEADER_SYS_TIME_H
13 AC_PROG_MKDIR_P
14
15 Makefile.am:
16 BUILT_SOURCES += $(SYS_TIME_H)
17
18 # We need the following in order to create <sys/time.h> when the system
19 # doesn't have one that works with the given compiler.
20 sys/time.h: sys_time.in.h
21         $(AM_V_at)@MKDIR_P@ sys
22         $(AM_V_GEN)rm -f $@-t $@ && \
23         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
24           sed -e 's/@''HAVE_SYS_TIME_H''@/$(HAVE_SYS_TIME_H)/g' \
25               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
26               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
27               -e 's|@''NEXT_SYS_TIME_H''@|$(NEXT_SYS_TIME_H)|g' \
28               -e 's/@''REPLACE_GETTIMEOFDAY''@/$(REPLACE_GETTIMEOFDAY)/g' \
29               -e 's/@''HAVE_STRUCT_TIMEVAL''@/$(HAVE_STRUCT_TIMEVAL)/g' \
30               < $(srcdir)/sys_time.in.h; \
31         } > $@-t && \
32         mv $@-t $@
33 MOSTLYCLEANFILES += sys/time.h sys/time.h-t
34
35 Include:
36 #include <sys/time.h>
37
38 License:
39 LGPLv2+
40
41 Maintainer:
42 all