aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-07-03 12:28:33 +0200
committerRiccardo Spagni <ric@spagni.net>2017-07-03 12:28:33 +0200
commit8609ed86c4ac89fdc1f2a6d9f9f3cfa8324fe99c (patch)
tree4ff0a41d7fafa0bc34942c9690bad55109700b77 /Makefile
parentMerge pull request #2114 (diff)
parentAdd fuzz testing using american fuzzy lop (diff)
downloadmonero-8609ed86c4ac89fdc1f2a6d9f9f3cfa8324fe99c.tar.xz
Merge pull request #2116
841231e5 Add fuzz testing using american fuzzy lop (moneromooo-monero)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9344f387c..0f5ee5773 100644
--- a/Makefile
+++ b/Makefile
@@ -108,6 +108,10 @@ release-static-win32:
mkdir -p build/release
cd build/release && cmake -G "MSYS Makefiles" -D STATIC=ON -D ARCH="i686" -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=Release -D BUILD_TAG="win-x32" -D CMAKE_TOOLCHAIN_FILE=../../cmake/32-bit-toolchain.cmake -D MSYS2_FOLDER=c:/msys32 ../.. && $(MAKE)
+fuzz:
+ mkdir -p build/fuzz
+ cd build/fuzz && cmake -D BUILD_TESTS=ON -D USE_LTO=OFF -D CMAKE_C_COMPILER=afl-gcc -D CMAKE_CXX_COMPILER=afl-g++ -D ARCH="x86-64" -D CMAKE_BUILD_TYPE=fuzz -D BUILD_TAG="linux-x64" ../.. && $(MAKE)
+
clean:
@echo "WARNING: Back-up your wallet if it exists within ./build!" ; \
read -r -p "This will destroy the build directory, continue (y/N)?: " CONTINUE; \