mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-23 14:34:25 +00:00
11 lines
329 B
Makefile
11 lines
329 B
Makefile
|
|
CFLAGS = -O3 -funroll-loops -fPIC
|
|
|
|
all: aflpp-standalone
|
|
|
|
aflpp-standalone: aflpp-standalone.c
|
|
$(CC) $(CFLAGS) -w -DBIN_PATH=\"foo\" -I../../../include -I. -o aflpp-standalone aflpp-standalone.c ../../../src/afl-performance.c ../../../src/afl-fuzz-extras.c ../../../src/afl-common.c
|
|
|
|
clean:
|
|
rm -f *.o *~ aflpp-standalone core
|