aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMara Mihali <maramihali@google.com>2021-06-25 08:27:34 +0000
committerDmitry Vyukov <dvyukov@google.com>2021-06-30 09:35:14 +0200
commit84fd4c773bfadac5884483a7ddff60c6bedd1dff (patch)
tree6ca510cfb34d7abe96d909264375023722090961 /Makefile
parentdb933a8151125a7da3c90276d3757713a25e6036 (diff)
Makefile: add make commands for syz-runner and syz-verifier
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
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