aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/.gitignore3
-rw-r--r--core/Makefile1
2 files changed, 4 insertions, 0 deletions
diff --git a/core/.gitignore b/core/.gitignore
index 6a145ff..bc75c33 100644
--- a/core/.gitignore
+++ b/core/.gitignore
@@ -4,3 +4,6 @@
/map
/array
/ccan-config
+*.gcda
+*.gcno
+*.gcov
diff --git a/core/Makefile b/core/Makefile
index 75180e0..6a2d672 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -41,5 +41,6 @@ clean:
@rm -f buffer
@rm -f map
@rm -f array
+ @rm -f *.gcov *.gcda *.gcno
.PHONY: clean debug coverage