diff options
author | Kjell Braden <kjell.braden@bmw.de> | 2019-12-24 16:09:48 +0100 |
---|---|---|
committer | Kjell Braden <kjell.braden@bmw.de> | 2019-12-24 16:09:48 +0100 |
commit | 5aa089d1b22b092a2cc2e797abe755a717f0afc4 (patch) | |
tree | bb4e03344c0946f54087ae44f8ad5674cb780502 | |
parent | 7db87ec74b62c4cd59c27e177903b6bd4dac4880 (diff) | |
download | afl++-5aa089d1b22b092a2cc2e797abe755a717f0afc4.tar.gz |
argv_fuzzing: should also compile with AFL_NO_X86
-rw-r--r-- | experimental/argv_fuzzing/Makefile | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/experimental/argv_fuzzing/Makefile b/experimental/argv_fuzzing/Makefile index da0eaed6..a8858a39 100644 --- a/experimental/argv_fuzzing/Makefile +++ b/experimental/argv_fuzzing/Makefile @@ -13,7 +13,6 @@ .PHONY: all install clean -ifndef AFL_NO_X86 PREFIX ?= /usr/local BIN_PATH = $(PREFIX)/bin HELPER_PATH = $(PREFIX)/lib/afl @@ -35,14 +34,3 @@ install: argvfuzz32.so argvfuzz64.so clean: rm -f argvfuzz32.so argvfuzz64.so - -else - -all: - @echo "[!] Note: skipping compilation of argvfuzz (AFL_NO_X86 set)." - -install: - -clean: - -endif |