rawyaml mode
[mkp224o.git] / GNUmakefile.in
blob67c90282ce3a6d5b5ad5e05ad77aa29b02b9cca9
2 CC= @CC@
3 CSTD= @CSTD@
4 CFLAGS= $(CSTD) @CFLAGS@ @CPPFLAGS@ -DED25519_@ED25519IMPL@ @MYDEFS@
5 ASFLAGS=
6 LDFLAGS= @NOPIE@ @LDFLAGS@
7 MV= mv
9 ED25519_DEFS= -DED25519_ref10 -DED25519_amd64_51_30k -DED25519_amd64_64_24k -DED25519_donna
10 ED25519_ref10= $(patsubst @SRCDIR@/%.c,%.c.o,$(wildcard @SRCDIR@/ed25519/ref10/*.c))
11 ED25519_amd64_51_30k= \
12 $(patsubst @SRCDIR@/%.c,%.c.o,$(wildcard @SRCDIR@/ed25519/amd64-51-30k/*.c)) \
13 $(patsubst @SRCDIR@/%.s,%.s.o,$(wildcard @SRCDIR@/ed25519/amd64-51-30k/*.s))
14 ED25519_amd64_64_24k= \
15 $(patsubst @SRCDIR@/%.c,%.c.o,$(wildcard @SRCDIR@/ed25519/amd64-64-24k/*.c)) \
16 $(patsubst @SRCDIR@/%.s,%.s.o,$(wildcard @SRCDIR@/ed25519/amd64-64-24k/*.s))
17 ED25519_donna=
18 ED25519_OBJ= $(ED25519_@ED25519IMPL@)
20 MAIN_OBJ= \
21 main.c.o \
22 worker.c.o \
23 yaml.c.o \
24 vec.c.o \
25 cpucount.c.o \
26 base32_to.c.o \
27 base32_from.c.o \
28 base64_to.c.o \
29 base64_from.c.o \
30 ioutil.c.o \
31 $(ED25519_OBJ) \
32 keccak.c.o
34 UTIL_CALCEST_OBJ= \
35 calcest.c.o
37 TEST_BASE64_OBJ= \
38 test_base64.c.o \
39 base64_to.c.o \
40 base64_from.c.o
42 TEST_BASE32_OBJ= \
43 test_base32.c.o \
44 base32_to.c.o \
45 base32_from.c.o
47 TEST_BASE16_OBJ= \
48 test_base16.c.o \
49 base16_to.c.o \
50 base16_from.c.o
52 TEST_ED25519_OBJ= \
53 test_ed25519.c.o \
54 base16_to.c.o \
55 base16_from.c.o \
56 $(ED25519_OBJ)
58 ALL_O= $(sort \
59 $(MAIN_OBJ) \
60 $(TEST_BASE64_OBJ) \
61 $(TEST_BASE32_OBJ) \
62 $(TEST_BASE16_OBJ) \
63 $(TEST_ED25519_OBJ) \
64 $(ED25519_ref10) \
65 $(ED25519_amd64_51_30k) \
66 $(ED25519_amd64_64_24k))
68 ALL_C= $(patsubst %.c.o,%.c,$(filter %.c.o %.c,$(ALL_O)))
69 CLEAN_O= $(filter %.o,$(ALL_O))
71 MAIN_LIB= -lpthread -lsodium @MAINLIB@
72 UTIL_CALCEST_LIB= -lm
73 TEST_ED25519_LIB= -lsodium
75 MAIN_TGT= mkp224o
76 UTIL_TGT= calcest
77 TEST_TGT= test_base64 test_base32 test_base16 test_ed25519
79 MAIN_EXE= $(patsubst %,%@EXEEXT@,$(MAIN_TGT))
80 UTIL_EXE= $(patsubst %,%@EXEEXT@,$(UTIL_TGT))
81 TEST_EXE= $(patsubst %,%@EXEEXT@,$(TEST_TGT))
83 ALL_EXE= $(MAIN_EXE) $(UTIL_EXE) $(TEST_EXE)
85 .PHONY: default all clean distclean depend
87 default: $(MAIN_EXE)
89 all: $(ALL_EXE)
91 mkp224o@EXEEXT@: $(MAIN_OBJ)
92 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(MAIN_LIB) && $(MV) $@.tmp $@
94 calcest@EXEEXT@: $(UTIL_CALCEST_OBJ)
95 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(UTIL_CALCEST_LIB) && $(MV) $@.tmp $@
97 test_base64@EXEEXT@: $(TEST_BASE64_OBJ)
98 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
100 test_base32@EXEEXT@: $(TEST_BASE32_OBJ)
101 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
103 test_base16@EXEEXT@: $(TEST_BASE16_OBJ)
104 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
106 test_ed25519@EXEEXT@: $(TEST_ED25519_OBJ)
107 $(CC) $(LDFLAGS) $(CFLAGS) -o $@.tmp $^ $(TEST_ED25519_LIB) && $(MV) $@.tmp $@
109 clean:
110 $(RM) $(CLEAN_O)
111 $(RM) $(ALL_EXE)
113 distclean: clean
114 $(RM) -r autom4te.cache
115 $(RM) configure config.status config.log
116 $(RM) GNUmakefile
118 depend:
119 cd "@SRCDIR@" && makedepend -Y -fGNUmakefile.in -o.c.o -- $(CSTD) $(ED25519_DEFS) -- $(ALL_C)
121 VPATH=@SRCDIR@
123 %.c.o: %.c
124 $(CC) $(CFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
126 %.s.o: %.s
127 $(CC) $(ASFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
129 # DO NOT DELETE THIS LINE
131 base16_from.c.o: types.h base16.h
132 base16_to.c.o: types.h base16.h
133 base32_from.c.o: types.h base32.h
134 base32_to.c.o: types.h base32.h
135 base64_from.c.o: types.h base64.h
136 base64_to.c.o: types.h base64.h
137 cpucount.c.o: cpucount.h
138 ed25519/amd64-51-30k/fe25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
139 ed25519/amd64-51-30k/fe25519_batchinvert.c.o: ed25519/amd64-51-30k/fe25519.h
140 ed25519/amd64-51-30k/fe25519_getparity.c.o: ed25519/amd64-51-30k/fe25519.h
141 ed25519/amd64-51-30k/fe25519_invert.c.o: ed25519/amd64-51-30k/fe25519.h
142 ed25519/amd64-51-30k/fe25519_iseq.c.o: ed25519/amd64-51-30k/fe25519.h
143 ed25519/amd64-51-30k/fe25519_iszero.c.o: ed25519/amd64-51-30k/fe25519.h
144 ed25519/amd64-51-30k/fe25519_neg.c.o: ed25519/amd64-51-30k/fe25519.h
145 ed25519/amd64-51-30k/fe25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
146 ed25519/amd64-51-30k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/fe25519.h
147 ed25519/amd64-51-30k/fe25519_setint.c.o: ed25519/amd64-51-30k/fe25519.h
148 ed25519/amd64-51-30k/fe25519_sub.c.o: ed25519/amd64-51-30k/fe25519.h
149 ed25519/amd64-51-30k/fe25519_unpack.c.o: ed25519/amd64-51-30k/fe25519.h
150 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/ge25519.h
151 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
152 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/sc25519.h
153 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/ge25519.h
154 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/fe25519.h
155 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/sc25519.h
156 ed25519/amd64-51-30k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/fe25519.h
157 ed25519/amd64-51-30k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/ge25519.h
158 ed25519/amd64-51-30k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/sc25519.h
159 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/ge25519.h
160 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/fe25519.h
161 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/sc25519.h
162 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
163 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
164 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
165 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519_base_slide_multiples.data
166 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/fe25519.h
167 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/ge25519.h
168 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/sc25519.h
169 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
170 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
171 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
172 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/index_heap.h
173 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
174 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/sc25519.h
175 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/ge25519.h
176 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/fe25519.h
177 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/sc25519.h
178 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519.h
179 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519_base_niels_smalltables.data
180 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/fe25519.h
181 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/ge25519.h
182 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/sc25519.h
183 ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
184 ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/hram.h
185 ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/sc25519.h
186 ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/index_heap.h
187 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
188 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
189 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
190 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
191 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ge25519.h
192 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/fe25519.h
193 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/sc25519.h
194 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
195 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ed25519.h
196 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
197 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
198 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ge25519.h
199 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/fe25519.h
200 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/sc25519.h
201 ed25519/amd64-51-30k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
202 ed25519/amd64-51-30k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/sc25519.h
203 ed25519/amd64-51-30k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
204 ed25519/amd64-51-30k/sc25519_iszero.c.o: ed25519/amd64-51-30k/sc25519.h
205 ed25519/amd64-51-30k/sc25519_mul.c.o: ed25519/amd64-51-30k/sc25519.h
206 ed25519/amd64-51-30k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
207 ed25519/amd64-51-30k/sc25519_slide.c.o: ed25519/amd64-51-30k/sc25519.h
208 ed25519/amd64-51-30k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
209 ed25519/amd64-51-30k/sc25519_window4.c.o: ed25519/amd64-51-30k/sc25519.h
210 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
211 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ed25519.h
212 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
213 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ge25519.h
214 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/fe25519.h
215 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/sc25519.h
216 ed25519/amd64-64-24k/fe25519_batchinvert.c.o: ed25519/amd64-51-30k/fe25519.h
217 ed25519/amd64-64-24k/fe25519_getparity.c.o: ed25519/amd64-51-30k/fe25519.h
218 ed25519/amd64-64-24k/fe25519_invert.c.o: ed25519/amd64-51-30k/fe25519.h
219 ed25519/amd64-64-24k/fe25519_iseq.c.o: ed25519/amd64-51-30k/fe25519.h
220 ed25519/amd64-64-24k/fe25519_iszero.c.o: ed25519/amd64-51-30k/fe25519.h
221 ed25519/amd64-64-24k/fe25519_neg.c.o: ed25519/amd64-51-30k/fe25519.h
222 ed25519/amd64-64-24k/fe25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
223 ed25519/amd64-64-24k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/fe25519.h
224 ed25519/amd64-64-24k/fe25519_setint.c.o: ed25519/amd64-51-30k/fe25519.h
225 ed25519/amd64-64-24k/fe25519_unpack.c.o: ed25519/amd64-51-30k/fe25519.h
226 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/ge25519.h
227 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
228 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/sc25519.h
229 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/ge25519.h
230 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/fe25519.h
231 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/sc25519.h
232 ed25519/amd64-64-24k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/fe25519.h
233 ed25519/amd64-64-24k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/ge25519.h
234 ed25519/amd64-64-24k/ge25519_batchpack.c.o: ed25519/amd64-51-30k/sc25519.h
235 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/ge25519.h
236 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/fe25519.h
237 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/sc25519.h
238 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
239 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
240 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
241 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519_base_slide_multiples.data
242 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/fe25519.h
243 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/ge25519.h
244 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/sc25519.h
245 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
246 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
247 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
248 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/index_heap.h
249 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
250 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/sc25519.h
251 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/ge25519.h
252 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/fe25519.h
253 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/sc25519.h
254 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519.h
255 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/ge25519_base_niels.data
256 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/fe25519.h
257 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/ge25519.h
258 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/sc25519.h
259 ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
260 ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-51-30k/hram.h
261 ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-51-30k/sc25519.h
262 ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-51-30k/index_heap.h
263 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
264 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
265 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
266 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
267 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/ge25519.h
268 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/fe25519.h
269 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/sc25519.h
270 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
271 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/ed25519.h
272 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
273 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
274 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/ge25519.h
275 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/fe25519.h
276 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/sc25519.h
277 ed25519/amd64-64-24k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
278 ed25519/amd64-64-24k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/sc25519.h
279 ed25519/amd64-64-24k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
280 ed25519/amd64-64-24k/sc25519_iszero.c.o: ed25519/amd64-51-30k/sc25519.h
281 ed25519/amd64-64-24k/sc25519_mul.c.o: ed25519/amd64-51-30k/sc25519.h
282 ed25519/amd64-64-24k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
283 ed25519/amd64-64-24k/sc25519_slide.c.o: ed25519/amd64-51-30k/sc25519.h
284 ed25519/amd64-64-24k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
285 ed25519/amd64-64-24k/sc25519_window4.c.o: ed25519/amd64-51-30k/sc25519.h
286 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
287 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/ed25519.h
288 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
289 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/ge25519.h
290 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/fe25519.h
291 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/sc25519.h
292 ed25519/ref10/fe_0.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
293 ed25519/ref10/fe_1.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
294 ed25519/ref10/fe_add.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
295 ed25519/ref10/fe_batchinvert.c.o: ed25519/ref10/fe.h
296 ed25519/ref10/fe_batchinvert.c.o: ed25519/ref10/crypto_int32.h
297 ed25519/ref10/fe_cmov.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
298 ed25519/ref10/fe_copy.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
299 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/fe.h
300 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int32.h
301 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int64.h
302 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_uint64.h
303 ed25519/ref10/fe_invert.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
304 ed25519/ref10/fe_invert.c.o: ed25519/ref10/pow225521.h
305 ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/fe.h
306 ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/crypto_int32.h
307 ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/fe.h
308 ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/crypto_int32.h
309 ed25519/ref10/fe_isnonzero.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
310 ed25519/ref10/fe_mul.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
311 ed25519/ref10/fe_mul.c.o: ed25519/ref10/crypto_int64.h
312 ed25519/ref10/fe_neg.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
313 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/fe.h
314 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/crypto_int32.h
315 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/pow22523.h
316 ed25519/ref10/fe_sq.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
317 ed25519/ref10/fe_sq.c.o: ed25519/ref10/crypto_int64.h
318 ed25519/ref10/fe_sq2.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
319 ed25519/ref10/fe_sq2.c.o: ed25519/ref10/crypto_int64.h
320 ed25519/ref10/fe_sub.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
321 ed25519/ref10/fe_tobytes.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
322 ed25519/ref10/ge_add.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
323 ed25519/ref10/ge_add.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_add.h
324 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
325 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/crypto_int32.h
326 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/base2.h
327 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
328 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/crypto_int32.h
329 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/d.h ed25519/ref10/sqrtm1.h
330 ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
331 ed25519/ref10/ge_madd.c.o: ed25519/ref10/crypto_int32.h
332 ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge_madd.h
333 ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
334 ed25519/ref10/ge_msub.c.o: ed25519/ref10/crypto_int32.h
335 ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge_msub.h
336 ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
337 ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/crypto_int32.h
338 ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
339 ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/crypto_int32.h
340 ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
341 ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/crypto_int32.h
342 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
343 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/crypto_int32.h
344 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge_p2_dbl.h
345 ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
346 ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/crypto_int32.h
347 ed25519/ref10/ge_p3_batchtobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
348 ed25519/ref10/ge_p3_batchtobytes.c.o: ed25519/ref10/crypto_int32.h
349 ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
350 ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/crypto_int32.h
351 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
352 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/crypto_int32.h
353 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/d2.h
354 ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
355 ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/crypto_int32.h
356 ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
357 ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/crypto_int32.h
358 ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
359 ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/crypto_int32.h
360 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
361 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_int32.h
362 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_uint32.h
363 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/base.h
364 ed25519/ref10/ge_sub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
365 ed25519/ref10/ge_sub.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_sub.h
366 ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
367 ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/crypto_int32.h
368 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
369 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
370 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
371 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
372 ed25519/ref10/keypair.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
373 ed25519/ref10/keypair.c.o: ed25519/ref10/crypto_int32.h
374 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
375 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/ed25519.h
376 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
377 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
378 ed25519/ref10/open.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
379 ed25519/ref10/open.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/sc.h
380 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
381 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint32.h
382 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint64.h
383 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
384 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint32.h
385 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint64.h
386 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
387 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/ed25519.h
388 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
389 ed25519/ref10/sign.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
390 ed25519/ref10/sign.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/sc.h
391 ioutil.c.o: types.h ioutil.h
392 keccak.c.o: types.h keccak.h
393 main.c.o: types.h vec.h base32.h cpucount.h keccak.h ioutil.h common.h yaml.h
394 main.c.o: filters.h worker.h filters_main.inc.h filters_common.inc.h
395 test_base16.c.o: types.h base16.h
396 test_base32.c.o: types.h base32.h
397 test_base64.c.o: types.h base64.h
398 test_ed25519.c.o: types.h base16.h ed25519/ed25519.h ed25519/ref10/ed25519.h
399 test_ed25519.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
400 test_ed25519.c.o: ed25519/ref10/crypto_int32.h ed25519/amd64-51-30k/ed25519.h
401 test_ed25519.c.o: ed25519/amd64-51-30k/ge25519.h
402 test_ed25519.c.o: ed25519/amd64-51-30k/fe25519.h
403 test_ed25519.c.o: ed25519/amd64-51-30k/sc25519.h
404 test_ed25519.c.o: ed25519/amd64-64-24k/ed25519.h
405 test_ed25519.c.o: ed25519/amd64-64-24k/ge25519.h
406 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna.h
407 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
408 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
409 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-sse2.h
410 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
411 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-32bit.h
412 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
413 test_ed25519.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
414 test_ed25519.c.o: ed25519/ed25519-donna/modm-donna-32bit.h
415 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
416 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
417 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
418 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-tables.h
419 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86-32bit.h
420 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-sse2.h
421 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-sse2.h
422 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-impl-sse2.h
423 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h testutil.h
424 vec.c.o: vec.h
425 worker.c.o: types.h likely.h vec.h base32.h keccak.h ed25519/ed25519.h
426 worker.c.o: ed25519/ref10/ed25519.h ed25519/ref10/ge.h ed25519/ref10/fe.h
427 worker.c.o: ed25519/ref10/crypto_int32.h ed25519/amd64-51-30k/ed25519.h
428 worker.c.o: ed25519/amd64-51-30k/ge25519.h ed25519/amd64-51-30k/fe25519.h
429 worker.c.o: ed25519/amd64-51-30k/sc25519.h ed25519/amd64-64-24k/ed25519.h
430 worker.c.o: ed25519/amd64-64-24k/ge25519.h
431 worker.c.o: ed25519/ed25519-donna/ed25519-donna.h
432 worker.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
433 worker.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
434 worker.c.o: ed25519/ed25519-donna/curve25519-donna-sse2.h
435 worker.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
436 worker.c.o: ed25519/ed25519-donna/curve25519-donna-32bit.h
437 worker.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
438 worker.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
439 worker.c.o: ed25519/ed25519-donna/modm-donna-32bit.h
440 worker.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
441 worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
442 worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
443 worker.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-tables.h
444 worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86-32bit.h
445 worker.c.o: ed25519/ed25519-donna/ed25519-donna-32bit-sse2.h
446 worker.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-sse2.h
447 worker.c.o: ed25519/ed25519-donna/ed25519-donna-impl-sse2.h
448 worker.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h ioutil.h common.h
449 worker.c.o: yaml.h worker.h filters.h filters_worker.inc.h
450 worker.c.o: filters_common.inc.h worker_slow.inc.h worker_fast.inc.h
451 worker.c.o: worker_fast_pass.inc.h worker_batch.inc.h worker_batch_pass.inc.h
452 yaml.c.o: types.h yaml.h ioutil.h base32.h base64.h common.h