aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-06-29 16:01:03 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-06-29 17:50:44 +0200
commitc5b6fcddca80153daba328334bc48caa3a546ab5 (patch)
treeffe7680d084c29bec80f912a087b155981392e79 /Makefile
parentae33f0dff59bbd493d48eabe521b33981a785271 (diff)
syz-hub: split client name and manager name
This allows to reduce number of hub clients by grouping managers and creating one client per such group.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ff948f78..9b719780b 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ ifeq ($(NOSTATIC), 0)
STATIC_FLAG=-static
endif
-.PHONY: all format tidy clean manager fuzzer executor execprog ci mutate prog2c stress extract generate repro db bin/syz-extract bin/syz-sysgen android
+.PHONY: all format tidy clean manager fuzzer executor execprog ci hub mutate prog2c stress extract generate repro db bin/syz-extract bin/syz-sysgen android
all:
go install ./syz-manager ./syz-fuzzer
@@ -39,6 +39,9 @@ execprog:
ci:
go build $(GOFLAGS) -o ./bin/syz-ci github.com/google/syzkaller/syz-ci
+hub:
+ go build $(GOFLAGS) -o ./bin/syz-hub github.com/google/syzkaller/syz-hub
+
repro:
go build $(GOFLAGS) -o ./bin/syz-repro github.com/google/syzkaller/tools/syz-repro