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