PHONY targets in Makefile.global.in

Started by Fujii Masaoalmost 16 years ago2 messages
#1Fujii Masao
masao.fujii@gmail.com
1 attachment(s)

Hi,

Why aren't "installcheck-parallel", "world", "install-world" and
"installcheck-world" declared as a PHONY target in Makefile.global.in?
The attached patch does that.

Regards,

--
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

Attachments:

phony_targets_v1.patchapplication/octet-stream; name=phony_targets_v1.patchDownload
*** a/src/Makefile.global.in
--- b/src/Makefile.global.in
***************
*** 18,24 ****
  #
  # Meta configuration
  
! .PHONY: all install install-strip installdirs uninstall clean distclean maintainer-clean distprep check installcheck maintainer-check coverage html man
  
  # make `all' the default target
  all:
--- 18,24 ----
  #
  # Meta configuration
  
! .PHONY: all install install-strip installdirs uninstall clean distclean maintainer-clean distprep check installcheck maintainer-check coverage html man installcheck-parallel world install-world installcheck-world
  
  # make `all' the default target
  all:
#2Andrew Dunstan
andrew@dunslane.net
In reply to: Fujii Masao (#1)
Re: PHONY targets in Makefile.global.in

Fujii Masao wrote:

Hi,

Why aren't "installcheck-parallel", "world", "install-world" and
"installcheck-world" declared as a PHONY target in Makefile.global.in?

Lack of make-fu, probably.

The attached patch does that.

Thanks. Applied.

cheers

andrew