blob: f1e994452838948a640d9418c6b0448c13a49def (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
CFLAGS = -O3 -funroll-loops -fPIC
all: aflpp-standalone
aflpp-standalone: aflpp-standalone.c
$(CC) $(CFLAGS) -I../../../include -I. -o aflpp-standalone aflpp-standalone.c ../../../src/afl-performance.c
clean:
rm -f *.o *~ aflpp-standalone core
|