From: Catalin Marinas Date: Mon, 21 May 2007 20:58:39 +0000 (+0100) Subject: Add a "make tags" target X-Git-Tag: v0.13~62 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/a7c71daf8b1e32d0a84705e84b31b3ea0a470801?ds=sidebyside Add a "make tags" target Signed-off-by: Catalin Marinas --- diff --git a/Makefile b/Makefile index 8cd5813..d6c0b56 100644 --- a/Makefile +++ b/Makefile @@ -21,5 +21,9 @@ clean: rm -rf build rm -f stgit/*.pyc rm -f stgit/commands/*.pyc + rm -f TAGS + +tags: + ctags -e -R stgit/* .PHONY: all install doc test clean