• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1ifdef DEBUG
2  OPT=-O0
3else
4  OPT=-O3
5endif
6
7all:	afl-untracer libtestinstr.so
8
9afl-untracer:	afl-untracer.c
10	$(CC) $(OPT) -I../../include -g -o afl-untracer afl-untracer.c -ldl
11
12libtestinstr.so:	libtestinstr.c
13	$(CC) -g -O0 -fPIC -o libtestinstr.so -shared libtestinstr.c
14
15clean:
16	rm -f afl-untracer libtestinstr.so *~ core
17