Skip to content

Commit

Permalink
Preparations for GCOV code coverage tool usage
Browse files Browse the repository at this point in the history
Ignored .gcno file extension
Updated Makefile to clean .gcno files
  • Loading branch information
lisitsyn committed Feb 10, 2013
1 parent a119187 commit c8b58e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
*.o
*.gcno
*.class
*doxygen_xml
*_wrap.h
Expand Down
1 change: 1 addition & 0 deletions src/Makefile.template
Expand Up @@ -163,6 +163,7 @@ swigdocclean:

clean: swigclean swigdocclean
@rm -f $(shell find . -name "*.cpp.o" -o -name "*.c.o")
@rm -f $(shell find . -name "*.gcno")
@rm -f $(shell find . -name "*.a" -o -name "*.so*" -o -name "*.dylib" -o -name "*.dll" -o -name "*~" -o -name ".#*")
@rm -f $(SRCTMPFILES)
@rm -f $(shell find . -type f -name '*.py' ! -name '__*.py' ! -name '*.*.py' | grep -v svn)
Expand Down

0 comments on commit c8b58e5

Please sign in to comment.