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 \
|
2018-04-04 17:28:42 +00:00
|
|
|
-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 \
|
2018-04-04 20:13:16 +00:00
|
|
|
-Werror
|
2014-07-07 19:34:54 +00:00
|
|
|
|
2017-05-11 11:27:34 +00:00
|
|
|
CFLAGS += -I.
|
2016-06-13 21:13:37 +00:00
|
|
|
CFLAGS += -DUSE_ETHEREUM=1
|
2016-09-27 20:48:36 +00:00
|
|
|
CFLAGS += -DUSE_GRAPHENE=1
|
2017-05-18 19:17:35 +00:00
|
|
|
CFLAGS += -DUSE_NEM=1
|
2018-05-16 00:12:17 +00:00
|
|
|
CFLAGS += -DUSE_MONERO=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
|
2017-01-11 14:33:46 +00:00
|
|
|
CFLAGS += -DUSE_PRECOMPUTED_CP=0
|
2014-07-03 14:59:41 +00:00
|
|
|
endif
|
2014-07-07 19:34:54 +00:00
|
|
|
|
2017-05-25 19:50:53 +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
|
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
|
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
|
2017-07-31 14:40:09 +00:00
|
|
|
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-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
|
2018-04-05 09:15:05 +00:00
|
|
|
SRCS += segwit_addr.c cash_addr.c
|
2018-01-18 14:18:09 +00:00
|
|
|
SRCS += memzero.c
|
2015-08-05 14:16:24 +00:00
|
|
|
|
|
|
|
OBJS = $(SRCS:.c=.o)
|
2013-08-18 15:30:23 +00:00
|
|
|
|
2018-01-12 16:24:47 +00:00
|
|
|
TESTLIBS = $(shell pkg-config --libs check) -lpthread -lm
|
2018-04-03 15:58:19 +00:00
|
|
|
TESTSSLLIBS = $(shell pkg-config --libs openssl)
|
2014-07-04 19:11:27 +00:00
|
|
|
|
2018-04-05 11:26:59 +00:00
|
|
|
all: tools tests
|
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 $<
|
|
|
|
|
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 09:15:05 +00:00
|
|
|
|
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-04-05 11:26:59 +00:00
|
|
|
tests/test_check.o: tests/test_check_segwit.h tests/test_check_cashaddr.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
|
2016-04-26 00:14:47 +00:00
|
|
|
|
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) -fPIC -shared $(SRCS) -o tests/libtrezor-crypto.so
|
2015-08-05 14:16:24 +00:00
|
|
|
|
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
|