2024-02-08 12:46:08 +01:00

9 lines
106 B
Makefile

all: hash
hash: hash.c
gcc -O3 -mavx2 -march=native -I../../include -o hash hash.c
clean:
rm -f hash