diff --git a/ref/makefile b/ref/makefile index ecf0f09..999df9a 100644 --- a/ref/makefile +++ b/ref/makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-O2 -I../testvectors +CFLAGS=-O2 -I../testvectors -Wall BLAKEBINS=blake2s blake2b blake2sp blake2bp blake2xs blake2xb all: $(BLAKEBINS) check @@ -37,4 +37,4 @@ kat: ./genkat-json > blake2-kat.json clean: - rm -rf *.o genkat-c genkat-json $(BLAKEBINS) + rm -rf *.o genkat-c genkat-json blake2-kat.h blake2-kat.json $(BLAKEBINS) diff --git a/sse/makefile b/sse/makefile index 566de88..7b83967 100644 --- a/sse/makefile +++ b/sse/makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-O3 -I../testvectors +CFLAGS=-O3 -I../testvectors -Wall BLAKEBINS=blake2s blake2b blake2sp blake2bp blake2xs blake2xb all: $(BLAKEBINS) check @@ -37,4 +37,4 @@ kat: ./genkat-json > blake2-kat.json clean: - rm -rf *.o genkat-c genkat-json $(BLAKEBINS) + rm -rf *.o genkat-c genkat-json blake2-kat.h blake2-kat.json $(BLAKEBINS)