about summary refs log tree commit diff
path: root/examples/afl_untracer/Makefile
blob: bfef8fa825f57064525bec5cbea6fc93d6537fc5 (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 *~ core