blob: 3d310d79305b941b5e337c44cad5b856d8416ca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 2015 syzkaller project authors. All rights reserved.
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
.PHONY: all format clean manager fuzzer executor execprog mutate prog2c stress generate
all: manager fuzzer executor
all-tools: execprog mutate prog2c stress repro upgrade
manager:
go build -o ./bin/syz-manager github.com/google/syzkaller/syz-manager
fuzzer:
go build -o ./bin/syz-fuzzer github.com/google/syzkaller/syz-fuzzer
executor:
$(CC) -o ./bin/syz-executor executor/executor.cc -lpthread -static -Wall -O1 -g $(CFLAGS)
execprog:
go build -o ./bin/syz-execprog github.com/google/syzkaller/tools/syz-execprog
repro:
go build -o ./bin/syz-repro github.com/google/syzkaller/tools/syz-repro
mutate:
go build -o ./bin/syz-mutate github.com/google/syzkaller/tools/syz-mutate
prog2c:
go build -o ./bin/syz-prog2c github.com/google/syzkaller/tools/syz-prog2c
stress:
go build -o ./bin/syz-stress github.com/google/syzkaller/tools/syz-stress
upgrade:
go build -o ./bin/syz-upgrade github.com/google/syzkaller/tools/syz-upgrade
generate:
go run sysgen/*.go -linux=$(LINUX) sys/sys.txt sys/socket.txt sys/tty.txt sys/perf.txt \
sys/key.txt sys/bpf.txt sys/fuse.txt sys/dri.txt sys/kdbus.txt sys/sctp.txt \
sys/kvm.txt sys/sndseq.txt sys/sndtimer.txt sys/sndcontrol.txt sys/input.txt \
sys/netlink.txt
format:
go fmt ./...
clang-format --style=file -i executor/executor.cc
clean:
rm -rf ./bin/
|