@@ -104,7 +104,7 @@ ifeq ("$(TARGETOS)", "trusty")
104104endif
105105
106106.PHONY : all clean host target \
107- manager executor kfuzztest ci hub \
107+ manager executor ci hub \
108108 execprog mutate prog2c trace2syz repro upgrade db \
109109 usbgen symbolize cover kconf syz-build crush \
110110 bin/syz-extract bin/syz-fmt \
@@ -118,7 +118,7 @@ endif
118118
119119all : host target
120120host : manager repro mutate prog2c db upgrade
121- target : execprog executor check_syzos
121+ target : execprog executor
122122
123123executor : descriptions
124124ifeq ($(TARGETOS ) ,fuchsia)
@@ -217,14 +217,6 @@ syz-build:
217217bisect : descriptions
218218 GOOS=$(HOSTOS ) GOARCH=$(HOSTARCH ) $(HOSTGO ) build $(GOHOSTFLAGS ) -o ./bin/syz-bisect github.com/google/syzkaller/tools/syz-bisect
219219
220- ifeq ($(HOSTOS ) , linux)
221- kfuzztest : descriptions
222- GOOS=$(HOSTOS ) GOARCH=$(HOSTARCH ) $(HOSTGO ) build $(GOHOSTFLAGS ) -o ./bin/syz-kfuzztest github.com/google/syzkaller/syz-kfuzztest
223- else
224- kfuzztest :
225- @echo " Skipping kfuzztest build (it's Linux-only)"
226- endif
227-
228220verifier : descriptions
229221 GOOS=$(HOSTOS ) GOARCH=$(HOSTARCH ) $(HOSTGO ) build $(GOHOSTFLAGS ) -o ./bin/syz-verifier github.com/google/syzkaller/syz-verifier
230222
@@ -271,9 +263,7 @@ format_cpp:
271263 clang-format --style=file -i executor/* .cc executor/* .h \
272264 executor/android/android_seccomp.h \
273265 tools/kcovtrace/* .c tools/kcovfuzzer/* .c tools/fops_probe/* .cc \
274- tools/clang/* .h \
275- tools/clang/declextract/* .h tools/clang/declextract/* .cpp \
276- tools/clang/codesearch/* .h tools/clang/codesearch/* .cpp
266+ tools/syz-declextract/clangtool/* .cpp tools/syz-declextract/clangtool/* .h
277267
278268format_sys : bin/syz-fmt
279269 bin/syz-fmt all
@@ -282,7 +272,7 @@ bin/syz-fmt:
282272 $(HOSTGO ) build $(GOHOSTFLAGS ) -o $@ ./tools/syz-fmt
283273
284274configs : kconf
285- bin/syz-kconf -config dashboard/config/linux/main.yml -sourcedir $(SOURCEDIR ) -instance= $( INSTANCE )
275+ bin/syz-kconf -config dashboard/config/linux/main.yml -sourcedir $(SOURCEDIR )
286276
287277tidy : descriptions
288278 clang-tidy -quiet -header-filter=executor/[^_].* -warnings-as-errors=* \
@@ -294,7 +284,7 @@ tidy: descriptions
294284 executor/* .cc
295285
296286lint :
297- CGO_ENABLED=1 $(HOSTGO ) install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.6.2
287+ CGO_ENABLED=1 $(HOSTGO ) install github.com/golangci/golangci-lint/v2/cmd/golangci-lint
298288 CGO_ENABLED=1 $(HOSTGO ) build -buildmode=plugin -o bin/syz-linter.so ./tools/syz-linter
299289 bin/golangci-lint run ./...
300290
@@ -436,9 +426,6 @@ check_links:
436426check_html :
437427 ./tools/check-html.sh
438428
439- check_syzos : executor
440- ./tools/check-syzos.sh 2> /dev/null
441-
442429# Check that the diff is empty. This is meant to be executed after generating
443430# and formatting the code to make sure that everything is committed.
444431check_diff :
0 commit comments