
* Add tests for QASAN from aflplusplus * refactor asan module to use the builder pattern * move injection tests to the new tests directory
8 lines
85 B
Makefile
8 lines
85 B
Makefile
all: qasan
|
|
|
|
qasan: qasan.c
|
|
gcc qasan.c -o qasan
|
|
|
|
clean:
|
|
rm -rf qasan out stats.txt
|