libposix: Add _HEADERS primaries to posix modules.
[gnulib.git] / modules / argz
1 Description:
2 Argv style string arrays in a single null delimited char*.
3
4 Files:
5 lib/argz.in.h
6 lib/argz.c
7 m4/argz.m4
8
9 Depends-on:
10 memmove
11 mempcpy
12 stpcpy
13 strndup
14 strnlen
15 strstr
16
17 configure.ac:
18 gl_FUNC_ARGZ
19
20 Makefile.am:
21 nodist_pkginclude_HEADERS += $(ARGZ_H)
22 EXTRA_HEADERS += argz.h
23
24 BUILT_SOURCES += $(ARGZ_H)
25
26 # We need the following in order to create <argz.h> when the system
27 # doesn't have one that works with the given compiler.
28 argz.h: argz.in.h
29         $(AM_V_GEN)rm -f $@-t $@ && \
30         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
31           cat $(srcdir)/argz.in.h; \
32         } > $@-t && \
33         mv -f $@-t $@
34 MOSTLYCLEANFILES += argz.h argz.h-t
35
36 Include:
37 <argz.h>
38
39 License:
40 LGPLv2+
41
42 Maintainer:
43 all