MAINTAINERS: Add self (Angel) to Prodrive Hermes board
[coreboot.git] / util / lint / lint-stable-030-makefile-inc
bloba586bea91fe8fb6c4fa1c92da5ac23816f676e68
1 #!/usr/bin/env sh
2 # SPDX-License-Identifier: GPL-2.0-or-later
4 # DESCR: Verify that Makefiles are not named Makefile.inc
7 LINTDIR="$(
8 cd -- "$(dirname "$0")" > /dev/null 2>&1 || return
9 pwd -P
12 # shellcheck source=helper_functions.sh
13 . "${LINTDIR}/helper_functions.sh"
15 # Exit if the code isn't in a git repo
16 if [ "${IN_GIT_TREE}" -eq 0 ]; then
17 exit 0
20 MAKELIST="$(${FIND_FILES} | grep Makefile.inc)"
21 if [ -n "${MAKELIST}" ]; then
22 echo "Error: Makefiles should be Makefile.mk not Makefile.inc"
23 echo "${MAKELIST}"