mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 01:58:17 +00:00
18 lines
619 B
Makefile
18 lines
619 B
Makefile
|
|
CFLAGS = -O3 -funroll-loops -fPIC -Wl,-Bsymbolic
|
|
|
|
all: honggfuzz-mutator.so
|
|
|
|
honggfuzz-mutator.so: honggfuzz.c input.h mangle.c ../../src/afl-performance.c
|
|
$(CC) $(CFLAGS) -I../../include -I. -shared -o honggfuzz-mutator.so honggfuzz.c mangle.c ../../src/afl-performance.c
|
|
|
|
update:
|
|
@# seriously? --unlink is a dud option? sigh ...
|
|
rm -f mangle.c mangle.h honggfuzz.h
|
|
wget --unlink https://github.com/google/honggfuzz/raw/master/mangle.c
|
|
wget --unlink https://github.com/google/honggfuzz/raw/master/mangle.h
|
|
wget --unlink https://github.com/google/honggfuzz/raw/master/honggfuzz.h
|
|
|
|
clean:
|
|
rm -f *.o *~ *.so core
|