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