aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrigory Bazilevich <g.bazilevich@ispras.ru>2025-10-23 22:32:34 +0300
committerGrigory Bazilevich <g.bazilevich@ispras.ru>2026-03-12 11:30:09 +0300
commit1087ccfdd01eb9fc3d1d617dfc92c83555ce7771 (patch)
tree56ccc81e72a1c80f8b48501c69ff5287157f94fc
parenta14de05e829526775e7b5a267e991f4a95e2f876 (diff)
tools: add kcidb and hubtool targets to Makefile
Signed-off-by: Denis Efremov <efremov@ispras.ru> Signed-off-by: SVZotov <svzotov@ispras.ru>
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6338a3736..e6531d67b 100644
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,7 @@ endif
.PHONY: all clean host target \
manager executor kfuzztest ci hub agent \
execprog mutate prog2c trace2syz repro upgrade db \
- usbgen symbolize cover kconf syz-build crush \
+ usbgen symbolize cover hubtool kconf kcidb syz-build crush \
bin/syz-extract bin/syz-fmt \
extract generate generate_go generate_rpc generate_sys \
format format_go format_cpp format_sys \
@@ -213,8 +213,12 @@ symbolize:
GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-symbolize github.com/google/syzkaller/tools/syz-symbolize
cover:
GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-cover github.com/google/syzkaller/tools/syz-cover
+hubtool: descriptions
+ GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-hubtool github.com/google/syzkaller/tools/syz-hubtool
kconf:
GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-kconf github.com/google/syzkaller/tools/syz-kconf
+kcidb:
+ GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-kcidb github.com/google/syzkaller/tools/syz-kcidb
syz-build:
GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-build github.com/google/syzkaller/tools/syz-build