Makefile: generate Git(3pm) as dependency of the 'doc' and 'man' targets
commit2530afd3519a34b66e72cc29e7751d650cedc6dd
authorSZEDER Gábor <szeder.dev@gmail.com>
Thu, 15 Feb 2018 02:14:10 +0000 (15 03:14 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 15 Feb 2018 18:05:32 +0000 (15 10:05 -0800)
treeaeacc32301b9498e1e00f8d5a414ee94be0d595c
parent7a7bfc7adceec0be66aec3a4999be2f9b33ccc24
Makefile: generate Git(3pm) as dependency of the 'doc' and 'man' targets

Since commit 20d2a30f8f (Makefile: replace perl/Makefile.PL with
simple make rules, 2017-12-10), the Git(3pm) man page is only
generated as an indirect dependency of the 'install-doc' and
'install-man' Makefile targets.  Consequently, if someone runs 'make
man && sudo make install-man' (or their 'doc' counterparts), then
Git(3pm) will be generated as root, and the resulting root-owned files
and directories will in turn cause the next user-run 'make clean' to
fail.  This was not an issue in the past, because Git(3pm) was
generated when 'make all' descended into 'perl/', which is usually not
run as root.

List Git(3pm) as a dependency of the 'doc' and 'man' Makefile targets,
too, so it gets generated by targets that are usually built as
ordinary users.

While at it, add 'install-man-perl' to the list of .PHONY targets.

Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Acked-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile