drm/bridge: adv7511: Switch to atomic operations
[drm/drm-misc.git] / tools / testing / selftests / bpf / Makefile.docs
blobeb6a4fea8c794d8354363ac8daa0baac3e3bd060
1 # SPDX-License-Identifier: GPL-2.0-only
3 include ../../../scripts/Makefile.include
4 include ../../../scripts/utilities.mak
6 INSTALL ?= install
7 RM ?= rm -f
8 RMDIR ?= rmdir --ignore-fail-on-non-empty
10 ifeq ($(V),1)
11   Q =
12 else
13   Q = @
14 endif
16 prefix ?= /usr/local
17 mandir ?= $(prefix)/man
18 man2dir = $(mandir)/man2
19 man7dir = $(mandir)/man7
21 SYSCALL_RST = bpf-syscall.rst
22 MAN2_RST = $(SYSCALL_RST)
24 HELPERS_RST = bpf-helpers.rst
25 MAN7_RST = $(HELPERS_RST)
27 _DOC_MAN2 = $(patsubst %.rst,%.2,$(MAN2_RST))
28 DOC_MAN2 = $(addprefix $(OUTPUT),$(_DOC_MAN2))
30 _DOC_MAN7 = $(patsubst %.rst,%.7,$(MAN7_RST))
31 DOC_MAN7 = $(addprefix $(OUTPUT),$(_DOC_MAN7))
33 DOCTARGETS := helpers syscall
35 docs: $(DOCTARGETS)
36 syscall: man2
37 helpers: man7
38 man2: $(DOC_MAN2)
39 man7: $(DOC_MAN7)
41 RST2MAN_DEP := $(shell command -v rst2man 2>/dev/null)
43 # Configure make rules for the man page bpf-$1.$2.
44 # $1 - target for scripts/bpf_doc.py
45 # $2 - man page section to generate the troff file
46 define DOCS_RULES =
47 $(OUTPUT)bpf-$1.rst: ../../../../include/uapi/linux/bpf.h
48         $$(QUIET_GEN)../../../../scripts/bpf_doc.py $1 \
49                 --filename $$< > $$@
51 $(OUTPUT)%.$2: $(OUTPUT)%.rst
52 ifndef RST2MAN_DEP
53         $$(error "rst2man not found, but required to generate man pages")
54 endif
55         $$(QUIET_GEN)rst2man --exit-status=1 $$< > $$@.tmp
56         $$(QUIET_GEN)mv $$@.tmp $$@
58 docs-clean-$1:
59         $$(call QUIET_CLEAN, eBPF_$1-manpage)
60         $(Q)$(RM) $$(DOC_MAN$2) $(OUTPUT)bpf-$1.rst
62 docs-install-$1: docs
63         $$(call QUIET_INSTALL, eBPF_$1-manpage)
64         $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$$(man$2dir)
65         $(Q)$(INSTALL) -m 644 $$(DOC_MAN$2) $(DESTDIR)$$(man$2dir)
67 docs-uninstall-$1:
68         $$(call QUIET_UNINST, eBPF_$1-manpage)
69         $(Q)$(RM) $$(addprefix $(DESTDIR)$$(man$2dir)/,$$(_DOC_MAN$2))
70         $(Q)$(RMDIR) $(DESTDIR)$$(man$2dir)
72 .PHONY: $1 docs-clean-$1 docs-install-$1 docs-uninstall-$1
73 endef
75 # Create the make targets to generate manual pages by name and section
76 $(eval $(call DOCS_RULES,helpers,7))
77 $(eval $(call DOCS_RULES,syscall,2))
79 docs-clean: $(foreach doctarget,$(DOCTARGETS), docs-clean-$(doctarget))
80 docs-install: $(foreach doctarget,$(DOCTARGETS), docs-install-$(doctarget))
81 docs-uninstall: $(foreach doctarget,$(DOCTARGETS), docs-uninstall-$(doctarget))
83 .PHONY: docs docs-clean docs-install docs-uninstall man2 man7