mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 19:55:53 +03:00
b1bc4b54f3
* jb/rnv-restage: build: patch windows uv_pipe impl to allow null writes build: update pmnsh to support cachix text/x-nix-narinfo responses vere: renames terminal streams for clarity, removes unused uv_tcp_t vere: suppress null writes in term.c Revert "Merge pull request #4463 from urbit/m/next-gen-term" * jb/rnv-fixes: vere: bumps versions vere: fixes crash (null deref) in comet booting u3: fixes printf in c3_assert() * frodwith/keccak: jets: ice keccak working keccak jets urcrypt: fixing some typos - now builds Squashed 'pkg/urcrypt/keccak-tiny/' content from commit 9b438dc0f7 urcrypt,jets: initial commit of keccak material * botter-nidnul/release/next-vere: urcrypt: argon2 only optimize for x86_64 on x86_64
131 lines
3.7 KiB
Makefile
131 lines
3.7 KiB
Makefile
ACLOCAL_AMFLAGS = -I build-aux/m4
|
|
|
|
AM_CFLAGS = -Wall -g -O3
|
|
|
|
lib_LTLIBRARIES = liburcrypt.la
|
|
noinst_LTLIBRARIES = libed25519.la \
|
|
libge_additions.la \
|
|
libargon2.la \
|
|
libkeccak_tiny.la \
|
|
libscrypt.la
|
|
|
|
include_HEADERS = urcrypt/urcrypt.h
|
|
noinst_HEADERS = urcrypt/util.h \
|
|
ed25519/src/ed25519.h \
|
|
ed25519/src/ge.h \
|
|
ge-additions/ge-additions.h \
|
|
argon2/include/argon2.h \
|
|
argon2/src/blake2/blake2.h \
|
|
scrypt/sha256.h \
|
|
scrypt/libscrypt.h
|
|
|
|
# main library
|
|
pkgconfig_DATA = liburcrypt-$(URCRYPT_API_VERSION).pc
|
|
DISTCLEANFILES = $(pkgconfig_DATA)
|
|
|
|
liburcrypt_la_CPPFLAGS = -I$(srcdir)/ed25519/src \
|
|
-I$(srcdir)/ge-additions \
|
|
-I$(srcdir)/argon2/include \
|
|
-I$(srcdir)/argon2/src/blake2 \
|
|
-I$(srcdir)/keccak-tiny \
|
|
-I$(srcdir)/scrypt
|
|
liburcrypt_la_LIBADD = $(LIBCRYPTO_LIBS) \
|
|
$(LIBSECP256K1_LIBS) \
|
|
$(LIBAES_SIV_LIBS) \
|
|
libed25519.la \
|
|
libge_additions.la \
|
|
libargon2.la \
|
|
libkeccak_tiny.la \
|
|
libscrypt.la
|
|
liburcrypt_la_CFLAGS = $(LIBCRYPTO_CFLAGS) \
|
|
$(LIBSECP256K1_CFLAGS) \
|
|
$(LIBAES_SIV_CFLAGS)
|
|
# urcrypt_ is used for public symbols, urcrypt__ for internal.
|
|
liburcrypt_la_LDFLAGS = -export-symbols-regex '^urcrypt_[^_]' \
|
|
-version-info $(URCRYPT_LT_VERSION)
|
|
liburcrypt_la_SOURCES = urcrypt/aes_cbc.c \
|
|
urcrypt/aes_ecb.c \
|
|
urcrypt/aes_siv.c \
|
|
urcrypt/argon.c \
|
|
urcrypt/ed25519.c \
|
|
urcrypt/ge_additions.c \
|
|
urcrypt/ripemd.c \
|
|
urcrypt/scrypt.c \
|
|
urcrypt/keccak.c \
|
|
urcrypt/secp256k1.c \
|
|
urcrypt/sha.c \
|
|
urcrypt/util.c \
|
|
urcrypt/util.h
|
|
|
|
# ed25519
|
|
libed25519_la_CFLAGS = -Wno-unused-result
|
|
libed25519_la_SOURCES = ed25519/src/fixedint.h \
|
|
ed25519/src/sha512.h \
|
|
ed25519/src/fe.h \
|
|
ed25519/src/precomp_data.h \
|
|
ed25519/src/sc.h \
|
|
ed25519/src/add_scalar.c \
|
|
ed25519/src/keypair.c \
|
|
ed25519/src/sc.c \
|
|
ed25519/src/seed.c \
|
|
ed25519/src/verify.c \
|
|
ed25519/src/ge.c \
|
|
ed25519/src/fe.c \
|
|
ed25519/src/key_exchange.c \
|
|
ed25519/src/sha512.c \
|
|
ed25519/src/sign.c
|
|
|
|
# ge-additions
|
|
libge_additions_la_CPPFLAGS = -I$(srcdir)/ed25519/src
|
|
libge_additions_la_CFLAGS = -Werror -pedantic -std=gnu99
|
|
libge_additions_la_SOURCES = ge-additions/ge-additions.c
|
|
|
|
# argon2
|
|
libargon2_la_CPPFLAGS = -I$(srcdir)/argon2/include -DARGON2_NO_THREADS
|
|
libargon2_la_CFLAGS = -Wno-unused-value -Wno-unused-function
|
|
libargon2_la_SOURCES = argon2/src/core.h \
|
|
argon2/src/thread.h \
|
|
argon2/src/encoding.h \
|
|
argon2/src/blake2/blake2-impl.h \
|
|
argon2/src/blake2/blamka-round-opt.h \
|
|
argon2/src/blake2/blamka-round-ref.h \
|
|
argon2/src/argon2.c \
|
|
argon2/src/core.c \
|
|
argon2/src/blake2/blake2b.c \
|
|
argon2/src/thread.c \
|
|
argon2/src/encoding.c
|
|
|
|
# argon2 different sources for different CPU architectures
|
|
# opt.c requires SSE instructions and won't work on AArch64 et al.
|
|
if ARCH_X86_64
|
|
libargon2_la_SOURCES += \
|
|
argon2/src/opt.c
|
|
endif
|
|
if ARCH_GENERIC
|
|
libargon2_la_SOURCES += \
|
|
argon2/src/ref.c
|
|
endif
|
|
|
|
# scrypt
|
|
libscrypt_la_CPPFLAGS = -D_FORTIFY_SOURCE=2
|
|
libscrypt_la_SOURCES = scrypt/b64.c \
|
|
scrypt/crypto-mcf.c \
|
|
scrypt/crypto-scrypt-saltgen.c \
|
|
scrypt/crypto_scrypt-check.c \
|
|
scrypt/crypto_scrypt-hash.c \
|
|
scrypt/crypto_scrypt-hexconvert.c \
|
|
scrypt/crypto_scrypt-nosse.c \
|
|
scrypt/main.c \
|
|
scrypt/sha256.c \
|
|
scrypt/slowequals.c \
|
|
scrypt/b64.h \
|
|
scrypt/crypto_scrypt-hexconvert.h \
|
|
scrypt/slowequals.h \
|
|
scrypt/sysendian.h
|
|
|
|
# keccak-tiny
|
|
libkeccak_tiny_la_CFLAGS = -march=native -std=c11 -Wextra -Wpedantic -Wall
|
|
libkeccak_tiny_la_SOURCES = keccak-tiny/keccak-tiny.c \
|
|
keccak-tiny/define-macros.h \
|
|
keccak-tiny/keccak-tiny.h
|