blob: 6490b89d7e3c229578e884d696338f06b1ef8bbb [file] [log] [blame]
Joey Armstrong4de98b72023-02-09 14:51:38 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2017-2022 Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# -----------------------------------------------------------------------
17
18##-------------------##
19##---] GLOBALS [---##
20##-------------------##
21.PHONY: lint-doc8 lint-doc8-all lint-doc8-modified
22
23have-rst-files := $(if $(strip $(RST_SOURCE)),true)
24RST_SOURCE ?= $(error RST_SOURCE= is required)
25
26## -----------------------------------------------------------------------
27## -----------------------------------------------------------------------
28ifndef NO-LINT-DOC8
29 lint-doc8-mode := $(if $(have-doc8-files),modified,all)
30 lint : lint-doc8-$(lint-doc8-mode)
31endif# NO-LINT-DOC8
32
33# Consistent targets across lint makefiles
34lint-doc8-all : lint-doc8
35lint-doc8-modified : lint-doc8
36
37## -----------------------------------------------------------------------
38## -----------------------------------------------------------------------
Joey Armstrong449ce7a2023-07-18 18:32:24 -040039include $(ONF_MAKEDIR)/lint/doc8/excl.mk
Joey Armstrongab04e262023-06-13 14:32:35 -040040
41ifdef lint-doc8-excl
42 lint-doc8-excl-args += $(addprefix --ignore-path$(space),$(lint-doc8-excl))
43endif
44lint-doc8-excl-args += $(addprefix --ignore-path$(space),$(lint-doc8-excl-raw))
Joey Armstrong4de98b72023-02-09 14:51:38 -050045
46lint-doc8-args += --max-line-length 120
47
48lint-doc8: $(venv-activate-script)
49 @echo
50 @echo '** -----------------------------------------------------------------------'
51 @echo '** doc8 *.rst syntax checking'
52 @echo '** -----------------------------------------------------------------------'
53 $(activate) && doc8 --version
54 @echo
Joey Armstrongab04e262023-06-13 14:32:35 -040055 $(activate) && doc8 $(lint-doc8-excl-args) $(lint-doc8-args) .
Joey Armstrong4de98b72023-02-09 14:51:38 -050056
57## -----------------------------------------------------------------------
58## Intent: Display command usage
59## -----------------------------------------------------------------------
60help::
61 @echo ' lint-doc8 Syntax check python using the doc8 command'
62 ifdef VERBOSE
63 @echo ' lint-doc8-all doc8 checking: exhaustive'
64 @echo ' lint-doc8-modified doc8 checking: only modified'
65 endif
66
67# [EOF]