about summary refs log tree commit diff
path: root/custom_mutators/aflpp/Makefile
blob: 8efdf3e4504b3270edde221d0301bfadf6d58dfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CFLAGS = -O3 -funroll-loops -fPIC -Wl,-Bsymbolic

all: aflpp-mutator.so

aflpp-mutator.so:	aflpp.c
	$(CC) $(CFLAGS) -I../../include -I. -shared -o aflpp-mutator.so aflpp.c ../../src/afl-performance.c

clean:
	rm -f *.o *~ *.so core