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
path: root/b2sum
diff options
context:
space:
mode:
authorMangix <rosenp@gmail.com>2013-03-12 14:06:10 +0400
committerMangix <rosenp@gmail.com>2013-03-12 14:06:10 +0400
commit7d7f92fa957db183adfe339a55c6f9dded646cff (patch)
treebd607c437f4236ff92ccd5434b2419468b2fec80 /b2sum
parentfb714d2c830ec524bd3cbb5a45fe70fd90fe5c84 (diff)
Fix makefiles
Diffstat (limited to 'b2sum')
-rw-r--r--b2sum/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/b2sum/makefile b/b2sum/makefile
index 806cc72..5b79ee2 100644
--- a/b2sum/makefile
+++ b/b2sum/makefile
@@ -1,7 +1,7 @@
CC=gcc
CFLAGS=-std=c99 -O3 -march=native -I../sse -static -fopenmp
LIBS=
-#FILES=blake2sum.c ../ref/blake2b-ref.c ../ref/blake2s-ref.c ../ref/blake2bp-ref.c ../ref/blake2sp-ref.c
+#FILES=b2sum.c ../ref/blake2b-ref.c ../ref/blake2s-ref.c ../ref/blake2bp-ref.c ../ref/blake2sp-ref.c
FILES=b2sum.c ../sse/blake2b.c ../sse/blake2s.c ../sse/blake2bp.c ../sse/blake2sp.c
all: $(FILES)
$(CC) $(FILES) $(CFLAGS) $(LIBS) -o b2sum