From b421b6d33936fc506b596b944094aeafc987e954 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sun, 17 Nov 2013 09:13:41 -0500 Subject: [PATCH] add pull and update make targets --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f505dfe..5923036 100644 --- a/Makefile +++ b/Makefile @@ -30,4 +30,9 @@ edit_article: dir=`echo $$title | sed "s/ /-/g"`;\ $$EDITOR $(ARTICLE_DIR)/$$dir/index.md -.PHONY: build clean preview add_article remove_article edit_article +pull: + git pull + +update: pull build + +.PHONY: build clean preview add_article remove_article edit_article pull update