make: moved PHONY outside the USE_LCOV conditional
commitd9996e6e934b4537f30a300889303d0406d5d9b3
authorChristophe CURIS <christophe.curis@free.fr>
Tue, 20 Jan 2015 21:04:11 +0000 (20 22:04 +0100)
committerCarlos R. Mafra <crmafra@gmail.com>
Tue, 20 Jan 2015 21:29:24 +0000 (20 21:29 +0000)
treec6479405627510fb47cb08464a5b5b0da33bbce5
parenta9a0d2ac855284a5f57c609e24d03143a35b07b5
make: moved PHONY outside the USE_LCOV conditional

Apparently, automake does not like when there are multiple .PHONY
definitions and some of them are conditionals, it generates a warning:

  Makefile.am:84: warning: .PHONY was already defined in condition USE_LCOV, which is included in condition TRUE ...
  Makefile.am:58: ... '.PHONY' previously defined here

This is probably a false message, because in the end, conditional or not,
the result will not be significantly different, so this patch just moves
the .PHONY definition outside the conditional so Automake will not print
the warning.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
Makefile.am