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:22 +0400
committerNathan Rajlich <nathan@tootallnate.net>2012-08-06 22:40:01 +0400
commitbd10bf44181909ce3aca8c312117482dcc14d066 (patch)
tree035b1646617755d23d5bd41e496390daca57c60e /Makefile
parent42aac41b9399dbdb14e3f250f358c14ec13ee5e4 (diff)
Makefile: add `make tar` helper target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 826cd89feef..d1b2492511b 100644
--- a/Makefile
+++ b/Makefile
@@ -260,6 +260,8 @@ $(TARBALL): node doc
rm -rf $(TARNAME)
gzip -f -9 $(TARNAME).tar
+tar: $(TARBALL)
+
$(BINARYTAR):
rm -rf $(BINARYNAME)
rm -rf out/deps out/Release
@@ -296,4 +298,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
+.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