summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-12-19 22:45:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-19 22:45:37 (GMT)
commit09b4fdb5f396612dd50236ae5395a74600d2ab84 (patch)
tree31b1f57b9f9d274141dca39549207e72a79e663b /Makefile
parent4833b7ec2597e65285b4d35337db48f441e9b9d7 (diff)
parent046e4c1c09aa4fa9865b1fd755aa99d8617465d2 (diff)
downloadgit-09b4fdb5f396612dd50236ae5395a74600d2ab84.zip
git-09b4fdb5f396612dd50236ae5395a74600d2ab84.tar.gz
git-09b4fdb5f396612dd50236ae5395a74600d2ab84.tar.bz2
Merge branch 'jk/make-tags-find-sources-tweak'
Update the procedure to generate "tags" for developer support. * jk/make-tags-find-sources-tweak: Makefile: exclude contrib from FIND_SOURCE_FILES Makefile: match shell scripts in FIND_SOURCE_FILES Makefile: exclude test cruft from FIND_SOURCE_FILES Makefile: reformat FIND_SOURCE_FILES
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 16 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f610769..05a35ad 100644
--- a/Makefile
+++ b/Makefile
@@ -2140,9 +2140,22 @@ endif
po/build/locale/%/LC_MESSAGES/git.mo: po/%.po
$(QUIET_MSGFMT)mkdir -p $(dir $@) && $(MSGFMT) -o $@ $<
-FIND_SOURCE_FILES = ( git ls-files '*.[hcS]' 2>/dev/null || \
- $(FIND) . \( -name .git -type d -prune \) \
- -o \( -name '*.[hcS]' -type f -print \) )
+FIND_SOURCE_FILES = ( \
+ git ls-files \
+ '*.[hcS]' \
+ '*.sh' \
+ ':!*[tp][0-9][0-9][0-9][0-9]*' \
+ ':!contrib' \
+ 2>/dev/null || \
+ $(FIND) . \
+ \( -name .git -type d -prune \) \
+ -o \( -name '[tp][0-9][0-9][0-9][0-9]*' -prune \) \
+ -o \( -name contrib -type d -prune \) \
+ -o \( -name build -type d -prune \) \
+ -o \( -name 'trash*' -type d -prune \) \
+ -o \( -name '*.[hcS]' -type f -print \) \
+ -o \( -name '*.sh' -type f -print \) \
+ )
$(ETAGS_TARGET): FORCE
$(RM) $(ETAGS_TARGET)