1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 09:58:59 +00:00
trezor-firmware/Makefile
2013-08-21 20:05:25 +02:00

18 lines
358 B
Makefile

CC = gcc
CFLAGS = -Wall -Os
OBJS = aux.o ecdsa.o secp256k1.o sha256.o rand.o
all: test-speed test-verify
%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $<
test-speed: test-speed.o $(OBJS)
gcc test-speed.o $(OBJS) -o test-speed
test-verify: test-verify.o $(OBJS)
gcc test-verify.o $(OBJS) -o test-verify -lcrypto
clean:
rm -f $(OBJS) test-speed test-verify