summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAdam Malcontenti-Wilson <adman.com@gmail.com>2012-11-27 16:03:36 +1100
committerBen Noordhuis <info@bnoordhuis.nl>2012-11-27 07:14:21 +0100
commit0c9bee49fb27d4b7f6148ecbfa85c826bda9a8ab (patch)
tree85a5d5a88a96b1cac035078a76f4fa541250d245 /Makefile
parentffb4c173a426647dbbb7bc7d2787140556de5e5b (diff)
downloadandroid-node-v8-0c9bee49fb27d4b7f6148ecbfa85c826bda9a8ab.tar.gz
android-node-v8-0c9bee49fb27d4b7f6148ecbfa85c826bda9a8ab.tar.bz2
android-node-v8-0c9bee49fb27d4b7f6148ecbfa85c826bda9a8ab.zip
build: support ARM in makefile target 'binary'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 237a2a45b1..0dde96c9a0 100644
--- a/Makefile
+++ b/Makefile
@@ -216,8 +216,12 @@ endif
ifeq ($(DESTCPU),x64)
ARCH=x64
else
+ifeq ($(DESTCPU),arm)
+ARCH=arm
+else
ARCH=x86
endif
+endif
TARNAME=node-$(VERSION)
TARBALL=$(TARNAME).tar.gz
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)