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