2014-07-07 19:34:54 +00:00
|
|
|
CC = gcc
|
|
|
|
|
2015-07-07 16:30:33 +00:00
|
|
|
OPTFLAGS = -O3 -g
|
2014-07-07 19:34:54 +00:00
|
|
|
|
|
|
|
CFLAGS += $(OPTFLAGS) \
|
2016-04-27 21:32:14 +00:00
|
|
|
-std=c99 \
|
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
|
|
|
|
CFLAGS += -Wno-sequence-point
|
2016-04-22 15:47:48 +00:00
|
|
|
CFLAGS += -DED25519_CUSTOMRANDOM=1
|
|
|
|
CFLAGS += -DED25519_CUSTOMHASH=1
|
2016-04-26 00:14:47 +00:00
|
|
|
CFLAGS += -DED25519_NO_INLINE_ASM
|
|
|
|
CFLAGS += -DED25519_FORCE_32BIT=1
|
2016-04-22 15:47:48 +00:00
|
|
|
CFLAGS += -Ied25519-donna -I.
|
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
|
2015-03-12 14:53:41 +00:00
|
|
|
CFLAGS += -DUSE_PRECOMPUTED_IV=0 -DUSE_PRECOMPUTED_CP=0
|
2014-07-03 14:59:41 +00:00
|
|
|
endif
|
2014-07-07 19:34:54 +00:00
|
|
|
|
2016-04-22 15:47:48 +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
|
2015-08-05 14:16:24 +00:00
|
|
|
SRCS += ripemd160.c
|
|
|
|
SRCS += sha2.c
|
2016-04-26 09:09:29 +00:00
|
|
|
SRCS += sha3.c
|
2015-08-05 14:16:24 +00:00
|
|
|
SRCS += aescrypt.c aeskey.c aestab.c aes_modes.c
|
2016-04-25 14:32:38 +00:00
|
|
|
SRCS += ed25519-donna/ed25519.c
|
2015-08-05 14:16:24 +00:00
|
|
|
|
|
|
|
OBJS = $(SRCS:.c=.o)
|
2013-08-18 15:30:23 +00:00
|
|
|
|
2014-07-04 19:11:27 +00:00
|
|
|
TESTLIBS = -lcheck -lrt -lpthread -lm
|
|
|
|
TESTSSLLIBS = -lcrypto
|
|
|
|
|
2016-04-28 12:34:36 +00:00
|
|
|
all: tests test-openssl libtrezor-crypto.so test_speed tools
|
2013-08-17 12:20:15 +00:00
|
|
|
|
2014-07-07 18:14:15 +00:00
|
|
|
%.o: %.c %.h options.h
|
2013-08-17 12:20:15 +00:00
|
|
|
$(CC) $(CFLAGS) -o $@ -c $<
|
|
|
|
|
2013-09-21 15:41:02 +00:00
|
|
|
tests: tests.o $(OBJS)
|
2014-08-11 00:04:42 +00:00
|
|
|
$(CC) tests.o $(OBJS) $(TESTLIBS) -o tests
|
2013-09-11 17:02:22 +00:00
|
|
|
|
2016-04-26 00:14:47 +00:00
|
|
|
test_speed: test_speed.o $(OBJS)
|
|
|
|
$(CC) test_speed.o $(OBJS) $(TESTLIBS) -o test_speed
|
|
|
|
|
2013-09-22 10:42:35 +00:00
|
|
|
test-openssl: test-openssl.o $(OBJS)
|
2014-08-11 00:04:42 +00:00
|
|
|
$(CC) test-openssl.o $(OBJS) $(TESTSSLLIBS) -o test-openssl
|
2013-08-17 12:20:15 +00:00
|
|
|
|
2015-08-05 14:16:24 +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:
|
2016-04-26 00:14:47 +00:00
|
|
|
rm -f *.o ed25519-donna/*.o tests 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
|