diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-11-02 14:15:44 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-11-02 14:15:44 +0100 |
commit | a260d34b4997d86ec158843c2362dae009e3bcf7 (patch) | |
tree | 0c4ed87b721ee10b40d4a7c85f8fffc8b06182ba /examples/qemu_persistent_hook/Makefile | |
parent | 54ed02ef4771b227b000baa5e491e13e514d235e (diff) | |
download | afl++-a260d34b4997d86ec158843c2362dae009e3bcf7.tar.gz |
persistent hook example
Diffstat (limited to 'examples/qemu_persistent_hook/Makefile')
-rw-r--r-- | examples/qemu_persistent_hook/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/qemu_persistent_hook/Makefile b/examples/qemu_persistent_hook/Makefile new file mode 100644 index 00000000..85db1b46 --- /dev/null +++ b/examples/qemu_persistent_hook/Makefile @@ -0,0 +1,6 @@ +all: + $(CC) -no-pie test.c -o test + $(CC) -fPIC -shared read_into_rdi.c -o read_into_rdi.so + +clean: + rm -rf in out test read_into_rdi.so |