From bd10bf44181909ce3aca8c312117482dcc14d066 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Sat, 4 Aug 2012 12:12:22 -0700 Subject: [PATCH] Makefile: add `make tar` helper target --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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