mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 09:28:13 +00:00
18 lines
357 B
Makefile
18 lines
357 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall
|
|
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 -lcrypto
|
|
|
|
test-verify: test-verify.o $(OBJS)
|
|
gcc test-verify.o $(OBJS) -o test-verify -lcrypto
|
|
|
|
clean:
|
|
rm -f $(OBJS) test-speed test-verify
|