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