blob: 432fe5b72c33e033e07c31c0b2f1ef0a4824cb75 (
plain) (
blame)
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
49
50
51
52
53
54
55
56
57
|
libs.go = \
src/papod.go \
tests/benchmarks/join-leave/papod.go \
tests/functional/multiple-channels-and-users/papod.go \
tests/fuzz/api-check/papod.go \
tests/papod.go \
mains.go = \
src/main.go \
tests/benchmarks/join-leave/main.go \
tests/functional/multiple-channels-and-users/main.go \
tests/fuzz/api-check/main.go \
tests/main.go \
functional-tests/libs.go = \
tests/functional/multiple-channels-and-users/papod.go \
functional-tests/main.go = \
tests/functional/multiple-channels-and-users/main.go \
fuzz-targets/lib.go = \
tests/fuzz/api-check/papod.go \
fuzz-targets/main.go = \
tests/fuzz/api-check/main.go \
benchmarks/lib.go = \
tests/benchmarks/join-leave/papod.go \
benchmarks/main.go = \
tests/benchmarks/join-leave/main.go \
src/main.a: src/main.go
src/papod.a: src/papod.go
tests/benchmarks/join-leave/main.a: tests/benchmarks/join-leave/main.go
tests/benchmarks/join-leave/papod.a: tests/benchmarks/join-leave/papod.go
tests/functional/multiple-channels-and-users/main.a: tests/functional/multiple-channels-and-users/main.go
tests/functional/multiple-channels-and-users/papod.a: tests/functional/multiple-channels-and-users/papod.go
tests/fuzz/api-check/main.a: tests/fuzz/api-check/main.go
tests/fuzz/api-check/papod.a: tests/fuzz/api-check/papod.go
tests/main.a: tests/main.go
tests/papod.a: tests/papod.go
src/main.bin: src/main.a
tests/benchmarks/join-leave/main.bin: tests/benchmarks/join-leave/main.a
tests/functional/multiple-channels-and-users/main.bin: tests/functional/multiple-channels-and-users/main.a
tests/fuzz/api-check/main.bin: tests/fuzz/api-check/main.a
tests/main.bin: tests/main.a
src/main.bin-check: src/main.bin
tests/benchmarks/join-leave/main.bin-check: tests/benchmarks/join-leave/main.bin
tests/functional/multiple-channels-and-users/main.bin-check: tests/functional/multiple-channels-and-users/main.bin
tests/fuzz/api-check/main.bin-check: tests/fuzz/api-check/main.bin
tests/main.bin-check: tests/main.bin
src/main.a: src/$(NAME).a
tests/benchmarks/join-leave/main.a: tests/benchmarks/join-leave/$(NAME).a
tests/functional/multiple-channels-and-users/main.a: tests/functional/multiple-channels-and-users/$(NAME).a
tests/fuzz/api-check/main.a: tests/fuzz/api-check/$(NAME).a
tests/main.a: tests/$(NAME).a
|