X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/29a8a0c94fb61b2a907afd9a9684cff058b9498a..277b52af33a2b41db17f9ef02f1fb3f421342899:/Makefile diff --git a/Makefile b/Makefile index 9885f62..53c5694 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,14 @@ install: doc: cd Documentation && $(MAKE) all +install-doc: + $(MAKE) -C Documentation install + +install-html: + $(MAKE) -C Documentation install-html + test: + $(PYTHON) setup.py build cd t && $(MAKE) all test_patches: @@ -29,8 +36,13 @@ clean: rm -f stgit/*.pyc rm -f stgit/commands/*.pyc rm -f TAGS + rm -f stgit/commands/cmdlist.py tags: + ctags -R stgit/* + +TAGS: ctags -e -R stgit/* -.PHONY: all install doc test test_patches clean +.PHONY: all install doc install-doc install-html test test_patches \ + clean tags TAGS