diff options
| author | letouzey | 2002-07-17 11:59:53 +0000 |
|---|---|---|
| committer | letouzey | 2002-07-17 11:59:53 +0000 |
| commit | 79edd4bcaecb4f58cc612119b560a528766a2743 (patch) | |
| tree | f73d045888bbc93091912656dff438664dcf7c42 | |
| parent | 7efbdb4d16b8303b3695fb42f20a3a63b5f7f660 (diff) | |
modification de make tags pour
1) eviter de parser les fichiers de contrib/extraction/test et
de depasser les capacitees de etags
2) supprimer les tags ne venant pas des regexps fournis (--language=none)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2891 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -778,9 +778,12 @@ clean:: # Emacs tags ########################################################################### +# NB: the -maxdepth 3 is for excluding files from contrib/extraction/test + tags: - find . -name "*.ml*" | sort -r | xargs \ - etags "--regex=/let[ \t]+\([^ \t]+\)/\1/" \ + find . -maxdepth 3 -name "*.ml*" | sort -r | xargs \ + etags --language=none\ + "--regex=/let[ \t]+\([^ \t]+\)/\1/" \ "--regex=/let[ \t]+rec[ \t]+\([^ \t]+\)/\1/" \ "--regex=/and[ \t]+\([^ \t]+\)/\1/" \ "--regex=/type[ \t]+\([^ \t]+\)/\1/" \ |
