blob: 98d48ed54ff7d21417c9dfcb5535f9a73898a458 [file] [log] [blame]
Joey Armstrong6b58fd42023-04-12 17:45:53 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
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$(if $(DEBUG),$(warning ENTER))
19
20##-------------------##
21##---] GLOBALS [---##
22##-------------------##
23.PHONY: lint-pylint lint-pylint-all lint-pylint-modified
24
25PYTHON_FILES ?= $(error PYTHON_FILES= required)
26
27## -----------------------------------------------------------------------
28## Intent: Use the pylint command to perform syntax checking.
29## o If UNSTABLE=1 syntax check all sources
30## o else only check sources modified by the developer.
31## Usage:
32## % make lint UNSTABLE=1
33## % make lint-pylint-all
34## -----------------------------------------------------------------------
35ifndef NO-LINT-PYLINT
36 lint-pylint-mode := $(if $(have-python-files),modified,all)
37 lint : lint-pylint-$(lint-pylint-mode)
38endif# NO-LINT-PYLINT
39
40## -----------------------------------------------------------------------
41## Intent: exhaustive pylint syntax checking
42## -----------------------------------------------------------------------
43pylint-find-args := $(null)
44pylint-find-args += -name '$(venv-name)'
45pylint-find-args += -o -name 'patches'
46lint-pylint-all: $(venv-activate-script)
47 $(MAKE) --no-print-directory lint-pylint-install
48
49 $(activate)\
50 && find . \( $(pylint-find-args) \) -prune -o -name '*.py' -print0 \
51 | $(xargs-n1) pylint
52
53## -----------------------------------------------------------------------
54## Intent: check deps for format and python3 cleanliness
55## Note:
56## pylint --py3k option no longer supported
57## -----------------------------------------------------------------------
58lint-pylint-modified: $(venv-activate-script)
59 $(MAKE) --no-print-directory lint-pylint-install
60
61 $(activate) && pylint $(PYTHON_FILES)
62
63## -----------------------------------------------------------------------
64## Intent:
65## -----------------------------------------------------------------------
66.PHONY: lint-pylint-install
67lint-pylint-install: $(venv-activate-script)
68 @echo
69 @echo "** -----------------------------------------------------------------------"
70 @echo "** python pylint syntax checking"
71 @echo "** -----------------------------------------------------------------------"
72 $(activate) && pip install --upgrade pylint
73 $(activate) && pylint --version
74 @echo
75
76## -----------------------------------------------------------------------
77## Intent: Display command usage
78## -----------------------------------------------------------------------
79help::
80 @echo ' lint-pylint Syntax check python using the pylint command'
81
82help-verbose += help-lint-pylint-verbose
83help-lint-pylint-verbose:
84 @echo
85 @echo ' $(MAKE) lint-pylint PYTHON_FILES=...'
86 @echo ' lint-pylint-modified pylint checking: only modified'
87 @echo ' lint-pylint-all pylint checking: exhaustive'
88
89$(if $(DEBUG),$(warning LEAVE))
90
91# [EOF]