diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-04-06 14:00:09 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-04-06 14:00:09 +0200 |
commit | 4222b372e4363e580fe1e7e30fe5af946d47b9a7 (patch) | |
tree | 312f0e9c588e58dc04b2f2689d682dec73a2f29b /Makefile | |
parent | new makefile targets for static builds (diff) | |
download | monero-4222b372e4363e580fe1e7e30fe5af946d47b9a7.tar.xz |
add arm6 target and flags
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -40,6 +40,10 @@ release-static-32: mkdir -p build/release cd build/release && cmake -D STATIC=ON -D ARCH="i686" -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE) +release-static-arm6: + mkdir -p build/release + cd build/release && cmake -D STATIC=ON -D ARCH="armv6zk" -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE) + release-static-win64: mkdir -p build/release cmake -G "MSYS Makefiles" -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D CMAKE_BUILD_TYPE=Release -D CMAKE_TOOLCHAIN_FILE=../cmake/64-bit-toolchain.cmake -D MSYS2_FOLDER=c:/msys64 ../.. && $(MAKE) |