X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/722b07a6ecbba0d633400b394f8540cf948eb6a6..e2a3c618b016f84b9e6fe44e77bb798b2b9c718f:/Makefile diff --git a/Makefile b/Makefile index 95413a4..53c5694 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,11 @@ doc: install-doc: $(MAKE) -C Documentation install +install-html: + $(MAKE) -C Documentation install-html + test: + $(PYTHON) setup.py build cd t && $(MAKE) all test_patches: @@ -32,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 install-doc test test_patches clean +.PHONY: all install doc install-doc install-html test test_patches \ + clean tags TAGS