mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
8 lines
128 B
Makefile
8 lines
128 B
Makefile
|
EXE=ssp_fuzz
|
||
|
|
||
|
all:
|
||
|
clang++ ${CXXFLAGS} ssp_fuzz.cpp -fsanitize=fuzzer -std=c++17 -o ${EXE}
|
||
|
|
||
|
run:
|
||
|
./${EXE} -max_total_time=900
|