You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/Makefile

27 lines
680 B

CC = gcc
CFLAGS = -Os -Wall -Wextra -Wno-sequence-point -Wundef
ifdef SMALL
CFLAGS += -DUSE_PRECOMPUTED_IV=0 -DUSE_PRECOMPUTED_CP=0 -DUSE_PUBKEY_VALIDATE=0
endif
OBJS = bignum.o ecdsa.o secp256k1.o rand.o hmac.o bip32.o bip39.o pbkdf2.o base58.o
OBJS += ripemd160.o
OBJS += sha2.o
OBJS += aescrypt.o aeskey.o aestab.o aes_modes.o
11 years ago
TESTLIBS = -lcheck -lrt -lpthread -lm
TESTSSLLIBS = -lcrypto
all: tests test-openssl
11 years ago
%.o: %.c %.h options.h
11 years ago
$(CC) $(CFLAGS) -o $@ -c $<
tests: tests.o $(OBJS)
gcc tests.o $(OBJS) $(TESTLIBS) -o tests
test-openssl: test-openssl.o $(OBJS)
gcc test-openssl.o $(OBJS) $(TESTSSLLIBS) -o test-openssl
11 years ago
clean:
rm -f *.o tests test-openssl