1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-19 04:48:12 +00:00
trezor-firmware/Makefile

27 lines
692 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: test-bip32 test-pubkey test-rfc6979 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 $<
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
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:
rm -f *.o test-bip32 test-pubkey test-rfc6979 test-speed test-verify