mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
18 lines
367 B
Makefile
18 lines
367 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 -lcrypto
|
|
|
|
test-verify: test-verify.o $(OBJS)
|
|
gcc test-verify.o $(OBJS) -o test-verify -lcrypto
|
|
|
|
clean:
|
|
rm -f $(OBJS) test-speed test-verify
|