libposix: Add _HEADERS primaries to posix modules.
[pspp] / modules / sysexits
1 Description:
2 Exit status codes for some BSD system programs.
3
4 Files:
5 lib/sysexits.in.h
6 m4/sysexits.m4
7
8 Depends-on:
9 include_next
10
11 configure.ac:
12 gl_SYSEXITS
13
14 Makefile.am:
15 nodist_pkginclude_HEADERS += $(SYSEXITS_H)
16 EXTRA_HEADERS += sysexits.h
17
18 BUILT_SOURCES += $(SYSEXITS_H)
19
20 # We need the following in order to create <sysexits.h> when the system
21 # doesn't have one that works with the given compiler.
22 sysexits.h: sysexits.in.h
23         $(AM_V_GEN)rm -f $@-t $@ && \
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           sed -e 's|@''HAVE_SYSEXITS_H''@|$(HAVE_SYSEXITS_H)|g' \
26               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
27               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
28               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
29               -e 's|@''NEXT_SYSEXITS_H''@|$(NEXT_SYSEXITS_H)|g' \
30               < $(srcdir)/sysexits.in.h; \
31         } > $@-t && \
32         mv -f $@-t $@
33 MOSTLYCLEANFILES += sysexits.h sysexits.h-t
34
35 Include:
36 <sysexits.h>
37
38 License:
39 LGPLv2+
40
41 Maintainer:
42 Simon Josefsson