mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 21:15:19 +01:00
1b9a01f787
* Add fuzzing ci, add bedge to README
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
|