mirror of
https://github.com/red0124/ssp.git
synced 2025-02-09 19:41:11 +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
|