blob: 519d304b40466dd1df09ba76e34bf7ef0b84cf7f (
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
|
libs.go = \
src/untls.go \
tests/untls.go \
mains.go = \
src/main.go \
tests/main.go \
manpages.en.N.adoc = \
doc/untls.en.0.adoc \
manpages.XX.N.adoc = \
doc/untls.de.0.adoc \
doc/untls.eo.0.adoc \
doc/untls.es.0.adoc \
doc/untls.fr.0.adoc \
doc/untls.pt.0.adoc \
sources.po = \
po/untls/de.po \
po/untls/eo.po \
po/untls/es.po \
po/untls/fr.po \
po/untls/pt.po \
functional/lib.go = \
functional/main.go = \
fuzz/lib.go = \
fuzz/main.go = \
benchmarks/lib.go = \
benchmarks/main.go = \
src/main.a: src/main.go
src/untls.a: src/untls.go
tests/main.a: tests/main.go
tests/untls.a: tests/untls.go
src/main.bin: src/main.a
tests/main.bin: tests/main.a
src/main.bin-check: src/main.bin
tests/main.bin-check: tests/main.bin
src/main.a: src/$(NAME).a
tests/main.a: tests/$(NAME).a
|