blob: 2d1e467fc00278ba9de75db556cd5cf34358f248 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
libs.go = \
src/scrypt.go \
tests/benchmarks/hash/scrypt.go \
tests/functional/hash-and-check/scrypt.go \
tests/functional/version/scrypt.go \
tests/fuzz/api/scrypt.go \
tests/scrypt.go \
mains.go = \
src/main.go \
tests/benchmarks/hash/main.go \
tests/functional/hash-and-check/main.go \
tests/functional/version/main.go \
tests/fuzz/api/main.go \
tests/main.go \
manpages.en.N.adoc = \
doc/scrypt.en.0.adoc \
manpages.XX.N.adoc = \
doc/scrypt.de.0.adoc \
doc/scrypt.eo.0.adoc \
doc/scrypt.es.0.adoc \
doc/scrypt.fr.0.adoc \
doc/scrypt.pt.0.adoc \
sources.po = \
po/scrypt/de.po \
po/scrypt/eo.po \
po/scrypt/es.po \
po/scrypt/fr.po \
po/scrypt/pt.po \
functional/lib.go = \
tests/functional/hash-and-check/scrypt.go \
tests/functional/version/scrypt.go \
functional/main.go = \
tests/functional/hash-and-check/main.go \
tests/functional/version/main.go \
fuzz/lib.go = \
tests/fuzz/api/scrypt.go \
fuzz/main.go = \
tests/fuzz/api/main.go \
benchmarks/lib.go = \
tests/benchmarks/hash/scrypt.go \
benchmarks/main.go = \
tests/benchmarks/hash/main.go \
src/main.a: src/main.go
src/scrypt.a: src/scrypt.go
tests/benchmarks/hash/main.a: tests/benchmarks/hash/main.go
tests/benchmarks/hash/scrypt.a: tests/benchmarks/hash/scrypt.go
tests/functional/hash-and-check/main.a: tests/functional/hash-and-check/main.go
tests/functional/hash-and-check/scrypt.a: tests/functional/hash-and-check/scrypt.go
tests/functional/version/main.a: tests/functional/version/main.go
tests/functional/version/scrypt.a: tests/functional/version/scrypt.go
tests/fuzz/api/main.a: tests/fuzz/api/main.go
tests/fuzz/api/scrypt.a: tests/fuzz/api/scrypt.go
tests/main.a: tests/main.go
tests/scrypt.a: tests/scrypt.go
src/main.bin: src/main.a
tests/benchmarks/hash/main.bin: tests/benchmarks/hash/main.a
tests/functional/hash-and-check/main.bin: tests/functional/hash-and-check/main.a
tests/functional/version/main.bin: tests/functional/version/main.a
tests/fuzz/api/main.bin: tests/fuzz/api/main.a
tests/main.bin: tests/main.a
src/main.bin-check: src/main.bin
tests/benchmarks/hash/main.bin-check: tests/benchmarks/hash/main.bin
tests/functional/hash-and-check/main.bin-check: tests/functional/hash-and-check/main.bin
tests/functional/version/main.bin-check: tests/functional/version/main.bin
tests/fuzz/api/main.bin-check: tests/fuzz/api/main.bin
tests/main.bin-check: tests/main.bin
src/main.a: src/$(NAME).a
tests/benchmarks/hash/main.a: tests/benchmarks/hash/$(NAME).a
tests/functional/hash-and-check/main.a: tests/functional/hash-and-check/$(NAME).a
tests/functional/version/main.a: tests/functional/version/$(NAME).a
tests/fuzz/api/main.a: tests/fuzz/api/$(NAME).a
tests/main.a: tests/$(NAME).a
|