mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
19 lines
416 B
Makefile
19 lines
416 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -Os
|
|
OBJS = bignum.o ecdsa.o secp256k1.o sha2.o rand.o hmac.o bip32.o ripemd160.o bip39.o
|
|
OBJS += aescrypt.o aeskey.o aestab.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
|