From: Daniel White Date: Fri, 25 Jul 2008 16:35:39 +0000 (+1000) Subject: Add install-doc target to makefile X-Git-Tag: v0.15-rc1~178 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/722b07a6ecbba0d633400b394f8540cf948eb6a6?ds=sidebyside Add install-doc target to makefile Signed-off-by: Daniel White --- diff --git a/Makefile b/Makefile index 9885f62..95413a4 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,9 @@ install: doc: cd Documentation && $(MAKE) all +install-doc: + $(MAKE) -C Documentation install + test: cd t && $(MAKE) all @@ -33,4 +36,4 @@ clean: tags: ctags -e -R stgit/* -.PHONY: all install doc test test_patches clean +.PHONY: all install doc install-doc test test_patches clean