X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Makefile;h=1130af4f3809610436f4c5d17c3970a947ddae5c;hb=5cf7e21fbc1819de7975b17f4b19cfdc3a057c1d;hp=e6ef41d70240c242d1bfab244067d04518a4d552;hpb=72c159f642a33255b76fff512f2a8c3aff9f5dca;p=git.git diff --git a/Makefile b/Makefile index e6ef41d7..1130af4f 100644 --- a/Makefile +++ b/Makefile @@ -665,3 +665,23 @@ clean: .PHONY: all install clean strip .PHONY: .FORCE-GIT-VERSION-FILE TAGS tags +### Check documentation +# +check-docs:: + @for v in $(ALL_PROGRAMS) $(BUILT_INS) git$X gitk; \ + do \ + case "$$v" in \ + git-annotate | git-blame | \ + git-merge-octopus | git-merge-ours | git-merge-recursive | \ + git-merge-resolve | git-merge-stupid | \ + git-ssh-pull | git-ssh-push ) continue ;; \ + esac ; \ + test -f "Documentation/$$v.txt" || \ + echo "no doc: $$v"; \ + grep -q "^gitlink:$$v\[[0-9]\]::" Documentation/git.txt || \ + case "$$v" in \ + git) ;; \ + *) echo "no link: $$v";; \ + esac ; \ + done | sort +