diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-09-05 12:44:49 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-09-05 12:44:49 -0400 |
commit | 812ecd1feeb002252dd4d732b395d31c4179afaf (patch) | |
tree | e1465d55526e678122f1b80b1209d590f76d1920 /Makefile | |
parent | ac042e14d8ba3ac352cf7a03e4f849e4456f4a03 (diff) | |
download | bfs-812ecd1feeb002252dd4d732b395d31c4179afaf.tar.xz |
docs/bfs.1: Fix some mandoc lint warnings
And add mandoc -Tlint to make check-man.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -216,8 +216,9 @@ check-install:: # Check man page markup check-man:: - ${MSG} "[LINT] docs/bfs.1" \ - groff -man -rCHECKSTYLE=3 -ww -b -z docs/bfs.1 + ${MSG} "[LINT] docs/bfs.1" + ${Q}groff -man -rCHECKSTYLE=3 -ww -b -z docs/bfs.1 + ${Q}mandoc -Tlint -Wwarning docs/bfs.1 ## Cleanup (`make clean`) |