From c5b6fcddca80153daba328334bc48caa3a546ab5 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 29 Jun 2017 16:01:03 +0200 Subject: 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. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit mrf-deployment