Rename glob_.h to glob.in.h.
[gnulib.git] / modules / glob
1 Description:
2 glob() function: Search for files and directories with paths matching a
3 pattern, with GNU extensions.
4
5 Files:
6 lib/glob.in.h
7 lib/glob-libc.h
8 lib/glob.c
9 m4/glob.m4
10
11 Depends-on:
12 alloca
13 d-type
14 extensions
15 fnmatch
16 getlogin_r
17 mempcpy
18 stdbool
19 strdup
20 sys_stat
21 unistd
22 malloc-posix
23
24 configure.ac:
25 gl_GLOB
26
27 Makefile.am:
28 BUILT_SOURCES += $(GLOB_H)
29
30 # We need the following in order to create <glob.h> when the system
31 # doesn't have one that works with the given compiler.
32 glob.h: glob.in.h
33         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
34           sed -e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \
35               < $(srcdir)/glob.in.h; \
36         } > $@-t
37         mv -f $@-t $@
38 MOSTLYCLEANFILES += glob.h glob.h-t
39
40 Include:
41 <glob.h>
42
43 License:
44 LGPLv2+
45
46 Maintainer:
47 all, glibc