1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 22:38:08 +00:00
trezor-firmware/Makefile

21 lines
458 B
Makefile
Raw Normal View History

2013-08-21 16:20:52 +00:00
CC = gcc
CFLAGS = -Wall -Os
2013-09-10 19:47:06 +00:00
OBJS = aux.o ecdsa.o secp256k1.o sha2.o rand.o hmac.o
2013-08-18 15:30:23 +00:00
2013-09-11 17:02:22 +00:00
all: test-rfc6979 test-speed test-verify
2013-08-17 12:20:15 +00:00
%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $<
2013-09-11 17:02:22 +00:00
test-rfc6979: test-rfc6979.o $(OBJS)
gcc test-rfc6979.o $(OBJS) -o test-rfc6979
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:
2013-08-18 15:30:23 +00:00
rm -f $(OBJS) test-speed test-verify