Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJP Aumasson <jeanphilippe.aumasson@gmail.com>2016-10-12 11:15:41 +0300
committerJP Aumasson <jeanphilippe.aumasson@gmail.com>2016-10-12 11:15:41 +0300
commitf5c56ea028bdf61d26ff5366d390e81ce1452f54 (patch)
treecc5cb4bc8ad5c46ad198020058382674159a2fdd
parentde31f550f3aef856472a7e70a6481136553d5097 (diff)
-Wall, clean kats
-rw-r--r--ref/makefile4
-rw-r--r--sse/makefile4
2 files changed, 4 insertions, 4 deletions
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)