blob: 9d93bd3809d94adad3e39ff9b3c74517c4511eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
########################################################################
# Copyright 2021-2023, Alejandro Colomar <alx@kernel.org>
# SPDX-License-Identifier: GPL-3.0-or-later
########################################################################
ifndef MAKEFILE_LINT_INCLUDED
MAKEFILE_LINT_INCLUDED := 1
lint := lint-c lint-man lint-mdoc
.PHONY: lint
lint: $(lint);
endif # include guard
|