mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 09:41:35 +00:00
11 lines
275 B
Makefile
11 lines
275 B
Makefile
all: afl-untracer libtestinstr.so
|
|
|
|
afl-untracer: afl-untracer.c
|
|
$(CC) -I../../include -g -o afl-untracer afl-untracer.c -ldl -pthread
|
|
|
|
libtestinstr.so: libtestinstr.c
|
|
$(CC) -fPIC -o libtestinstr.so -shared libtestinstr.c
|
|
|
|
clean:
|
|
rm -f afl-untracer libtestinstr.so *~ core
|