diff options
Diffstat (limited to 'custom_mutators/atnwalk/Makefile')
-rw-r--r-- | custom_mutators/atnwalk/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/custom_mutators/atnwalk/Makefile b/custom_mutators/atnwalk/Makefile new file mode 100644 index 00000000..bf83cae5 --- /dev/null +++ b/custom_mutators/atnwalk/Makefile @@ -0,0 +1,7 @@ +all: atnwalk.so + +atnwalk.so: atnwalk.c + $(CC) -I ../../include/ -shared -fPIC -O3 -o atnwalk.so atnwalk.c + +clean: + rm -f *.so *.o *~ core |