From 6ae3d9aeeff2034694d27f70ca7b75fa3bf35745 Mon Sep 17 00:00:00 2001 From: Alexander Willner Date: Tue, 17 Jan 2012 11:28:38 +0100 Subject: [PATCH] added 'make update' --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 712ed766..0a3cae81 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,21 @@ default: help help: + @echo "update - get latest sources" @echo "minify - makes JavaScript download and run faster" @echo "lint - checks JavaScript files for style issues" @echo "test - runs JavaScript unit tests" @echo "example - creates a simple example" @echo "ext-chr-gmail - creates the Google Chrome / Google Mail extension" +update: update-me update-deps + +update-me: + @git pull + +update-deps: + @git submodule foreach git pull + example: @mkdir -p build @rm -f build/example.zip