
* Move fuzzers around some more * back to baby * this was missing.. * shuffeling shuffeling * shuffeling * md * cleanup * oops * Move foldername to underscore * more doc
14 lines
277 B
Makefile
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
|