diff options
author | Allan LeSage <allanlesage@gmail.com> | 2012-03-19 12:46:11 -0500 |
---|---|---|
committer | Allan LeSage <allanlesage@gmail.com> | 2012-03-19 12:46:11 -0500 |
commit | b85b7c4ad314a27e6f4b08830305ccfaf6cc3d1e (patch) | |
tree | 9c9d1de09e1765a35b99eb09aeb26a634a0a8017 | |
parent | 46ff11853c8c1ea7ca02ad8786e9bb222fa7a7cf (diff) | |
download | ayatana-indicator-messages-b85b7c4ad314a27e6f4b08830305ccfaf6cc3d1e.tar.gz ayatana-indicator-messages-b85b7c4ad314a27e6f4b08830305ccfaf6cc3d1e.tar.bz2 ayatana-indicator-messages-b85b7c4ad314a27e6f4b08830305ccfaf6cc3d1e.zip |
Tested moving PHONY clean targets to top of Makefile.
-rw-r--r-- | Makefile.am.coverage | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am.coverage b/Makefile.am.coverage index 9edc849..296ad10 100644 --- a/Makefile.am.coverage +++ b/Makefile.am.coverage @@ -1,6 +1,9 @@ # Coverage targets +.PHONY: clean-coverage-html clean-coverage-gcovr +clean-local: clean-coverage-html clean-coverage-gcovr + if HAVE_GCOV .PHONY: clean-gcda @@ -39,6 +42,3 @@ clean-coverage-gcovr: clean-gcda endif # HAVE_GCOVR endif # HAVE_GCOV - -.PHONY: clean-coverage-html clean-coverage-gcovr -clean-local: clean-coverage-html clean-coverage-gcovr |