Distribute all lib/* source files through EXTRA_DIST.
[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_.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 stat-macros
19 stdbool
20 strdup
21 unistd
22
23 configure.ac:
24 gl_GLOB
25
26 Makefile.am:
27 BUILT_SOURCES += $(GLOB_H)
28 EXTRA_DIST += glob_.h glob-libc.h glob.c
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_.h
33         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
34           cat $(srcdir)/glob_.h; \
35         } > $@-t
36         mv -f $@-t $@
37 MOSTLYCLEANFILES += glob.h glob.h-t
38
39 Include:
40 <glob.h>
41
42 License:
43 LGPL
44
45 Maintainer:
46 all, glibc