Blame man/Makefile

Packit Service 3880ab
# SPDX-License-Identifier: GPL-2.0
Packit Service 3880ab
INSTALL=install
Packit Service 3880ab
INSTALLDIR=install -m 0755 -d
Packit Service 3880ab
INSTALLMAN=install -m 0644
Packit Service 3880ab
# Pass the same parameters as Lintian uses on Debian.
Packit Service 3880ab
MAN_CHECK=LC_ALL=en_US.UTF-8 MANROFFSEQ='' MANWIDTH=80 man --warnings \
Packit Service 3880ab
	--encoding=UTF-8 --local-file --troff-device=utf8 --ditroff
Packit Service 3880ab
# Hide man output, count and print errors.
Packit Service 3880ab
MAN_REDIRECT=2>&1 >/dev/null | tee /dev/fd/2 | wc -l
Packit Service 3880ab
Packit Service 3880ab
SUBDIRS = man3 man7 man8
Packit Service 3880ab
Packit Service 3880ab
all clean install check:
Packit Service 3880ab
	@for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir $@ || exit $$?; done
Packit Service 3880ab
Packit Service 3880ab
distclean: clean
Packit Service 3880ab
Packit Service 3880ab
.PHONY: install clean distclean check
Packit Service 3880ab
Packit Service 3880ab
.EXPORT_ALL_VARIABLES: