blob: 5c3ea5705fad0744d8209baacb770ce728efb1bc (
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
58
59
60
|
libs.go = \
src/remembering.go \
tests/benchmarks/ranking-throughput/remembering.go \
tests/functional/pick-roundtrip/remembering.go \
tests/fuzz/profile/remembering.go \
tests/remembering.go \
mains.go = \
src/main.go \
tests/benchmarks/ranking-throughput/main.go \
tests/functional/pick-roundtrip/main.go \
tests/fuzz/profile/main.go \
tests/main.go \
manpages.adoc = \
doc/remembering.en.1.adoc \
functional/lib.go = \
tests/functional/pick-roundtrip/remembering.go \
functional/main.go = \
tests/functional/pick-roundtrip/main.go \
fuzz/lib.go = \
tests/fuzz/profile/remembering.go \
fuzz/main.go = \
tests/fuzz/profile/main.go \
benchmarks/lib.go = \
tests/benchmarks/ranking-throughput/remembering.go \
benchmarks/main.go = \
tests/benchmarks/ranking-throughput/main.go \
src/main.a: src/main.go
src/remembering.a: src/remembering.go
tests/benchmarks/ranking-throughput/main.a: tests/benchmarks/ranking-throughput/main.go
tests/benchmarks/ranking-throughput/remembering.a: tests/benchmarks/ranking-throughput/remembering.go
tests/functional/pick-roundtrip/main.a: tests/functional/pick-roundtrip/main.go
tests/functional/pick-roundtrip/remembering.a: tests/functional/pick-roundtrip/remembering.go
tests/fuzz/profile/main.a: tests/fuzz/profile/main.go
tests/fuzz/profile/remembering.a: tests/fuzz/profile/remembering.go
tests/main.a: tests/main.go
tests/remembering.a: tests/remembering.go
src/main.bin: src/main.a
tests/benchmarks/ranking-throughput/main.bin: tests/benchmarks/ranking-throughput/main.a
tests/functional/pick-roundtrip/main.bin: tests/functional/pick-roundtrip/main.a
tests/fuzz/profile/main.bin: tests/fuzz/profile/main.a
tests/main.bin: tests/main.a
src/main.bin-check: src/main.bin
tests/benchmarks/ranking-throughput/main.bin-check: tests/benchmarks/ranking-throughput/main.bin
tests/functional/pick-roundtrip/main.bin-check: tests/functional/pick-roundtrip/main.bin
tests/fuzz/profile/main.bin-check: tests/fuzz/profile/main.bin
tests/main.bin-check: tests/main.bin
src/main.a: src/$(NAME).a
tests/benchmarks/ranking-throughput/main.a: tests/benchmarks/ranking-throughput/$(NAME).a
tests/functional/pick-roundtrip/main.a: tests/functional/pick-roundtrip/$(NAME).a
tests/fuzz/profile/main.a: tests/fuzz/profile/$(NAME).a
tests/main.a: tests/$(NAME).a
|