mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 00:01:33 +00:00
15 lines
268 B
Makefile
15 lines
268 B
Makefile
|
|
ifdef DEBUG
|
|
CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
all: symqemu-mutator.so
|
|
|
|
CFLAGS += -O3 -funroll-loops
|
|
|
|
symqemu-mutator.so: symqemu.c
|
|
$(CC) -g $(CFLAGS) $(CPPFLAGS) -g -I../../include -shared -fPIC -o symqemu-mutator.so symqemu.c
|
|
|
|
clean:
|
|
rm -f symqemu-mutator.so *.o *~ core
|