forked from
gazagnaire.org/ocaml-crypto
upstream: https://github.com/mirage/mirage-crypto
1(library
2 (name crypto)
3 (public_name crypto)
4 (libraries eqaf)
5 (private_modules aead chacha20 ccm cipher_block cipher_stream native
6 poly1305 uncommon)
7 (foreign_stubs
8 (language c)
9 (names detect_cpu_features misc misc_sse aes_generic aes_aesni
10 ghash_generic ghash_pclmul ghash_ctmul des_generic chacha poly1305-donna
11 entropy_cpu_stubs)
12 (flags
13 (:standard)
14 (:include cflags_optimized.sexp)))
15 (foreign_stubs
16 (language c)
17 (names chacha_generic)
18 (flags
19 (:standard)
20 (:include cflags.sexp))))
21
22(env
23 (dev
24 (c_flags
25 (:include cflags_warn.sexp))))
26
27(include_subdirs unqualified)
28
29(rule
30 (targets cflags.sexp cflags_optimized.sexp cflags_warn.sexp)
31 (action
32 (run ../config/cfg.exe)))