1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-09-16 08:31:34 +02:00

-Wall, clean kats

This commit is contained in:
JP Aumasson 2016-10-12 10:15:41 +02:00
parent de31f550f3
commit f5c56ea028
2 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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)