From 84fd4c773bfadac5884483a7ddff60c6bedd1dff Mon Sep 17 00:00:00 2001 From: Mara Mihali Date: Fri, 25 Jun 2021 08:27:34 +0000 Subject: Makefile: add make commands for syz-runner and syz-verifier --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 5cd4fd370..1431efa0c 100644 --- a/Makefile +++ b/Makefile @@ -208,6 +208,12 @@ kconf: bisect: descriptions GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-bisect github.com/google/syzkaller/tools/syz-bisect +verifier: descriptions + GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-verifier github.com/google/syzkaller/syz-verifier + +runner: descriptions + GOOS=$(TARGETGOOS) GOARCH=$(TARGETGOARCH) $(GO) build $(GOTARGETFLAGS) -o ./bin/$(TARGETOS)_$(TARGETVMARCH)/syz-runner$(EXE) github.com/google/syzkaller/syz-runner + # `extract` extracts const files from various kernel sources, and may only # re-generate parts of files. extract: bin/syz-extract -- cgit mrf-deployment