GNUmakefile.in 30 KB

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