* MODULES.html.sh: New module wctype.
[gnulib.git] / modules / fnmatch
1 Description:
2 GNU fnmatch() implementation.
3
4 Files:
5 lib/fnmatch_.h
6 lib/fnmatch.c
7 lib/fnmatch_loop.c
8 m4/mbstate_t.m4
9 m4/fnmatch.m4
10
11 Depends-on:
12 alloca
13 stdbool
14 wctype
15
16 configure.ac:
17 # No macro. You should also use one of fnmatch-posix or fnmatch-gnu.
18
19 Makefile.am:
20 BUILT_SOURCES += $(FNMATCH_H)
21
22 # We need the following in order to create <fnmatch.h> when the system
23 # doesn't have one that supports the required API.
24 fnmatch.h: fnmatch_.h
25         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
26           cat $(srcdir)/fnmatch_.h; \
27         } > $@-t
28         mv -f $@-t $@
29 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
30
31 Include:
32 <fnmatch.h>
33
34 License:
35 LGPL
36
37 Maintainer:
38 all, glibc