build: support ARM in makefile target 'binary'

This commit is contained in:
Adam Malcontenti-Wilson
2012-11-27 16:03:36 +11:00
committed by Ben Noordhuis
parent ffb4c173a4
commit 0c9bee49fb

View File

@@ -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)