From 5074715deb89bbe33c058a3b8b592f8f27ef107b Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 22 Oct 2009 19:04:17 +0200 Subject: [PATCH] Avoid TAGS/tags warning from GNU Make Signed-off-by: Johannes Schindelin --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f33648da01..7c0ff3187c 100644 --- a/Makefile +++ b/Makefile @@ -1924,6 +1924,7 @@ info: pdf: $(MAKE) -C Documentation pdf +ifeq (,$(findstring MINGW,$(uname_S))) TAGS: $(RM) TAGS $(FIND) . -name '*.[hcS]' -print | xargs etags -a @@ -1931,6 +1932,7 @@ TAGS: tags: $(RM) tags $(FIND) . -name '*.[hcS]' -print | xargs ctags -a +endif cscope: $(RM) cscope* -- 2.11.4.GIT