ssp/.github/fuzz/makefile

8 lines
128 B
Makefile
Raw Normal View History

EXE=ssp_fuzz
all:
clang++ ${CXXFLAGS} ssp_fuzz.cpp -fsanitize=fuzzer -std=c++17 -o ${EXE}
run:
./${EXE} -max_total_time=900