Hi ALex, On 5/10/21 9:39 AM, Alejandro Colomar wrote: > Prerequisites can run in parallel. This wouldn't make any sense > when uninstalling and installing again. > > For that, use consecutive commands, which run one after the other > even with multiple cores. > > Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> Applied. Thanks, Michael > --- > Makefile | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index 430090801..fdfaf9645 100644 > --- a/Makefile > +++ b/Makefile > @@ -20,7 +20,9 @@ INSTALL_DATA = $(INSTALL) -m 644 > INSTALL_DIR = $(INSTALL) -m 755 -d > > .PHONY: all > -all: remove install > +all: > + $(MAKE) uninstall; > + $(MAKE) install; > > # Use with > # make HTOPTS=whatever html > -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/