gnulib-tool now synthesizes the EXTRA_DIST line.
[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
15 configure.ac:
16 # No macro. You should also use one of fnmatch-posix or fnmatch-gnu.
17
18 Makefile.am:
19 BUILT_SOURCES += $(FNMATCH_H)
20
21 # We need the following in order to create <fnmatch.h> when the system
22 # doesn't have one that supports the required API.
23 fnmatch.h: fnmatch_.h
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           cat $(srcdir)/fnmatch_.h; \
26         } > $@-t
27         mv -f $@-t $@
28 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
29
30 Include:
31 <fnmatch.h>
32
33 License:
34 LGPL
35
36 Maintainer:
37 all, glibc