aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNanoAkron <nanoakron@users.noreply.github.com>2016-10-27 23:17:02 +0100
committerNanoAkron <nanoakron@users.noreply.github.com>2016-10-27 23:22:07 +0100
commit54c9400fbe6c4aa8bab5b8124c9cb8a2642f810f (patch)
treebc573bc6b4c0226b098a767bc55d4499eba2b230 /Makefile
parentMerge pull request #1253 (diff)
downloadmonero-54c9400fbe6c4aa8bab5b8124c9cb8a2642f810f.tar.xz
Changed ARM6/7/8 to ARMv6/7/8 to be nice to peronero
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fc79958f6..777769f13 100644
--- a/Makefile
+++ b/Makefile
@@ -62,11 +62,11 @@ coverage:
mkdir -p build/debug
cd build/debug && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=Debug -D COVERAGE=ON ../.. && $(MAKE) && $(MAKE) test
-release-static-arm6:
+release-static-armv6:
mkdir -p build/release
cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv6zk" -D STATIC=ON -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
-release-static-arm7:
+release-static-armv7:
mkdir -p build/release
cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv7-a" -D STATIC=ON -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)