You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/Makefile

14 lines
213 B

11 years ago
CC = gcc
CFLAGS = -Wall
OBJS = aux.o ecdsa.o secp256k1.o sha256.o rand.o test.o
NAME = test
%.o: %.c
$(CC) $(CFLAGS) -o $@ -c $<
$(NAME): $(OBJS)
gcc $(OBJS) -o $(NAME) -lcrypto
clean:
rm -f $(OBJS) $(NAME)