vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 6d4f92ca7e6dc3a99ed44db9c99d7c0b54664751
parent f3eecc4d1047044d5d425db1f5d2b5eb860fc543
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Fri, 16 Dec 2016 22:35:30 +0100

test/core: add code coverage instrumentation

Diffstat:
Mcore/Makefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/core/Makefile b/core/Makefile @@ -32,6 +32,9 @@ array: config.h array.c ../../array.c debug: clean $(MAKE) CFLAGS_EXTRA='${CFLAGS_DEBUG}' +coverage: clean + $(MAKE) CFLAGS_EXTRA='--coverage' + clean: @echo cleaning @rm -f text @@ -39,4 +42,4 @@ clean: @rm -f map @rm -f array -.PHONY: clean debug +.PHONY: clean debug coverage