From f710d6906e99e6e29bfced9437286269e5fd6d50 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 16 Jun 2018 09:27:39 +0530 Subject: [PATCH] Add a linkcheck target to check links in the docs --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index b586c0053..0b724b394 100644 --- a/Makefile +++ b/Makefile @@ -39,4 +39,7 @@ man: html: $(MAKE) FAIL_WARN=$(FAIL_WARN) -C docs html +linkcheck: + $(MAKE) FAIL_WARN=$(FAIL_WARN) -C docs linkcheck + docs: man html