mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
9 lines
106 B
Makefile
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
|
|
|