summaryrefslogtreecommitdiff
path: root/Make.scan-build
diff options
context:
space:
mode:
authorSteve McIntyre <steve@einval.com>2021-03-23 23:49:46 +0000
committerSteve McIntyre <steve@einval.com>2021-03-23 23:49:46 +0000
commit031e5cce385d3f96b1caa1d53495332a7eb03749 (patch)
treeb4988dfbd191b2242b9294e24075b39a608b1155 /Make.scan-build
parent7bf7a6d0852382bb645119b18df3ff461aaba247 (diff)
downloadefi-boot-shim-upstream/15.3.tar.gz
efi-boot-shim-upstream/15.3.zip
New upstream version 15.3upstream/15.3
Diffstat (limited to 'Make.scan-build')
-rw-r--r--Make.scan-build20
1 files changed, 0 insertions, 20 deletions
diff --git a/Make.scan-build b/Make.scan-build
deleted file mode 100644
index 4177906e..00000000
--- a/Make.scan-build
+++ /dev/null
@@ -1,20 +0,0 @@
-SCAN_BUILD ?= $(shell x=$$(which --skip-alias --skip-functions scan-build 2>/dev/null) ; [ -n "$$x" ] && echo 1)
-ifeq ($(SCAN_BUILD),)
- SCAN_BUILD_ERROR = $(error scan-build not found)
-endif
-
-scan-test : ; $(SCAN_BUILD_ERROR)
-
-scan-clean :
- @if [[ -d scan-results ]]; then rm -rf scan-results && echo "removed 'scan-results'"; fi
-
-scan-build : | scan-test
-scan-build : clean-shim-objs
- make $(DASHJ) Cryptlib/OpenSSL/libopenssl.a Cryptlib/libcryptlib.a
- scan-build -o scan-results make $(DASHJ) CC=clang all
-
-scan-build-all : | scan-test
-scan-build-all : clean
- scan-build -o scan-results make $(DASHJ) CC=clang all
-
-.PHONY : scan-build scan-clean