diff options
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -30,7 +30,7 @@ all: $(EXECUTABLE)  ifeq ($(config),coverage)  test: $(EXECUTABLE) -	@find $(BUILD) -name '*.gcda' | xargs rm +	@find $(BUILD) -name '*.gcda' | xargs -r rm  	./$(EXECUTABLE)  	@gcov -b -c $(BUILD)/src/pugixml.cpp.gcda | sed -e '/./{H;$!d;}' -e 'x;/pugixml.cpp/!d;'  	@ls *.gcov | grep -v pugixml.cpp.gcov | xargs rm @@ -51,4 +51,4 @@ $(BUILD)/%.o: %  -include $(OBJECTS:.o=.d) -.PHONY: all test clean	
\ No newline at end of file +.PHONY: all test clean	 | 
