diff options
author | van Hauser <vh@thc.org> | 2019-07-12 14:00:59 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-07-12 14:00:59 +0200 |
commit | c067ef021677d006d3fdd33b01b1cdf2c2b32379 (patch) | |
tree | fdc31baa4ec1d0f90f516af8777038d12c3ea6bb | |
parent | f7d9019b8c6d4587b4874791636a9933f4b1a63a (diff) | |
download | afl++-c067ef021677d006d3fdd33b01b1cdf2c2b32379.tar.gz |
qemu was not make clean'ed
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 1d8d819f..601f29a7 100644 --- a/Makefile +++ b/Makefile @@ -134,8 +134,8 @@ all_done: test_build .NOTPARALLEL: clean clean: - rm -f $(PROGS) afl-as as afl-g++ afl-clang afl-clang++ *.o *~ a.out core core.[1-9][0-9]* *.stackdump test .test test-instr .test-instr0 .test-instr1 qemu_mode/qemu-2.10.0.tar.bz2 afl-qemu-trace - rm -rf out_dir qemu_mode/qemu-2.10.0 + rm -f $(PROGS) afl-as as afl-g++ afl-clang afl-clang++ *.o *~ a.out core core.[1-9][0-9]* *.stackdump test .test test-instr .test-instr0 .test-instr1 qemu_mode/qemu-3.1.0.tar.xz afl-qemu-trace + rm -rf out_dir qemu_mode/qemu-3.1.0 $(MAKE) -C llvm_mode clean $(MAKE) -C libdislocator clean $(MAKE) -C libtokencap clean |