Makefile 304 Bytes
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
CC=gcc 
NISTGCCFLAGS =-std=c99 -Wall -Wextra -Wshadow -fsanitize=address,undefined -O2 
LFLAGS=-lm

all: acehash256_1 
#all:myacetest1

acehash256_1:acehash256
#myacetest1:myacetest

acehash256: genkat_hash.c hash.c ace.c
	$(CC) $(NISTGCCFLAGS) -o $@ $^ $(LFLAGS)

.PHONY: clean

clean: 
	-rm acehash256