Browse Source

build: support ARM in makefile target 'binary'

v0.9.4-release
Adam Malcontenti-Wilson 12 years ago
committed by Ben Noordhuis
parent
commit
0c9bee49fb
  1. 4
      Makefile

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

Loading…
Cancel
Save