annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
[gnulib.git] / modules / sys_wait
1 Description:
2 A <sys/wait.h> for systems with missing declarations.
3
4 Files:
5 lib/sys_wait.in.h
6 m4/sys_wait_h.m4
7
8 Depends-on:
9 include_next
10 link-warning
11
12 configure.ac:
13 gl_SYS_WAIT_H
14 AC_PROG_MKDIR_P
15
16 Makefile.am:
17 BUILT_SOURCES += $(SYS_WAIT_H)
18
19 # We need the following in order to create <sys/wait.h> when the system
20 # has one that is incomplete.
21 sys/wait.h: sys_wait.in.h
22         $(AM_V_at)@MKDIR_P@ sys
23         $(AM_V_GEN)rm -f $@-t $@ && \
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
26               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
27               -e 's|@''NEXT_SYS_WAIT_H''@|$(NEXT_SYS_WAIT_H)|g' \
28               -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \
29               < $(srcdir)/sys_wait.in.h; \
30         } > $@-t && \
31         mv $@-t $@
32 MOSTLYCLEANFILES += sys/wait.h sys/wait.h-t
33 MOSTLYCLEANDIRS += sys
34
35 Include:
36 #include <sys/wait.h>
37
38 License:
39 LGPLv2+
40
41 Maintainer:
42 Bruno Haible