Romain Malmain 75feedd1a0
Add builder and tests for QASAN (#2898)
* Add tests for QASAN from aflplusplus

* refactor asan module to use the builder pattern

* move injection tests to the new tests directory
2025-01-31 15:43:50 +01:00

14 lines
277 B
Makefile

all: static sqltest
sqltest: sqltest.c
gcc -g -o sqltest sqltest.c -l sqlite3 -lm -lpthread
static: sqltest.c
gcc -g -o static sqltest.c -l sqlite3 -lm -static -lpthread -ldl
fuzz: sqltest.c
afl-clang-fast -o fuzz sqltest.c -l sqlite3
clean:
rm -f sqltest static fuzz