mirror of
https://https.git.savannah.gnu.org/git/findutils.git
synced 2026-01-26 15:39:06 +00:00
* configure.ac (PACKAGE_BUGREPORT_URL): Define this macro to point to the findutils bug-reporting web page. * lib/bugreports.c: New file, defining the function explain_how_to_report_bugs which explains how to report bugs. Use the new PACKAGE_BUGREPORT_URL macro. * lib/bugreports.h: New file, providing a declaration of explain_how_to_report_bugs. * lib/Makefile.am (libfind_a_SOURCES): Add bugreports.c and bugreports.h. * find/parser.c (parse_help): Call explain_how_to_report_bugs instead of printing an explanation here. * xargs/xargs.c (usage): Likewise. * locate/locate.c (usage): Likewise. * locate/code.c (usage): Likewise. * locate/frcode.c (usage): Likewise. * locate/updatedb.sh (usage): Produce a similar message by including it in the usage text itself.
72 lines
1.5 KiB
Makefile
72 lines
1.5 KiB
Makefile
## Process this file with automake to produce Makefile.in.
|
|
|
|
AUTOMAKE_OPTIONS = 1.5 gnits
|
|
# no-dependencies
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
|
|
|
noinst_LIBRARIES = libfind.a
|
|
|
|
check_PROGRAMS = regexprops test_splitstring
|
|
check_SCRIPTS = check-regexprops
|
|
regexprops_SOURCES = regexprops.c regextype.c
|
|
|
|
TESTS =
|
|
if CROSS_COMPILING
|
|
# The regexprops program needs to be a native executable, so we
|
|
# can't build it with a cross-compiler.
|
|
else
|
|
TESTS += check-regexprops test_splitstring
|
|
endif
|
|
|
|
libfind_a_SOURCES = \
|
|
buildcmd.c \
|
|
buildcmd.h \
|
|
dircallback.c \
|
|
dircallback.h \
|
|
extendbuf.c \
|
|
extendbuf.h \
|
|
fdleak.c \
|
|
fdleak.h \
|
|
findutils-version.c \
|
|
findutils-version.h \
|
|
listfile.c \
|
|
listfile.h \
|
|
printquoted.c \
|
|
printquoted.h \
|
|
qmark.c \
|
|
regextype.c \
|
|
regextype.h \
|
|
safe-atoi.c \
|
|
safe-atoi.h \
|
|
splitstring.c \
|
|
splitstring.h \
|
|
bugreports.c \
|
|
bugreports.h
|
|
|
|
EXTRA_DIST = unused-result.h check-regexprops.sh
|
|
SUFFIXES =
|
|
MOSTLYCLEANFILES =
|
|
DISTCLEANFILES =
|
|
MAINTAINERCLEANFILES =
|
|
|
|
|
|
AM_CPPFLAGS = -I../gl/lib -I$(top_srcdir)/gl/lib
|
|
LDADD = ../gl/lib/libgnulib.a $(LIBINTL)
|
|
|
|
CLEANFILES = check-regexprops
|
|
|
|
# Clean coverage files generated by running binaries built with
|
|
# gcc -fprofile-arcs -ftest-coverage
|
|
coverage-clean:
|
|
$(RM) *.gcno *.gcda *.gcov *.lcov
|
|
|
|
clean-local: coverage-clean
|
|
|
|
TESTS_ENVIRONMENT = REGEXPROPS=regexprops$(EXEEXT)
|
|
|
|
check-regexprops: check-regexprops.sh
|
|
cp $(srcdir)/check-regexprops.sh check-regexprops
|
|
chmod +x check-regexprops
|
|
|
|
test_splitstring_SOURCES = test_splitstring.c splitstring.c
|