From 0918c34effecae2c21b3eb28fb6d3712dc751863 Mon Sep 17 00:00:00 2001 From: John Kacur Date: Fri, 8 Feb 2013 15:02:14 +0100 Subject: Makefile: Don't tag tmp files created when making a release Don't tag the copies of the source files placed in the tmp directory during the creation of a release. Without this change tags finds both copies, eg: for tag cyclictest.c # pri kind tag file 1 F C F cyclictest.c src/cyclictest/cyclictest.c 1 2 F F cyclictest.c tmp/rt-tests/src/cyclictest/cyclictest.c 1 With this change only the first one is found. Signed-off-by: John Kacur Reviewed-by: Frank Rowand Tested-by: Frank Rowand --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fd3cdb3..3b637c5 100644 --- a/Makefile +++ b/Makefile @@ -192,4 +192,4 @@ help: .PHONY: tags tags: - ctags -R --extra=+f --c-kinds=+p * + ctags -R --extra=+f --c-kinds=+p --exclude=tmp * -- cgit 1.2.3-korg