aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-08-08 16:56:04 -0400
committerJunio C Hamano <gitster@pobox.com>2012-08-08 14:31:12 -0700
commitcf6aaff3771916e71bac0ced545ec420b768f172 (patch)
treea8429d23d19b8b0d3be73b37801acea66bae66cc /Makefile
parentc6632eba5a14791b1fa376cd59eb334c29732327 (diff)
downloadgit-cf6aaff3771916e71bac0ced545ec420b768f172.tar.gz
git-cf6aaff3771916e71bac0ced545ec420b768f172.tar.xz
check-docs: factor out command-list
The check-docs command list is composed from several Makefile variables plus some special cases. Let's make the meaning of the list more obvious and avoid repeating ourselves by factoring it out. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 41d9db86a..6ae868d76 100644
--- a/Makefile
+++ b/Makefile
@@ -2804,8 +2804,12 @@ endif
### Check documentation
#
+ALL_COMMANDS = $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS)
+ALL_COMMANDS += git
+ALL_COMMANDS += gitk
+ALL_COMMANDS += gitweb
check-docs::
- @(for v in $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk gitweb; \
+ @(for v in $(ALL_COMMANDS); \
do \
case "$$v" in \
git-merge-octopus | git-merge-ours | git-merge-recursive | \
@@ -2858,7 +2862,7 @@ check-docs::
documented,gitweb.conf | \
sentinel,not,matching,is,ok ) continue ;; \
esac; \
- case " $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git gitk gitweb " in \
+ case " $(ALL_COMMANDS) " in \
*" $$cmd "*) ;; \
*) echo "removed but $$how: $$cmd" ;; \
esac; \