mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
11 lines
250 B
Makefile
11 lines
250 B
Makefile
|
|
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
|