1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-22 05:10:56 +00:00
trezor-firmware/Makefile

21 lines
460 B
Makefile
Raw Normal View History

2013-08-21 16:20:52 +00:00
CC = gcc
CFLAGS = -Wall -Os
2013-09-15 23:32:56 +00:00
OBJS = bignum.o ecdsa.o secp256k1.o sha2.o rand.o hmac.o bip32.o ripemd160.o
2013-08-18 15:30:23 +00:00
all: tests test-speed test-verify
2013-08-17 12:20:15 +00:00
2013-09-19 12:52:52 +00:00
%.o: %.c %.h
2013-08-17 12:20:15 +00:00
$(CC) $(CFLAGS) -o $@ -c $<
tests: tests.o $(OBJS)
gcc tests.o $(OBJS) -lcheck -o tests
2013-09-11 17:02:22 +00:00
2013-08-18 15:30:23 +00:00
test-speed: test-speed.o $(OBJS)
2013-08-21 18:05:25 +00:00
gcc test-speed.o $(OBJS) -o test-speed
2013-08-18 15:30:23 +00:00
test-verify: test-verify.o $(OBJS)
gcc test-verify.o $(OBJS) -o test-verify -lcrypto
2013-08-17 12:20:15 +00:00
clean:
rm -f *.o tests test-speed test-verify