1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/crypto/Makefile

116 lines
3.7 KiB
Makefile
Raw Normal View History

2017-04-01 23:07:00 +00:00
CC ?= gcc
2014-07-07 19:34:54 +00:00
2017-04-01 23:07:00 +00:00
OPTFLAGS ?= -O3 -g
2014-07-07 19:34:54 +00:00
CFLAGS += $(OPTFLAGS) \
2016-05-12 14:16:01 +00:00
-std=gnu99 \
2014-07-07 19:34:54 +00:00
-W \
-Wall \
-Wextra \
-Wimplicit-function-declaration \
-Wredundant-decls \
-Wstrict-prototypes \
-Wundef \
2018-04-04 20:13:16 +00:00
-Wshadow \
2014-07-07 19:34:54 +00:00
-Wpointer-arith \
-Wformat \
-Wreturn-type \
-Wsign-compare \
-Wmultichar \
-Wformat-nonliteral \
-Winit-self \
-Wuninitialized \
-Wformat-security \
-Wno-missing-braces \
2018-04-04 20:13:16 +00:00
-Werror
2014-07-07 19:34:54 +00:00
2018-07-11 19:26:07 +00:00
VALGRIND ?= 1
2017-05-11 11:27:34 +00:00
CFLAGS += -I.
2018-07-11 19:26:07 +00:00
CFLAGS += -DVALGRIND=$(VALGRIND)
CFLAGS += -DUSE_ETHEREUM=1
2016-09-27 20:48:36 +00:00
CFLAGS += -DUSE_GRAPHENE=1
2018-07-31 12:20:18 +00:00
CFLAGS += -DUSE_KECCAK=1
CFLAGS += -DUSE_MONERO=1
2018-07-31 12:20:18 +00:00
CFLAGS += -DUSE_NEM=1
2018-06-19 09:50:59 +00:00
CFLAGS += -DUSE_CARDANO=1
2018-04-03 15:58:19 +00:00
CFLAGS += $(shell pkg-config --cflags openssl)
2014-07-07 19:34:54 +00:00
# disable certain optimizations and features when small footprint is required
2014-07-03 14:59:41 +00:00
ifdef SMALL
CFLAGS += -DUSE_PRECOMPUTED_CP=0
2014-07-03 14:59:41 +00:00
endif
2014-07-07 19:34:54 +00:00
SRCS = bignum.c ecdsa.c curves.c secp256k1.c nist256p1.c rand.c hmac.c bip32.c bip39.c pbkdf2.c base58.c base32.c
2016-10-10 09:22:03 +00:00
SRCS += address.c
2016-05-16 12:43:09 +00:00
SRCS += script.c
SRCS += ripemd160.c
SRCS += sha2.c
2016-04-26 09:09:29 +00:00
SRCS += sha3.c
2017-12-09 17:59:20 +00:00
SRCS += hasher.c
2017-05-08 14:46:53 +00:00
SRCS += aes/aescrypt.c aes/aeskey.c aes/aestab.c aes/aes_modes.c
SRCS += ed25519-donna/curve25519-donna-32bit.c ed25519-donna/curve25519-donna-helpers.c ed25519-donna/modm-donna-32bit.c
SRCS += ed25519-donna/ed25519-donna-basepoint-table.c ed25519-donna/ed25519-donna-32bit-tables.c ed25519-donna/ed25519-donna-impl-base.c
SRCS += ed25519-donna/ed25519.c ed25519-donna/curve25519-donna-scalarmult-base.c ed25519-donna/ed25519-sha3.c ed25519-donna/ed25519-keccak.c
2018-07-05 00:10:34 +00:00
SRCS += monero/base58.c
SRCS += monero/serialize.c
SRCS += monero/xmr.c
SRCS += monero/range_proof.c
2017-12-09 22:51:16 +00:00
SRCS += blake256.c
2017-02-28 17:14:54 +00:00
SRCS += blake2b.c blake2s.c
2018-03-11 04:35:45 +00:00
SRCS += groestl.c
2017-05-11 11:27:34 +00:00
SRCS += chacha20poly1305/chacha20poly1305.c chacha20poly1305/chacha_merged.c chacha20poly1305/poly1305-donna.c chacha20poly1305/rfc7539.c
2017-08-12 11:43:49 +00:00
SRCS += rc4.c
2017-05-19 17:17:24 +00:00
SRCS += nem.c
SRCS += segwit_addr.c cash_addr.c
SRCS += memzero.c
SRCS += shamir.c
SRCS += hmac_drbg.c
SRCS += rfc6979.c
2019-06-23 10:18:24 +00:00
SRCS += slip39.c
OBJS = $(SRCS:.c=.o)
2013-08-18 15:30:23 +00:00
TESTLIBS = $(shell pkg-config --libs check) -lpthread -lm
2018-04-03 15:58:19 +00:00
TESTSSLLIBS = $(shell pkg-config --libs openssl)
2018-04-05 11:26:59 +00:00
all: tools tests
2013-08-17 12:20:15 +00:00
%.o: %.c %.h options.h
2013-08-17 12:20:15 +00:00
$(CC) $(CFLAGS) -o $@ -c $<
2018-04-05 11:26:59 +00:00
tests: tests/test_check tests/test_openssl tests/test_speed tests/libtrezor-crypto.so tests/aestst
2018-04-05 11:26:59 +00:00
tests/aestst: aes/aestst.o aes/aescrypt.o aes/aeskey.o aes/aestab.o
2017-08-14 12:25:35 +00:00
$(CC) $^ -o $@
2018-07-05 00:10:34 +00:00
tests/test_check.o: tests/test_check_cardano.h tests/test_check_monero.h tests/test_check_cashaddr.h tests/test_check_segwit.h
2013-09-11 17:02:22 +00:00
2018-04-05 11:26:59 +00:00
tests/test_check: tests/test_check.o $(OBJS)
$(CC) tests/test_check.o $(OBJS) $(TESTLIBS) -o tests/test_check
2018-04-05 11:26:59 +00:00
tests/test_speed: tests/test_speed.o $(OBJS)
$(CC) tests/test_speed.o $(OBJS) -o tests/test_speed
2013-08-17 12:20:15 +00:00
2018-04-05 11:26:59 +00:00
tests/test_openssl: tests/test_openssl.o $(OBJS)
$(CC) tests/test_openssl.o $(OBJS) $(TESTSSLLIBS) -o tests/test_openssl
tests/libtrezor-crypto.so: $(SRCS)
$(CC) $(CFLAGS) -DAES_128 -DAES_192 -fPIC -shared $(SRCS) -o tests/libtrezor-crypto.so
2016-04-28 12:34:36 +00:00
tools: tools/xpubaddrgen tools/mktable tools/bip39bruteforce
tools/xpubaddrgen: tools/xpubaddrgen.o $(OBJS)
$(CC) tools/xpubaddrgen.o $(OBJS) -o tools/xpubaddrgen
tools/mktable: tools/mktable.o $(OBJS)
$(CC) tools/mktable.o $(OBJS) -o tools/mktable
tools/bip39bruteforce: tools/bip39bruteforce.o $(OBJS)
$(CC) tools/bip39bruteforce.o $(OBJS) -o tools/bip39bruteforce
2013-08-17 12:20:15 +00:00
clean:
2017-05-11 11:27:34 +00:00
rm -f *.o aes/*.o chacha20poly1305/*.o ed25519-donna/*.o
2018-04-05 11:26:59 +00:00
rm -f tests/test_check tests/test_speed tests/test_openssl tests/libtrezor-crypto.so tests/aestst
2016-04-28 12:34:36 +00:00
rm -f tools/*.o tools/xpubaddrgen tools/mktable tools/bip39bruteforce