use named unions
[mkp224o.git] / Makefile.in
blob7c8c6e0fa50e472a11318a88b6d44ff3e90ef28d
2 CC= @CC@
3 CSTD= -std=c99 -Wall -D_POSIX_C_SOURCE=200112L
4 CFLAGS= $(CSTD) @CFLAGS@ -DED25519_@ED25519IMPL@ @MYDEFS@
5 ASFLAGS=
6 LDFLAGS= -no-pie
7 MV= mv
9 ED25519_DEFS= -DED25519_ref10 -DED25519_amd64_51_30k -DED25519_amd64_64_24k -DED25519_donna
10 ED25519_ref10= $(patsubst %.c,%.c.o,$(wildcard ed25519/ref10/*.c))
11 ED25519_amd64_51_30k= \
12 $(patsubst %.c,%.c.o,$(wildcard ed25519/amd64-51-30k/*.c)) \
13 $(patsubst %.s,%.s.o,$(wildcard ed25519/amd64-51-30k/*.s))
14 ED25519_amd64_64_24k= \
15 $(patsubst %.c,%.c.o,$(wildcard ed25519/amd64-64-24k/*.c)) \
16 $(patsubst %.s,%.s.o,$(wildcard ed25519/amd64-64-24k/*.s))
17 ED25519_donna=
18 ED25519OBJ= $(ED25519_@ED25519IMPL@)
20 MAINOBJ= \
21 main.c.o \
22 cpucount.c.o \
23 base32_to.c.o \
24 base32_from.c.o \
25 $(ED25519OBJ) \
26 keccak.c.o
28 TEST_BASE32OBJ= \
29 test_base32.c.o \
30 base32_to.c.o \
31 base32_from.c.o
33 TEST_BASE16OBJ= \
34 test_base16.c.o \
35 base16_to.c.o \
36 base16_from.c.o
38 TEST_ED25519OBJ= \
39 test_ed25519.c.o \
40 base16_to.c.o \
41 base16_from.c.o \
42 $(ED25519OBJ)
44 ALLO= $(sort \
45 $(MAINOBJ) \
46 $(TEST_BASE32OBJ) \
47 $(TEST_BASE16OBJ) \
48 $(TEST_ED25519OBJ) \
49 $(ED25519_ref10) \
50 $(ED25519_amd64_51_30k) \
51 $(ED25519_amd64_64_24k))
52 ALLC= $(patsubst %.c.o,%.c,$(filter %.c.o %.c,$(ALLO)))
53 CLEANO= $(filter %.o,$(ALLO))
55 MAINLIB= -lpthread -lsodium
56 TEST_ED25519LIB= -lsodium
58 EXE= mkp224o test_base32 test_base16 test_ed25519
60 default: mkp224o
62 all: $(EXE)
64 mkp224o: $(MAINOBJ)
65 $(CC) $(CFLAGS) $(LDFLAGS) -o $@.tmp $^ $(MAINLIB) && $(MV) $@.tmp $@
67 test_base32: $(TEST_BASE32OBJ)
68 $(CC) $(CFLAGS) $(LDFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
70 test_base16: $(TEST_BASE16OBJ)
71 $(CC) $(CFLAGS) $(LDFLAGS) -o $@.tmp $^ && $(MV) $@.tmp $@
73 test_ed25519: $(TEST_ED25519OBJ)
74 $(CC) $(CFLAGS) $(LDFLAGS) -o $@.tmp $^ $(TEST_ED25519LIB) && $(MV) $@.tmp $@
76 %.c.o: %.c
77 $(CC) $(CFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
79 %.s.o: %.s
80 $(CC) $(ASFLAGS) -c -o $@.tmp $< && $(MV) $@.tmp $@
82 clean:
83 $(RM) $(CLEANO)
84 $(RM) $(EXE)
86 depend:
87 makedepend -Y -fMakefile.in -o.c.o -- $(CSTD) $(ED25519_DEFS) -- $(ALLC)
89 # DO NOT DELETE THIS LINE
91 base16_from.c.o: types.h base16.h
92 base16_to.c.o: types.h base16.h
93 base32_from.c.o: types.h base32.h
94 base32_to.c.o: types.h base32.h
95 cpucount.c.o: cpucount.h
96 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/crypto_sign.h
97 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/ed25519.h
98 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
99 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
100 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/randombytes.h
101 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/ge25519.h
102 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/fe25519.h
103 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/sc25519.h
104 ed25519/amd64-51-30k/batch.c.o: ed25519/amd64-51-30k/hram.h
105 ed25519/amd64-51-30k/fe25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
106 ed25519/amd64-51-30k/fe25519_getparity.c.o: ed25519/amd64-51-30k/fe25519.h
107 ed25519/amd64-51-30k/fe25519_invert.c.o: ed25519/amd64-51-30k/fe25519.h
108 ed25519/amd64-51-30k/fe25519_iseq.c.o: ed25519/amd64-51-30k/fe25519.h
109 ed25519/amd64-51-30k/fe25519_iszero.c.o: ed25519/amd64-51-30k/fe25519.h
110 ed25519/amd64-51-30k/fe25519_neg.c.o: ed25519/amd64-51-30k/fe25519.h
111 ed25519/amd64-51-30k/fe25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
112 ed25519/amd64-51-30k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/fe25519.h
113 ed25519/amd64-51-30k/fe25519_setint.c.o: ed25519/amd64-51-30k/fe25519.h
114 ed25519/amd64-51-30k/fe25519_sub.c.o: ed25519/amd64-51-30k/fe25519.h
115 ed25519/amd64-51-30k/fe25519_unpack.c.o: ed25519/amd64-51-30k/fe25519.h
116 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/ge25519.h
117 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
118 ed25519/amd64-51-30k/ge25519_add.c.o: ed25519/amd64-51-30k/sc25519.h
119 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/ge25519.h
120 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/fe25519.h
121 ed25519/amd64-51-30k/ge25519_base.c.o: ed25519/amd64-51-30k/sc25519.h
122 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/ge25519.h
123 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/fe25519.h
124 ed25519/amd64-51-30k/ge25519_double.c.o: ed25519/amd64-51-30k/sc25519.h
125 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
126 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
127 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
128 ed25519/amd64-51-30k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519_base_slide_multiples.data
129 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/fe25519.h
130 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/ge25519.h
131 ed25519/amd64-51-30k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/sc25519.h
132 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
133 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
134 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
135 ed25519/amd64-51-30k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/index_heap.h
136 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
137 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/sc25519.h
138 ed25519/amd64-51-30k/ge25519_pack.c.o: ed25519/amd64-51-30k/ge25519.h
139 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/fe25519.h
140 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/sc25519.h
141 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519.h
142 ed25519/amd64-51-30k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519_base_niels_smalltables.data
143 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/fe25519.h
144 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/ge25519.h
145 ed25519/amd64-51-30k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/sc25519.h
146 ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
147 ed25519/amd64-51-30k/hram.c.o: ed25519/amd64-51-30k/hram.h
148 ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/sc25519.h
149 ed25519/amd64-51-30k/index_heap.c.o: ed25519/amd64-51-30k/index_heap.h
150 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
151 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
152 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
153 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
154 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/ge25519.h
155 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/fe25519.h
156 ed25519/amd64-51-30k/keypair.c.o: ed25519/amd64-51-30k/sc25519.h
157 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
158 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ed25519.h
159 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
160 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
161 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/ge25519.h
162 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/fe25519.h
163 ed25519/amd64-51-30k/open.c.o: ed25519/amd64-51-30k/sc25519.h
164 ed25519/amd64-51-30k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
165 ed25519/amd64-51-30k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/sc25519.h
166 ed25519/amd64-51-30k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
167 ed25519/amd64-51-30k/sc25519_iszero.c.o: ed25519/amd64-51-30k/sc25519.h
168 ed25519/amd64-51-30k/sc25519_mul.c.o: ed25519/amd64-51-30k/sc25519.h
169 ed25519/amd64-51-30k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
170 ed25519/amd64-51-30k/sc25519_slide.c.o: ed25519/amd64-51-30k/sc25519.h
171 ed25519/amd64-51-30k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
172 ed25519/amd64-51-30k/sc25519_window4.c.o: ed25519/amd64-51-30k/sc25519.h
173 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
174 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ed25519.h
175 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
176 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/ge25519.h
177 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/fe25519.h
178 ed25519/amd64-51-30k/sign.c.o: ed25519/amd64-51-30k/sc25519.h
179 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/crypto_sign.h
180 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/ed25519.h
181 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
182 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
183 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/randombytes.h
184 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/ge25519.h
185 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/fe25519.h
186 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/sc25519.h
187 ed25519/amd64-64-24k/batch.c.o: ed25519/amd64-51-30k/hram.h
188 ed25519/amd64-64-24k/fe25519_getparity.c.o: ed25519/amd64-51-30k/fe25519.h
189 ed25519/amd64-64-24k/fe25519_invert.c.o: ed25519/amd64-51-30k/fe25519.h
190 ed25519/amd64-64-24k/fe25519_iseq.c.o: ed25519/amd64-51-30k/fe25519.h
191 ed25519/amd64-64-24k/fe25519_iszero.c.o: ed25519/amd64-51-30k/fe25519.h
192 ed25519/amd64-64-24k/fe25519_neg.c.o: ed25519/amd64-51-30k/fe25519.h
193 ed25519/amd64-64-24k/fe25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
194 ed25519/amd64-64-24k/fe25519_pow2523.c.o: ed25519/amd64-51-30k/fe25519.h
195 ed25519/amd64-64-24k/fe25519_setint.c.o: ed25519/amd64-51-30k/fe25519.h
196 ed25519/amd64-64-24k/fe25519_unpack.c.o: ed25519/amd64-51-30k/fe25519.h
197 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/ge25519.h
198 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/fe25519.h
199 ed25519/amd64-64-24k/ge25519_add.c.o: ed25519/amd64-51-30k/sc25519.h
200 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/ge25519.h
201 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/fe25519.h
202 ed25519/amd64-64-24k/ge25519_base.c.o: ed25519/amd64-51-30k/sc25519.h
203 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/ge25519.h
204 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/fe25519.h
205 ed25519/amd64-64-24k/ge25519_double.c.o: ed25519/amd64-51-30k/sc25519.h
206 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
207 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
208 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
209 ed25519/amd64-64-24k/ge25519_double_scalarmult.c.o: ed25519/amd64-51-30k/ge25519_base_slide_multiples.data
210 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/fe25519.h
211 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/ge25519.h
212 ed25519/amd64-64-24k/ge25519_isneutral.c.o: ed25519/amd64-51-30k/sc25519.h
213 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/fe25519.h
214 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/sc25519.h
215 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/ge25519.h
216 ed25519/amd64-64-24k/ge25519_multi_scalarmult.c.o: ed25519/amd64-51-30k/index_heap.h
217 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/fe25519.h
218 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/sc25519.h
219 ed25519/amd64-64-24k/ge25519_pack.c.o: ed25519/amd64-51-30k/ge25519.h
220 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/fe25519.h
221 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/sc25519.h
222 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-51-30k/ge25519.h
223 ed25519/amd64-64-24k/ge25519_scalarmult_base.c.o: ed25519/amd64-64-24k/ge25519_base_niels.data
224 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/fe25519.h
225 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/ge25519.h
226 ed25519/amd64-64-24k/ge25519_unpackneg.c.o: ed25519/amd64-51-30k/sc25519.h
227 ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
228 ed25519/amd64-64-24k/hram.c.o: ed25519/amd64-51-30k/hram.h
229 ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-51-30k/sc25519.h
230 ed25519/amd64-64-24k/index_heap.c.o: ed25519/amd64-51-30k/index_heap.h
231 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
232 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
233 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
234 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
235 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/ge25519.h
236 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/fe25519.h
237 ed25519/amd64-64-24k/keypair.c.o: ed25519/amd64-51-30k/sc25519.h
238 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
239 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/ed25519.h
240 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
241 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
242 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/ge25519.h
243 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/fe25519.h
244 ed25519/amd64-64-24k/open.c.o: ed25519/amd64-51-30k/sc25519.h
245 ed25519/amd64-64-24k/sc25519_from32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
246 ed25519/amd64-64-24k/sc25519_from64bytes.c.o: ed25519/amd64-51-30k/sc25519.h
247 ed25519/amd64-64-24k/sc25519_from_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
248 ed25519/amd64-64-24k/sc25519_iszero.c.o: ed25519/amd64-51-30k/sc25519.h
249 ed25519/amd64-64-24k/sc25519_mul.c.o: ed25519/amd64-51-30k/sc25519.h
250 ed25519/amd64-64-24k/sc25519_mul_shortsc.c.o: ed25519/amd64-51-30k/sc25519.h
251 ed25519/amd64-64-24k/sc25519_slide.c.o: ed25519/amd64-51-30k/sc25519.h
252 ed25519/amd64-64-24k/sc25519_to32bytes.c.o: ed25519/amd64-51-30k/sc25519.h
253 ed25519/amd64-64-24k/sc25519_window4.c.o: ed25519/amd64-51-30k/sc25519.h
254 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
255 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/ed25519.h
256 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
257 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/ge25519.h
258 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/fe25519.h
259 ed25519/amd64-64-24k/sign.c.o: ed25519/amd64-51-30k/sc25519.h
260 ed25519/ref10/fe_0.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
261 ed25519/ref10/fe_1.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
262 ed25519/ref10/fe_add.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
263 ed25519/ref10/fe_cmov.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
264 ed25519/ref10/fe_copy.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
265 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/fe.h
266 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int32.h
267 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_int64.h
268 ed25519/ref10/fe_frombytes.c.o: ed25519/ref10/crypto_uint64.h
269 ed25519/ref10/fe_invert.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
270 ed25519/ref10/fe_invert.c.o: ed25519/ref10/pow225521.h
271 ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/fe.h
272 ed25519/ref10/fe_isnegative.c.o: ed25519/ref10/crypto_int32.h
273 ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/fe.h
274 ed25519/ref10/fe_isnonzero.c.o: ed25519/ref10/crypto_int32.h
275 ed25519/ref10/fe_isnonzero.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
276 ed25519/ref10/fe_mul.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
277 ed25519/ref10/fe_mul.c.o: ed25519/ref10/crypto_int64.h
278 ed25519/ref10/fe_neg.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
279 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/fe.h
280 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/crypto_int32.h
281 ed25519/ref10/fe_pow22523.c.o: ed25519/ref10/pow22523.h
282 ed25519/ref10/fe_sq.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
283 ed25519/ref10/fe_sq.c.o: ed25519/ref10/crypto_int64.h
284 ed25519/ref10/fe_sq2.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
285 ed25519/ref10/fe_sq2.c.o: ed25519/ref10/crypto_int64.h
286 ed25519/ref10/fe_sub.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
287 ed25519/ref10/fe_tobytes.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
288 ed25519/ref10/ge_add.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
289 ed25519/ref10/ge_add.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_add.h
290 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
291 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/crypto_int32.h
292 ed25519/ref10/ge_double_scalarmult.c.o: ed25519/ref10/base2.h
293 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
294 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/crypto_int32.h
295 ed25519/ref10/ge_frombytes.c.o: ed25519/ref10/d.h ed25519/ref10/sqrtm1.h
296 ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
297 ed25519/ref10/ge_madd.c.o: ed25519/ref10/crypto_int32.h
298 ed25519/ref10/ge_madd.c.o: ed25519/ref10/ge_madd.h
299 ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
300 ed25519/ref10/ge_msub.c.o: ed25519/ref10/crypto_int32.h
301 ed25519/ref10/ge_msub.c.o: ed25519/ref10/ge_msub.h
302 ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
303 ed25519/ref10/ge_p1p1_to_p2.c.o: ed25519/ref10/crypto_int32.h
304 ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
305 ed25519/ref10/ge_p1p1_to_p3.c.o: ed25519/ref10/crypto_int32.h
306 ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
307 ed25519/ref10/ge_p2_0.c.o: ed25519/ref10/crypto_int32.h
308 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
309 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/crypto_int32.h
310 ed25519/ref10/ge_p2_dbl.c.o: ed25519/ref10/ge_p2_dbl.h
311 ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
312 ed25519/ref10/ge_p3_0.c.o: ed25519/ref10/crypto_int32.h
313 ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
314 ed25519/ref10/ge_p3_dbl.c.o: ed25519/ref10/crypto_int32.h
315 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
316 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/crypto_int32.h
317 ed25519/ref10/ge_p3_to_cached.c.o: ed25519/ref10/d2.h
318 ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
319 ed25519/ref10/ge_p3_to_p2.c.o: ed25519/ref10/crypto_int32.h
320 ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
321 ed25519/ref10/ge_p3_tobytes.c.o: ed25519/ref10/crypto_int32.h
322 ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
323 ed25519/ref10/ge_precomp_0.c.o: ed25519/ref10/crypto_int32.h
324 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
325 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_int32.h
326 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/crypto_uint32.h
327 ed25519/ref10/ge_scalarmult_base.c.o: ed25519/ref10/base.h
328 ed25519/ref10/ge_sub.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
329 ed25519/ref10/ge_sub.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/ge_sub.h
330 ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
331 ed25519/ref10/ge_tobytes.c.o: ed25519/ref10/crypto_int32.h
332 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/randombytes.h
333 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/crypto_sign.h
334 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/ed25519.h
335 ed25519/ref10/keypair.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
336 ed25519/ref10/keypair.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
337 ed25519/ref10/keypair.c.o: ed25519/ref10/crypto_int32.h
338 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_sign.h
339 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/ed25519.h
340 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
341 ed25519/ref10/open.c.o: ed25519/amd64-51-30k/crypto_verify_32.h
342 ed25519/ref10/open.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
343 ed25519/ref10/open.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/sc.h
344 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
345 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint32.h
346 ed25519/ref10/sc_muladd.c.o: ed25519/ref10/crypto_uint64.h
347 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/sc.h ed25519/ref10/crypto_int64.h
348 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint32.h
349 ed25519/ref10/sc_reduce.c.o: ed25519/ref10/crypto_uint64.h
350 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/crypto_sign.h
351 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/ed25519.h
352 ed25519/ref10/sign.c.o: ed25519/amd64-51-30k/crypto_hash_sha512.h
353 ed25519/ref10/sign.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
354 ed25519/ref10/sign.c.o: ed25519/ref10/crypto_int32.h ed25519/ref10/sc.h
355 keccak.c.o: types.h keccak.h
356 main.c.o: types.h likely.h vec.h base32.h cpucount.h keccak.h
357 main.c.o: ed25519/ed25519.h ed25519/ref10/ed25519.h ed25519/ref10/ge.h
358 main.c.o: ed25519/ref10/fe.h ed25519/ref10/crypto_int32.h
359 main.c.o: ed25519/amd64-51-30k/ed25519.h ed25519/amd64-51-30k/ge25519.h
360 main.c.o: ed25519/amd64-51-30k/fe25519.h ed25519/amd64-51-30k/sc25519.h
361 main.c.o: ed25519/amd64-64-24k/ed25519.h ed25519/amd64-64-24k/ge25519.h
362 main.c.o: ed25519/ed25519-donna/ed25519-donna.h
363 main.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
364 main.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
365 main.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
366 main.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
367 main.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
368 main.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
369 main.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
370 main.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
371 main.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h
372 test_base16.c.o: types.h base16.h
373 test_base32.c.o: types.h base32.h
374 test_ed25519.c.o: types.h base16.h ed25519/ed25519.h ed25519/ref10/ed25519.h
375 test_ed25519.c.o: ed25519/ref10/ge.h ed25519/ref10/fe.h
376 test_ed25519.c.o: ed25519/ref10/crypto_int32.h ed25519/amd64-51-30k/ed25519.h
377 test_ed25519.c.o: ed25519/amd64-51-30k/ge25519.h
378 test_ed25519.c.o: ed25519/amd64-51-30k/fe25519.h
379 test_ed25519.c.o: ed25519/amd64-51-30k/sc25519.h
380 test_ed25519.c.o: ed25519/amd64-64-24k/ed25519.h
381 test_ed25519.c.o: ed25519/amd64-64-24k/ge25519.h
382 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna.h
383 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable.h
384 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-portable-identify.h
385 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-64bit.h
386 test_ed25519.c.o: ed25519/ed25519-donna/curve25519-donna-helpers.h
387 test_ed25519.c.o: ed25519/ed25519-donna/modm-donna-64bit.h
388 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-basepoint-table.h
389 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-tables.h
390 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-64bit-x86.h
391 test_ed25519.c.o: ed25519/ed25519-donna/ed25519-donna-impl-base.h