mirror of
https://github.com/mirror/make.git
synced 2025-01-19 16:50:19 +08:00
45 lines
864 B
Plaintext
45 lines
864 B
Plaintext
|
Description:
|
||
|
GNU make version of fnmatch()/glob() functions. This is a holdover from
|
||
|
a very old version of the globbing library.
|
||
|
|
||
|
Makefile.am:
|
||
|
if !USE_SYSTEM_GLOB
|
||
|
libgnu_a_SOURCES += fnmatch.c
|
||
|
|
||
|
BUILT_SOURCES += fnmatch.h
|
||
|
|
||
|
fnmatch.h: fnmatch.in.h $(top_builddir)/config.status
|
||
|
$(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
|
||
|
|
||
|
libgnu_a_SOURCES += glob.c
|
||
|
|
||
|
BUILT_SOURCES += glob.h
|
||
|
|
||
|
glob.h: glob.in.h $(top_builddir)/config.status
|
||
|
$(AM_V_GEN)rm -f $@-t $@ && \
|
||
|
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
|
||
|
cat $(srcdir)/glob.in.h; \
|
||
|
} > $@-t && \
|
||
|
mv -f $@-t $@
|
||
|
|
||
|
MOSTLYCLEANFILES += glob.h glob.h-t
|
||
|
endif
|
||
|
|
||
|
EXTRA_DIST += fnmatch.in.h glob.in.h
|
||
|
|
||
|
|
||
|
Include:
|
||
|
<glob.h>
|
||
|
|
||
|
License:
|
||
|
LGPLv2+
|
||
|
|
||
|
Maintainer:
|
||
|
all, glibc
|