diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 58655cd8..ab1b74ec 100644 --- a/Makefile +++ b/Makefile @@ -128,6 +128,7 @@ help: @echo "man: creates simple man pages from the help option of the programs" @echo "install: installs everything you have compiled with the build option above" @echo "clean: cleans everything. for qemu_mode and unicorn_mode it means it deletes all downloads as well" + @echo "code-format: format the code, do this before you commit and send a PR please!" @echo "tests: this runs the test framework. It is more catered for the developers, but if you run into problems this helps pinpointing the problem" @echo "document: creates afl-fuzz-document which will only do one run and save all manipulated inputs into out/queue/mutations" @echo "help: shows these build options :-)" diff --git a/README.md b/README.md index 02c1bc2d..20eab9de 100644 --- a/README.md +++ b/README.md @@ -105,12 +105,12 @@ is what you should choose. These build options exist: * all: just the main afl++ binaries -* radamsa: build libradamsa * binary-only: everything for binary-only fuzzing: qemu_mode, unicorn_mode, libdislocator, libtokencap, radamsa * source-only: everything for source code fuzzing: llvm_mode, libdislocator, libtokencap, radamsa * distrib: everything (for both binary-only and source code fuzzing) * install: installs everything you have compiled with the build options above * clean: cleans everything. for qemu_mode and unicorn_mode it means it deletes all downloads as well +* code-format: format the code, do this before you commit and send a PR please! * tests: runs test cases to ensure that all features are still working as they should * help: shows these build options |