diff options
| author | Mara Mihali <maramihali@google.com> | 2021-06-25 08:27:34 +0000 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-06-30 09:35:14 +0200 |
| commit | 84fd4c773bfadac5884483a7ddff60c6bedd1dff (patch) | |
| tree | 6ca510cfb34d7abe96d909264375023722090961 /Makefile | |
| parent | db933a8151125a7da3c90276d3757713a25e6036 (diff) | |
Makefile: add make commands for syz-runner and syz-verifier
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |
