Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Rajlich <nathan@tootallnate.net>2012-08-04 23:12:37 +0400
committerNathan Rajlich <nathan@tootallnate.net>2012-08-06 22:40:39 +0400
commiteadc2ec5c8d1f3697d22515d7808ca583ea43f45 (patch)
tree03b75a0b013e94fbc75502fdf9b0c8d14251cc1e /Makefile
parentbd10bf44181909ce3aca8c312117482dcc14d066 (diff)
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 d1b2492511b..b0f8f027231 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