Makefile: allow man-page-check to be run in parallel

This target runs several scripts in serial but they do not have any
dependencies so we can split them all into their own target so that make
-j can run the targets in parallel to speed this up.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger 2024-10-07 14:23:36 +02:00
parent 39963cc984
commit bc3db7c95b
No known key found for this signature in database
GPG Key ID: EB145DD938A3CAF2
1 changed files with 9 additions and 1 deletions

View File

@ -590,10 +590,18 @@ podman-remote-%-docs: podman-remote
$(if $(findstring windows,$*),docs/source/markdown,docs/build/man)
.PHONY: man-page-check
man-page-check: bin/podman docs
man-page-check: man-page-checker xref-helpmsgs-manpages xref-quadlet-docs xref-quadlet-docs
man-page-checker: bin/podman docs
hack/man-page-checker
xref-helpmsgs-manpages: bin/podman docs
hack/xref-helpmsgs-manpages
man-page-table-check: docs
hack/man-page-table-check
xref-quadlet-docs: docs
hack/xref-quadlet-docs
.PHONY: swagger-check