summaryrefslogtreecommitdiff
path: root/deps.mk
blob: f593d1ecd7b2f37ad938ad364e71f6e5ed49c537 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
libs.go = \
	src/uuid.go \
	tests/benchmarks/string-roundtrip/uuid.go \
	tests/functional/string-round-trip/uuid.go \
	tests/fuzz/from-string/uuid.go \
	tests/fuzz/new-v4-from/uuid.go \
	tests/fuzz/new-v7-from/uuid.go \
	tests/uuid.go \

mains.go = \
	src/main.go \
	tests/benchmarks/string-roundtrip/main.go \
	tests/functional/string-round-trip/main.go \
	tests/fuzz/from-string/main.go \
	tests/fuzz/new-v4-from/main.go \
	tests/fuzz/new-v7-from/main.go \
	tests/main.go \

manpages.en.N.adoc = \
	doc/uuid.en.0.adoc \
	doc/uuid.en.1.adoc \
	doc/uuid.en.3.adoc \
	doc/uuid.en.7CHANGELOG.adoc \
	doc/uuid.en.7README.adoc \
	doc/uuid.en.7TODOs.adoc \
	doc/uuid.en.7recipes.adoc \
	doc/uuid.en.7tutorial.adoc \
	doc/uuid.en.7why.adoc \

manpages.XX.N.adoc = \
	doc/uuid.de.0.adoc \
	doc/uuid.de.1.adoc \
	doc/uuid.de.3.adoc \
	doc/uuid.de.7CHANGELOG.adoc \
	doc/uuid.de.7README.adoc \
	doc/uuid.de.7TODOs.adoc \
	doc/uuid.de.7recipes.adoc \
	doc/uuid.de.7tutorial.adoc \
	doc/uuid.de.7why.adoc \
	doc/uuid.eo.0.adoc \
	doc/uuid.eo.1.adoc \
	doc/uuid.eo.3.adoc \
	doc/uuid.eo.7CHANGELOG.adoc \
	doc/uuid.eo.7README.adoc \
	doc/uuid.eo.7TODOs.adoc \
	doc/uuid.eo.7recipes.adoc \
	doc/uuid.eo.7tutorial.adoc \
	doc/uuid.eo.7why.adoc \
	doc/uuid.es.0.adoc \
	doc/uuid.es.1.adoc \
	doc/uuid.es.3.adoc \
	doc/uuid.es.7CHANGELOG.adoc \
	doc/uuid.es.7README.adoc \
	doc/uuid.es.7TODOs.adoc \
	doc/uuid.es.7recipes.adoc \
	doc/uuid.es.7tutorial.adoc \
	doc/uuid.es.7why.adoc \
	doc/uuid.fr.0.adoc \
	doc/uuid.fr.1.adoc \
	doc/uuid.fr.3.adoc \
	doc/uuid.fr.7CHANGELOG.adoc \
	doc/uuid.fr.7README.adoc \
	doc/uuid.fr.7TODOs.adoc \
	doc/uuid.fr.7recipes.adoc \
	doc/uuid.fr.7tutorial.adoc \
	doc/uuid.fr.7why.adoc \
	doc/uuid.pt.0.adoc \
	doc/uuid.pt.1.adoc \
	doc/uuid.pt.3.adoc \
	doc/uuid.pt.7CHANGELOG.adoc \
	doc/uuid.pt.7README.adoc \
	doc/uuid.pt.7TODOs.adoc \
	doc/uuid.pt.7recipes.adoc \
	doc/uuid.pt.7tutorial.adoc \
	doc/uuid.pt.7why.adoc \

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

functional/lib.go = \
	tests/functional/string-round-trip/uuid.go \

functional/main.go = \
	tests/functional/string-round-trip/main.go \

fuzz/lib.go = \
	tests/fuzz/from-string/uuid.go \
	tests/fuzz/new-v4-from/uuid.go \
	tests/fuzz/new-v7-from/uuid.go \

fuzz/main.go = \
	tests/fuzz/from-string/main.go \
	tests/fuzz/new-v4-from/main.go \
	tests/fuzz/new-v7-from/main.go \

benchmarks/lib.go = \
	tests/benchmarks/string-roundtrip/uuid.go \

benchmarks/main.go = \
	tests/benchmarks/string-roundtrip/main.go \

src/main.a:	src/main.go
src/uuid.a:	src/uuid.go
tests/benchmarks/string-roundtrip/main.a:	tests/benchmarks/string-roundtrip/main.go
tests/benchmarks/string-roundtrip/uuid.a:	tests/benchmarks/string-roundtrip/uuid.go
tests/functional/string-round-trip/main.a:	tests/functional/string-round-trip/main.go
tests/functional/string-round-trip/uuid.a:	tests/functional/string-round-trip/uuid.go
tests/fuzz/from-string/main.a:	tests/fuzz/from-string/main.go
tests/fuzz/from-string/uuid.a:	tests/fuzz/from-string/uuid.go
tests/fuzz/new-v4-from/main.a:	tests/fuzz/new-v4-from/main.go
tests/fuzz/new-v4-from/uuid.a:	tests/fuzz/new-v4-from/uuid.go
tests/fuzz/new-v7-from/main.a:	tests/fuzz/new-v7-from/main.go
tests/fuzz/new-v7-from/uuid.a:	tests/fuzz/new-v7-from/uuid.go
tests/main.a:	tests/main.go
tests/uuid.a:	tests/uuid.go
src/main.bin:	src/main.a
tests/benchmarks/string-roundtrip/main.bin:	tests/benchmarks/string-roundtrip/main.a
tests/functional/string-round-trip/main.bin:	tests/functional/string-round-trip/main.a
tests/fuzz/from-string/main.bin:	tests/fuzz/from-string/main.a
tests/fuzz/new-v4-from/main.bin:	tests/fuzz/new-v4-from/main.a
tests/fuzz/new-v7-from/main.bin:	tests/fuzz/new-v7-from/main.a
tests/main.bin:	tests/main.a
src/main.bin-check:	src/main.bin
tests/benchmarks/string-roundtrip/main.bin-check:	tests/benchmarks/string-roundtrip/main.bin
tests/functional/string-round-trip/main.bin-check:	tests/functional/string-round-trip/main.bin
tests/fuzz/from-string/main.bin-check:	tests/fuzz/from-string/main.bin
tests/fuzz/new-v4-from/main.bin-check:	tests/fuzz/new-v4-from/main.bin
tests/fuzz/new-v7-from/main.bin-check:	tests/fuzz/new-v7-from/main.bin
tests/main.bin-check:	tests/main.bin
src/main.a:	src/$(NAME).a
tests/benchmarks/string-roundtrip/main.a:	tests/benchmarks/string-roundtrip/$(NAME).a
tests/functional/string-round-trip/main.a:	tests/functional/string-round-trip/$(NAME).a
tests/fuzz/from-string/main.a:	tests/fuzz/from-string/$(NAME).a
tests/fuzz/new-v4-from/main.a:	tests/fuzz/new-v4-from/$(NAME).a
tests/fuzz/new-v7-from/main.a:	tests/fuzz/new-v7-from/$(NAME).a
tests/main.a:	tests/$(NAME).a