File: Makefile

package info (click to toggle)
pmdk 1.10-2%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 29,428 kB
  • sloc: ansic: 128,672; sh: 27,065; cpp: 10,073; python: 4,254; makefile: 3,475; pascal: 1,465; perl: 1,378
file content (12 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2016-2020, Intel Corporation

rwildcard=$(strip $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2)\
	$(filter $(subst *,%,$2),$d)))

SCRIPTS = $(call rwildcard,,*.sh)

cstyle:
	./check-shebang.sh $(SCRIPTS)

.PHONY: cstyle