1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-09 17:39:04 +00:00
trezor-firmware/Makefile

90 lines
2.9 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 \
-Wshadow \
-Wpointer-arith \
-Wformat \
-Wreturn-type \
-Wsign-compare \
-Wmultichar \
-Wformat-nonliteral \
-Winit-self \
-Wuninitialized \
-Wformat-security \
-Werror
# disable sequence point warning because of AES code
2017-05-11 11:27:34 +00:00
CFLAGS += -I.
CFLAGS += -Iaes
CFLAGS += -Ichacha20poly1305
CFLAGS += -Ied25519-donna
CFLAGS += -DUSE_ETHEREUM=1
2016-09-27 20:48:36 +00:00
CFLAGS += -DUSE_GRAPHENE=1
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-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
2017-02-28 17:14:54 +00:00
SRCS += blake2b.c blake2s.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
OBJS = $(SRCS:.c=.o)
2013-08-18 15:30:23 +00:00
2017-04-21 11:44:10 +00:00
TESTLIBS = $(shell pkg-config --libs check) -lrt -lpthread -lm
TESTSSLLIBS = -lcrypto
all: test_check test_openssl test_speed tools libtrezor-crypto.so
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 $<
test_check: test_check.o $(OBJS)
$(CC) test_check.o $(OBJS) $(TESTLIBS) -o test_check
2013-09-11 17:02:22 +00:00
test_speed: test_speed.o $(OBJS)
2016-10-24 18:51:57 +00:00
$(CC) test_speed.o $(OBJS) -o test_speed
test_openssl: test_openssl.o $(OBJS)
$(CC) test_openssl.o $(OBJS) $(TESTSSLLIBS) -o test_openssl
2013-08-17 12:20:15 +00:00
libtrezor-crypto.so: $(SRCS)
$(CC) $(CFLAGS) -fPIC -shared $(SRCS) -o 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
rm -f test_check test_speed test_openssl libtrezor-crypto.so
2016-04-28 12:34:36 +00:00
rm -f tools/*.o tools/xpubaddrgen tools/mktable tools/bip39bruteforce