aboutsummaryrefslogtreecommitdiff
path: root/deps.mk
blob: 71ea8be2c6e72ee49e2146fc95f1cc26cb0aed2f (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
84
85
86
87
88
89
90
91
92
libs.go = \
	src/gotext.go \
	tests/benchmarks/gettext/gotext.go \
	tests/functional/api-usage/gotext.go \
	tests/functional/extraction/gotext.go \
	tests/functional/runtime/gotext.go \
	tests/fuzz/api/gotext.go \
	tests/gotext.go \

mains.go = \
	src/main.go \
	tests/benchmarks/gettext/main.go \
	tests/functional/api-usage/main.go \
	tests/functional/extraction/main.go \
	tests/functional/runtime/main.go \
	tests/fuzz/api/main.go \
	tests/main.go \

manpages.en.N.adoc = \
	doc/gotext.en.0.adoc \

manpages.XX.N.adoc = \
	doc/gotext.de.0.adoc \
	doc/gotext.eo.0.adoc \
	doc/gotext.es.0.adoc \
	doc/gotext.fr.0.adoc \
	doc/gotext.pt.0.adoc \

sources.po = \
	po/gotext/de.po \
	po/gotext/eo.po \
	po/gotext/es.po \
	po/gotext/fr.po \
	po/gotext/pt.po \

functional/lib.go = \
	tests/functional/api-usage/gotext.go \
	tests/functional/extraction/gotext.go \
	tests/functional/runtime/gotext.go \

functional/main.go = \
	tests/functional/api-usage/main.go \
	tests/functional/extraction/main.go \
	tests/functional/runtime/main.go \

fuzz/lib.go = \
	tests/fuzz/api/gotext.go \

fuzz/main.go = \
	tests/fuzz/api/main.go \

benchmarks/lib.go = \
	tests/benchmarks/gettext/gotext.go \

benchmarks/main.go = \
	tests/benchmarks/gettext/main.go \

src/gotext.a:	src/gotext.go
src/main.a:	src/main.go
tests/benchmarks/gettext/gotext.a:	tests/benchmarks/gettext/gotext.go
tests/benchmarks/gettext/main.a:	tests/benchmarks/gettext/main.go
tests/functional/api-usage/gotext.a:	tests/functional/api-usage/gotext.go
tests/functional/api-usage/main.a:	tests/functional/api-usage/main.go
tests/functional/extraction/gotext.a:	tests/functional/extraction/gotext.go
tests/functional/extraction/main.a:	tests/functional/extraction/main.go
tests/functional/runtime/gotext.a:	tests/functional/runtime/gotext.go
tests/functional/runtime/main.a:	tests/functional/runtime/main.go
tests/fuzz/api/gotext.a:	tests/fuzz/api/gotext.go
tests/fuzz/api/main.a:	tests/fuzz/api/main.go
tests/gotext.a:	tests/gotext.go
tests/main.a:	tests/main.go
src/main.bin:	src/main.a
tests/benchmarks/gettext/main.bin:	tests/benchmarks/gettext/main.a
tests/functional/api-usage/main.bin:	tests/functional/api-usage/main.a
tests/functional/extraction/main.bin:	tests/functional/extraction/main.a
tests/functional/runtime/main.bin:	tests/functional/runtime/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/gettext/main.bin-check:	tests/benchmarks/gettext/main.bin
tests/functional/api-usage/main.bin-check:	tests/functional/api-usage/main.bin
tests/functional/extraction/main.bin-check:	tests/functional/extraction/main.bin
tests/functional/runtime/main.bin-check:	tests/functional/runtime/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/gettext/main.a:	tests/benchmarks/gettext/$(NAME).a
tests/functional/api-usage/main.a:	tests/functional/api-usage/$(NAME).a
tests/functional/extraction/main.a:	tests/functional/extraction/$(NAME).a
tests/functional/runtime/main.a:	tests/functional/runtime/$(NAME).a
tests/fuzz/api/main.a:	tests/fuzz/api/$(NAME).a
tests/main.a:	tests/$(NAME).a