mirror of
https://https.git.savannah.gnu.org/git/findutils.git
synced 2026-01-26 15:39:06 +00:00
Run 'make update-copyright'. * lib/regexprops.c (copying): Update the year number manually. * tests/sample-test: Adjust to use the single most recent year. * All other files: Update copyright years via the above make run.
93 lines
3.1 KiB
Makefile
93 lines
3.1 KiB
Makefile
# The default database to build and search.
|
|
|
|
## Copyright (C) 1996-2026 Free Software Foundation, Inc.
|
|
|
|
## This program is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation, either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
AUTOMAKE_OPTIONS = std-options
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
|
LOCATE_DB = $(localstatedir)/locatedb
|
|
localedir = $(datadir)/locale
|
|
|
|
AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = frcode$(EXEEXT)
|
|
bin_PROGRAMS = locate
|
|
libexec_PROGRAMS = frcode
|
|
bin_SCRIPTS = updatedb
|
|
man_MANS = locate.1 updatedb.1 locatedb.5
|
|
BUILT_SOURCES = dblocation.texi
|
|
EXTRA_DIST = locatedb.h updatedb.sh $(man_MANS)
|
|
CLEANFILES = updatedb
|
|
|
|
DISTCLEANFILES = dblocation.texi
|
|
locate_SOURCES = locate.c word_io.c
|
|
nodist_locate_TEXINFOS = dblocation.texi
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/lib -I../gl/lib -I$(top_srcdir)/gl/lib -DLOCATE_DB=\"$(LOCATE_DB)\" -DLOCALEDIR=\"$(localedir)\"
|
|
|
|
LDADD = ../lib/libfind.a ../gl/lib/libgnulib.a $(LIBINTL) $(SETLOCALE_NULL_LIB) $(MBRTOWC_LIB)
|
|
|
|
$(PROGRAMS) $(LIBPROGRAMS): ../lib/libfind.a ../gl/lib/libgnulib.a
|
|
|
|
# We generate updatedb from the Makefile rather than with AC_OUTPUT in
|
|
# configure.ac in order to allow the user better control of what goes
|
|
# into it by setting Makefile variables.
|
|
updatedb: updatedb.sh Makefile
|
|
rm -f $@
|
|
find=`echo find|sed '$(transform)'`; \
|
|
frcode=`echo frcode|sed '$(transform)'`; \
|
|
copyright=`sed -n '/^# Copyright /{s/^..//;p;q;}' $(srcdir)/updatedb.sh \
|
|
grep .` || exit 1; \
|
|
sed \
|
|
-e "s,@""bindir""@,$(bindir)," \
|
|
-e "s,@""libexecdir""@,$(libexecdir)," \
|
|
-e "s,@""LOCATE_DB""@,$(LOCATE_DB)," \
|
|
-e "s,@""VERSION""@,$(VERSION)," \
|
|
-e "s,@""PACKAGE_NAME""@,$(PACKAGE_NAME)," \
|
|
-e "s,@""PACKAGE_BUGREPORT""@,$(PACKAGE_BUGREPORT)," \
|
|
-e "s,@""PACKAGE_BUGREPORT_URL""@,$(PACKAGE_BUGREPORT_URL)," \
|
|
-e "s,@""PACKAGE_URL""@,$(PACKAGE_URL)," \
|
|
-e "s,@""find""@,$${find}," \
|
|
-e "s,@""frcode""@,$${frcode}," \
|
|
-e "s,@""SORT""@,$(SORT)," \
|
|
-e "s,@""SORT_SUPPORTS_Z""@,$(SORT_SUPPORTS_Z)," \
|
|
-e "s/@""COPYRIGHT""@/$${copyright}/" \
|
|
$(srcdir)/updatedb.sh > $@
|
|
chmod +x $@
|
|
|
|
install-data-hook:
|
|
$(top_srcdir)/build-aux/mkinstalldirs $(DESTDIR)$(localstatedir)
|
|
|
|
dblocation.texi:
|
|
echo '@set LOCATE_DB $(LOCATE_DB)' > $@.tmp
|
|
if test -f $@ && cmp $@.tmp $@ >/dev/null ; then \
|
|
rm $@.tmp ; \
|
|
else \
|
|
mv $@.tmp $@ ; \
|
|
fi
|
|
.PHONY: dblocation.texi
|
|
|
|
SUBDIRS = . testsuite
|
|
|
|
check-local: findutils-check-manpages
|
|
|
|
findutils-check-manpages:
|
|
env GROFF=$(GROFF) $(top_srcdir)/build-aux/man-lint.sh $(srcdir) $(man_MANS)
|
|
|
|
# Clean coverage files generated by running binaries built with
|
|
# gcc -fprofile-arcs -ftest-coverage
|
|
coverage-clean:
|
|
rm -f *.gcno *.gcda *.gcov *.lcov
|
|
|
|
clean-local: coverage-clean
|