mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 00:01:33 +00:00
8 lines
195 B
Makefile
8 lines
195 B
Makefile
all: libexamplemutator.so
|
|
|
|
libexamplemutator.so:
|
|
$(CC) $(CFLAGS) -D_FORTIFY_SOURCE=2 -O3 -fPIC -shared -g -I ../../include example.c -o libexamplemutator.so
|
|
|
|
clean:
|
|
rm -rf libexamplemutator.so
|