diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-06-29 16:01:03 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-06-29 17:50:44 +0200 |
| commit | c5b6fcddca80153daba328334bc48caa3a546ab5 (patch) | |
| tree | ffe7680d084c29bec80f912a087b155981392e79 /Makefile | |
| parent | ae33f0dff59bbd493d48eabe521b33981a785271 (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-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |
