libposix: Add _HEADERS primaries to posix modules.
[gnulib.git] / modules / stdbool
1 Description:
2 An <stdbool.h> that nearly conforms to C99.
3 (Nearly: casts to bool may not work.)
4
5 Files:
6 lib/stdbool.in.h
7 m4/stdbool.m4
8
9 Depends-on:
10
11 configure.ac:
12 AM_STDBOOL_H
13
14 Makefile.am:
15 nodist_pkginclude_HEADERS += $(STDBOOL_H)
16 EXTRA_HEADERS += stdbool.h
17
18 BUILT_SOURCES += $(STDBOOL_H)
19
20 # We need the following in order to create <stdbool.h> when the system
21 # doesn't have one that works.
22 stdbool.h: stdbool.in.h
23         $(AM_V_GEN)rm -f $@-t $@ && \
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \
26         } > $@-t && \
27         mv $@-t $@
28 MOSTLYCLEANFILES += stdbool.h stdbool.h-t
29
30 Include:
31 <stdbool.h>
32
33 License:
34 LGPLv2+
35
36 Maintainer:
37 Bruno Haible