summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-12-14 14:26:55 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-12-14 17:54:49 (GMT)
commite951ebca91d914e3fb579011c9218f59c67cf2fd (patch)
tree4cff1f6081345b572bdb3c408ea401ac2010d3e4 /Makefile
parent454cb6bd52a4de614a3633e4f547af03d5c3b640 (diff)
downloadgit-e951ebca91d914e3fb579011c9218f59c67cf2fd.zip
git-e951ebca91d914e3fb579011c9218f59c67cf2fd.tar.gz
git-e951ebca91d914e3fb579011c9218f59c67cf2fd.tar.bz2
Makefile: reformat FIND_SOURCE_FILES
As we add to this in future commits, the formatting is going to make it harder and harder to read. Let's write it more as we would in a shell script, putting each logical block on its own line. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f53fcc9..f42b195 100644
--- a/Makefile
+++ b/Makefile
@@ -2149,9 +2149,12 @@ 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]' 2>/dev/null || \
+ $(FIND) . \
+ \( -name .git -type d -prune \) \
+ -o \( -name '*.[hcS]' -type f -print \) \
+ )
$(ETAGS_TARGET): FORCE
$(RM) $(ETAGS_TARGET)