lyra2z: prevent filenames with different cases

+ rename blake2 to blake2s and reorder algo makefile
This commit is contained in:
Tanguy Pruvot 2018-05-18 12:52:10 +02:00
parent a9dc8c5dfd
commit 8c1964d0d9
7 changed files with 12 additions and 13 deletions

View file

@ -3,7 +3,7 @@
#include <string.h>
#include <stdio.h>
#include "Lyra2z.h"
#include "Lyra2-z.h"
#include <sha3/sph_blake.h>

View file

@ -8,19 +8,18 @@ CXXFLAGS = -O2 -I.. -march=native
CFLAGS= $(CXXFLAGS) -std=gnu99
LDFLAGS=-O2 -lgmp
SOURCES=lyra2re.c lyra2v2.c Lyra2.c lyra2z.c Lyra2z.c Sponge.c allium.c \
blake.c scrypt.c c11.c x11.c x12.c x13.c sha256.c sha256t.c jha.c keccak.c deep.c tribus.c \
hsr14.c sm3.c \
x14.c x15.c x17.c nist5.c fresh.c quark.c neoscrypt.c scryptn.c qubit.c skein.c groestl.c \
bitcore.c timetravel.c x16r.c x16s.c xevan.c bastion.c hmq17.c \
skein2.c zr5.c bmw.c luffa.c pentablake.c whirlpool.c whirlpoolx.c blakecoin.c \
blake2.c \
yescrypt.c yescrypt-opt.c sha256_Y.c lbry.c \
m7m.c magimath.cpp velvet.c \
SOURCES=lyra2re.c lyra2v2.c Lyra2.c lyra2z.c Lyra2-z.c Sponge.c allium.c \
c11.c x11.c x12.c x13.c hsr14.c sm3.c x14.c x15.c x17.c \
blake.c blakecoin.c blake2s.c jha.c keccak.c lbry.c tribus.c \
deep.c fresh.c groestl.c neoscrypt.c nist5.c quark.c qubit.c skein.c skein2.c \
bitcore.c timetravel.c x11evo.c x16r.c x16s.c xevan.c bastion.c hmq17.c \
bmw.c luffa.c pentablake.c vitalium.c whirlpool.c whirlpoolx.c zr5.c \
scrypt.c scryptn.c sha256.c sha256t.c \
yescrypt.c yescrypt-opt.c sha256_Y.c \
a5a.c a5amath.c m7m.c magimath.cpp velvet.c \
argon2a.c ar2/blake2b.c ar2/argon2.c ar2/ref.c ar2/cores.c ar2/ar2-scrypt-jane.c \
a5a.c a5amath.c \
hive.c pomelo.c \
phi.c polytimos.c skunk.c sib.c veltor.c gost.c x11evo.c vitalium.c
phi.c polytimos.c skunk.c sib.c veltor.c gost.c
OBJECTS=$(SOURCES:%.c=%.o) $(SOURCES:%.cpp=%.o)
OUTPUT=libalgos.a

View file

@ -170,7 +170,7 @@ void sha256_double_hash_hex(const char *input, char *output, unsigned int len);
#include "algos/lyra2z.h"
#include "algos/blake.h"
#include "algos/blakecoin.h"
#include "algos/blake2.h"
#include "algos/blake2s.h"
#include "algos/qubit.h"
#include "algos/groestl.h"
#include "algos/jha.h"