blob: 5c525877e4ee3b953eeec1db08c1148b15976ebd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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
|