diff options
Diffstat (limited to 'examples/afl_untracer/Makefile')
-rw-r--r-- | examples/afl_untracer/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/afl_untracer/Makefile b/examples/afl_untracer/Makefile new file mode 100644 index 00000000..5c525877 --- /dev/null +++ b/examples/afl_untracer/Makefile @@ -0,0 +1,10 @@ +all: afl-untracer libtestinstr.so + +afl-untracer: afl-untracer.c + $(CC) -I../../include -g -o afl-untracer afl-untracer.c -ldl -pthread + +libtestinstr.so: libtestinstr.c + $(CC) -fPIC -o libtestinstr.so -shared libtestinstr.c + +clean: + rm -f afl-untracer libtestinstr.so *~ core |