From: Catalin Marinas Date: Tue, 2 Dec 2008 11:05:27 +0000 (+0000) Subject: Add "tags" target to Makefile X-Git-Tag: v0.15-rc1~98 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/ca454a61280aa12da9c417058900fa4b777c0109?hp=-c Add "tags" target to Makefile We could only generate TAGS before. Also added these targets to .PHONY. Signed-off-by: Catalin Marinas --- ca454a61280aa12da9c417058900fa4b777c0109 diff --git a/Makefile b/Makefile index 7183670..0fa5c6a 100644 --- a/Makefile +++ b/Makefile @@ -48,6 +48,10 @@ clean: rm -f stgit/commands/cmdlist.py tags: + ctags -R stgit/* + +TAGS: ctags -e -R stgit/* -.PHONY: all build install doc install-doc install-html test test_patches clean +.PHONY: all build install doc install-doc install-html test test_patches \ + clean tags TAGS