build: Make sure we remove check-results.xml during cleanup

This file gets created durign a make check run. We need to remove it manually
as it is not tracked otherwise.
This commit is contained in:
Stefan Schmidt 2015-04-15 11:35:27 +02:00
parent c702668796
commit 329f106715
1 changed files with 3 additions and 0 deletions

View File

@ -152,4 +152,7 @@ endif
if ELEMENTARY_ENABLE_COVERAGE
@$(MAKE) $(AM_MAKEFLAGS) lcov-report
endif
clean-local:
rm src/tests/check-results.xml
endif