mirror of
https://github.com/BLAKE2/BLAKE2
synced 2024-11-23 02:42:10 +01:00
11 lines
345 B
Makefile
11 lines
345 B
Makefile
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 ../sse/blake2b.c ../sse/blake2s.c ../sse/blake2bp.c ../sse/blake2sp.c
|
|
all: $(FILES)
|
|
$(CC) $(FILES) $(CFLAGS) $(LIBS) -o b2sum
|
|
|
|
clean:
|
|
rm -f b2sum
|