X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/ddca05489313c16e5a0386d26d52568113f8ec46..2d0f10fb98274e3b3827bf227e42e420f878f1d1:/Makefile diff --git a/Makefile b/Makefile index 9322fe0..53c5694 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ install-html: $(MAKE) -C Documentation install-html test: + $(PYTHON) setup.py build cd t && $(MAKE) all test_patches: @@ -35,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 install-html test test_patches clean +.PHONY: all install doc install-doc install-html test test_patches \ + clean tags TAGS