summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNathan Rajlich <nathan@tootallnate.net>2012-08-04 12:12:37 -0700
committerNathan Rajlich <nathan@tootallnate.net>2012-08-06 11:40:39 -0700
commiteadc2ec5c8d1f3697d22515d7808ca583ea43f45 (patch)
tree03b75a0b013e94fbc75502fdf9b0c8d14251cc1e /Makefile
parentbd10bf44181909ce3aca8c312117482dcc14d066 (diff)
downloadnode-eadc2ec5c8d1f3697d22515d7808ca583ea43f45.tar.gz
Makefile: add `make binary` helper target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d1b249251..b0f8f0272 100644
--- a/Makefile
+++ b/Makefile
@@ -274,6 +274,8 @@ $(BINARYTAR):
rm -rf $(BINARYNAME)
gzip -f -9 $(BINARYNAME).tar
+binary: $(BINARYTAR)
+
dist-upload: $(TARBALL) $(PKG)
ssh node@nodejs.org mkdir -p web/nodejs.org/dist/$(VERSION)
scp $(TARBALL) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARBALL)
@@ -298,4 +300,4 @@ cpplint:
lint: jslint cpplint
-.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install install-includes install-bin all staticlib dynamiclib test test-all website-upload pkg blog blogclean tar
+.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install install-includes install-bin all staticlib dynamiclib test test-all website-upload pkg blog blogclean tar binary