mirror of
https://github.com/red0124/ssp.git
synced 2025-04-20 18:47:57 +02:00
9 lines
126 B
Makefile
9 lines
126 B
Makefile
BIN=ssp_fuzz
|
|
SRC=ssp_fuzz.cpp
|
|
|
|
all:
|
|
${CXX} ${SRC} -fsanitize=fuzzer -std=c++17 -o ${BIN}
|
|
|
|
run:
|
|
./${BIN} -max_total_time=300
|