Makefile: respect --quiet and V=1 in doc/Makefile.

And don't regen doc/index.rst unless there's good reason.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2020-08-25 11:03:08 +09:30
parent 6f114e06a6
commit 67cde96397
2 changed files with 4 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ SORT=LC_ALL=C sort
ifeq ($V,1)
VERBOSE = $(ECHO) $(2); $(2)
VERBOSE = $(ECHO) '$(2)'; $(2)
else
VERBOSE = $(ECHO) $(1); $(2)
endif