mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-09-02 15:41:25 +03:00
This makes it so packages using automake-1.11's silent-rules option can print e.g., a single "GEN configmake.h" line, rather than the 30+ statements that perform the job. If you want to see the actual commands, you can still run "make V=1". Improved-by: Bruno Haible <bruno@clisp.org> * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes so that make output is abbreviated when those variables are defined appropriately. * modules/argz: Likewise. * modules/arpa_inet: Likewise. * modules/byteswap: Likewise. * modules/configmake: Likewise. * modules/dirent: Likewise. * modules/errno: Likewise. * modules/fcntl: Likewise. * modules/float: Likewise. * modules/fnmatch: Likewise. * modules/getopt-posix: Likewise. * modules/glob: Likewise. * modules/iconv_open: Likewise. * modules/inttypes: Likewise. * modules/localcharset: Likewise. * modules/locale: Likewise. * modules/math: Likewise. * modules/netdb: Likewise. * modules/netinet_in: Likewise. * modules/poll: Likewise. * modules/posix_spawnp-tests: Likewise. * modules/sched: Likewise. * modules/search: Likewise. * modules/selinux-h: Likewise. * modules/signal: Likewise. * modules/spawn: Likewise. * modules/stdarg: Likewise. * modules/stdbool: Likewise. * modules/stddef: Likewise. * modules/stdint: Likewise. * modules/stdio: Likewise. * modules/stdlib: Likewise. * modules/string: Likewise. * modules/strings: Likewise. * modules/sys_file: Likewise. * modules/sys_ioctl: Likewise. * modules/sys_select: Likewise. * modules/sys_socket: Likewise. * modules/sys_stat: Likewise. * modules/sys_time: Likewise. * modules/sys_times: Likewise. * modules/sys_utsname: Likewise. * modules/sys_wait: Likewise. * modules/sysexits: Likewise. * modules/time: Likewise. * modules/unistd: Likewise. * modules/wchar: Likewise. * modules/wctype: Likewise.
46 lines
709 B
Plaintext
46 lines
709 B
Plaintext
Description:
|
|
fnmatch() function: wildcard matching.
|
|
|
|
Files:
|
|
lib/fnmatch.in.h
|
|
lib/fnmatch.c
|
|
lib/fnmatch_loop.c
|
|
m4/mbstate_t.m4
|
|
m4/fnmatch.m4
|
|
|
|
Depends-on:
|
|
extensions
|
|
alloca
|
|
stdbool
|
|
wchar
|
|
wctype
|
|
memchr
|
|
memcmp
|
|
mbsrtowcs
|
|
mbsinit
|
|
|
|
configure.ac:
|
|
gl_FUNC_FNMATCH_POSIX
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += $(FNMATCH_H)
|
|
|
|
# We need the following in order to create <fnmatch.h> when the system
|
|
# doesn't have one that supports the required API.
|
|
fnmatch.h: fnmatch.in.h
|
|
$(AM_V_GEN)rm -f $@-t $@ && \
|
|
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
|
|
cat $(srcdir)/fnmatch.in.h; \
|
|
} > $@-t && \
|
|
mv -f $@-t $@
|
|
MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
|
|
|
|
Include:
|
|
<fnmatch.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all, glibc
|