generate argz.c and argz.in.h from glibc sources
[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 mempcpy
11 stpcpy
12 strndup
13 strnlen
14
15 configure.ac:
16 gl_FUNC_ARGZ
17
18 Makefile.am:
19 BUILT_SOURCES += $(ARGZ_H)
20
21 # We need the following in order to create <argz.h> when the system
22 # doesn't have one that works with the given compiler.
23 argz.h: argz.in.h
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           cat $(srcdir)/argz.in.h; \
26         } > $@-t
27         mv -f $@-t $@
28 MOSTLYCLEANFILES += argz.h argz.h-t
29
30 Include:
31 <argz.h>
32
33 License:
34 LGPLv2+
35
36 Maintainer:
37 all