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

18 lines
381 B

CC = gcc
CFLAGS = -Wall -Os
OBJS = bignum.o ecdsa.o secp256k1.o sha2.o rand.o hmac.o bip32.o ripemd160.o blowfish.o
all: tests test-openssl
%.o: %.c %.h
$(CC) $(CFLAGS) -o $@ -c $<
tests: tests.o $(OBJS)
gcc tests.o $(OBJS) -lcheck -o tests
test-openssl: test-openssl.o $(OBJS)
gcc test-openssl.o $(OBJS) -o test-openssl -lcrypto
clean:
rm -f *.o tests test-openssl