aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2016-08-28 01:44:33 -0400
committerredfish <redfish@galactica.pw>2016-08-28 02:10:52 -0400
commita0d40587ea0b7bdc4084bcd7727d876948d30d7d (patch)
treef89dd0486af5e029d27ec778ff890236ac285095 /Makefile
parentRevert "Interpret x86_64 as x86-64 for architecture" (diff)
downloadmonero-a0d40587ea0b7bdc4084bcd7727d876948d30d7d.tar.xz
Revert "makefile: remove unnecessary ARM-specific targets"
This reverts commit ecd0f2dde7b2d8f3ff820d1190c00401c436384a. These targets that are not native builds. They are for builds portable within processors of a given family. 'make release' used to not work to build a native build on ARM, but that has been fixed. These targets are unrelated to the native build.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 69d1127de..b02f92ad5 100644
--- a/Makefile
+++ b/Makefile
@@ -58,6 +58,14 @@ release-all:
mkdir -p build/release
cd build/release && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
+release-arm6:
+ mkdir -p build/release
+ cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv6zk" -D BUILD_64=OFF -D NO_AES=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
+
+release-arm7:
+ mkdir -p build/release
+ cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv7-a" -D BUILD_64=OFF -D NO_AES=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
+
release-static: release-static-64
release-static-64: