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:
authorSamuel Neves <sneves@dei.uc.pt>2014-08-06 14:31:37 +0400
committerSamuel Neves <sneves@dei.uc.pt>2014-08-06 14:31:37 +0400
commit77ede9e4db21892f1c5bebc4def2c8c1c569f5cd (patch)
tree1daca9a58a4cb100b2635bf96971852ca5063c03
parent22a1ce9b2f81115068688989a1c325662e026b52 (diff)
Fix makefile
-rw-r--r--ref/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/ref/makefile b/ref/makefile
index 29b9700..ba7af59 100644
--- a/ref/makefile
+++ b/ref/makefile
@@ -10,10 +10,10 @@ blake2b: blake2b-ref.c
$(CC) blake2b-ref.c -o $@ $(CFLAGS) -DBLAKE2B_SELFTEST
blake2sp: blake2sp-ref.c blake2s-ref.c
- $(CC) blake2sp-ref.c -o $@ $(CFLAGS) -DBLAKE2SP_SELFTEST
+ $(CC) blake2sp-ref.c blake2s-ref.c -o $@ $(CFLAGS) -DBLAKE2SP_SELFTEST
blake2bp: blake2bp-ref.c blake2b-ref.c
- $(CC) blake2bp-ref.c -o $@ $(CFLAGS) -DBLAKE2BP_SELFTEST
+ $(CC) blake2bp-ref.c blake2b-ref.c -o $@ $(CFLAGS) -DBLAKE2BP_SELFTEST
kat:
$(CC) $(CFLAGS) -o genkat genkat.c blake2b-ref.c blake2s-ref.c blake2sp-ref.c blake2bp-ref.c