summaryrefslogtreecommitdiffstats
path: root/share/mk/check/catman/grep.mk
blob: fbf99bcdf5545dc1b988a2466b4b20f233ac1288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 2021-2024, Alejandro Colomar <alx@kernel.org>
# SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception


ifndef MAKEFILE_CHECK_CATMAN_GREP_INCLUDED
MAKEFILE_CHECK_CATMAN_GREP_INCLUDED := 1


include $(MAKEFILEDIR)/build/_.mk
include $(MAKEFILEDIR)/configure/build-depends/coreutils.mk
include $(MAKEFILEDIR)/configure/build-depends/grep.mk
include $(MAKEFILEDIR)/configure/build-depends/man.mk
include $(MAKEFILEDIR)/configure/xfail.mk


_XFAIL_CHECK_catman := \
	$(_MANDIR)/man1/memusage.1.check-catman.touch \
	$(_MANDIR)/man3/mallopt.3.check-catman.touch \
	$(_MANDIR)/man4/smartpqi.4.check-catman.touch \
	$(_MANDIR)/man4/veth.4.check-catman.touch \
	$(_MANDIR)/man5/proc_buddyinfo.5.check-catman.touch \
	$(_MANDIR)/man5/proc_pid_fdinfo.5.check-catman.touch \
	$(_MANDIR)/man5/proc_pid_maps.5.check-catman.touch \
	$(_MANDIR)/man5/proc_pid_mountinfo.5.check-catman.touch \
	$(_MANDIR)/man5/proc_pid_net.5.check-catman.touch \
	$(_MANDIR)/man5/proc_timer_stats.5.check-catman.touch \
	$(_MANDIR)/man5/proc_version.5.check-catman.touch \
	$(_MANDIR)/man5/slabinfo.5.check-catman.touch \
	$(_MANDIR)/man7/keyrings.7.check-catman.touch \
	$(_MANDIR)/man7/string_copying.7.check-catman.touch \
	$(_MANDIR)/man7/uri.7.check-catman.touch


_CHECK_catman := $(patsubst %.cat.grep,%.check-catman.touch,$(_CHECK_catman_grep))
ifeq ($(SKIP_XFAIL),yes)
_CHECK_catman := $(filter-out $(_XFAIL_CHECK_catman), $(_CHECK_catman))
endif


$(_CHECK_catman): %.check-catman.touch: %.cat.grep $(MK) | $$(@D)/
	$(info	$(INFO_)GREP		$@)
	! $(GREP) -n '.\{$(MANWIDTH)\}.' $< /dev/null >&2
	$(TOUCH) $@


.PHONY: check-catman-grep
check-catman-grep: $(_CHECK_catman);


endif  # include guard