From: Thierry Parmentelat Date: Tue, 28 Sep 2010 08:07:07 +0000 (+0200) Subject: exclude .git when making tags X-Git-Tag: sfa-1.0-2~15 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=024a998852f8e5ec721b3583f3666c703c6c9b4f;p=sfa.git exclude .git when making tags --- diff --git a/Makefile b/Makefile index 15d10907..fbd2a0e9 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ wsdl-clean: # are the .java files used ? tags: - find . -type f | egrep -v '/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$' | xargs etags + find . -type f | egrep -v '/\.git/|/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$' | xargs etags .PHONY: tags