blob: 89a15bc4a8489476f32ec36e749d12dac1f18c15 [file] [log] [blame]
Joey Armstrong6b58fd42023-04-12 17:45:53 -04001# -*- 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## -----------------------------------------------------------------------
39include $(MAKEDIR)/lint/doc8/excl.mk
40lint-doc8-excl := $(addprefix --ignore-path$(space),$(lint-doc8-excl-raw))
41
42lint-doc8-args += --max-line-length 120
43
44lint-doc8: $(venv-activate-script)
45 @echo
46 @echo '** -----------------------------------------------------------------------'
47 @echo '** doc8 *.rst syntax checking'
48 @echo '** -----------------------------------------------------------------------'
49 $(activate) && doc8 --version
50 @echo
51 $(activate) && doc8 $(lint-doc8-excl) $(lint-doc8-args) .
52
53## -----------------------------------------------------------------------
54## Intent: Display command usage
55## -----------------------------------------------------------------------
56help::
57 @echo ' lint-doc8 Syntax check python using the doc8 command'
58 ifdef VERBOSE
59 @echo ' lint-doc8-all doc8 checking: exhaustive'
60 @echo ' lint-doc8-modified doc8 checking: only modified'
61 endif
62
63# [EOF]