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.
wownero/src/crypto/crypto_ops_builder/Makefile

11 lines
184 B

CC=gcc
CFLAGS=-O2 -Wall
OBJS= fe25519.o ge25519.o sc25519.o sha512-blocks.o sha512-hash.o ed25519.o randombytes.o verify.o
test: test.o $(OBJS)
gcc -o $@ $^
clean:
rm -f *.o test