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
692 B

CC = gcc
CFLAGS = -Wall -Os
11 years ago
OBJS = bignum.o ecdsa.o secp256k1.o sha2.o rand.o hmac.o bip32.o ripemd160.o
11 years ago
all: test-bip32 test-pubkey test-rfc6979 test-speed test-verify
11 years ago
%.o: %.c %.h
11 years ago
$(CC) $(CFLAGS) -o $@ -c $<
test-bip32: test-bip32.o $(OBJS)
gcc test-bip32.o $(OBJS) -o test-bip32
test-pubkey: test-pubkey.o $(OBJS)
gcc test-pubkey.o $(OBJS) -o test-pubkey
test-rfc6979: test-rfc6979.o $(OBJS)
gcc test-rfc6979.o $(OBJS) -o test-rfc6979
11 years ago
test-speed: test-speed.o $(OBJS)
11 years ago
gcc test-speed.o $(OBJS) -o test-speed
11 years ago
test-verify: test-verify.o $(OBJS)
gcc test-verify.o $(OBJS) -o test-verify -lcrypto
11 years ago
clean:
rm -f *.o test-bip32 test-pubkey test-rfc6979 test-speed test-verify