summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Takata <kentkt@csc.jp>2024-07-27 13:14:35 +0200
committerChristian Brabandt <cb@256bit.org>2024-07-27 13:16:43 +0200
commitf08865ce8309a7d4c7d55d5d9d60b9062eca5370 (patch)
treee71aa71c5841703f2cf325c53e217f9dbfd77e4c
parente4486bad10dc605e2c996c9ef2f7656c01c7eb33 (diff)
patch 9.1.0628: MinGW: coverage files are not cleaned upv9.1.0628
Problem: MinGW: coverage files are not cleaned up Solution: Adjust clean rule to remove the coverage files (Ken Takata) closes: #15361 Signed-off-by: Ken Takata <kentkt@csc.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/Make_cyg_ming.mak3
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index 5fb3a41f08..f082c960d8 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -1188,10 +1188,13 @@ notags:
clean:
-$(DEL) $(OUTDIR)$(DIRSLASH)*.o
+ -$(DEL) $(OUTDIR)$(DIRSLASH)*.gcno
+ -$(DEL) $(OUTDIR)$(DIRSLASH)*.gcda
-$(DEL) $(OUTDIR)$(DIRSLASH)*.res
-$(DEL) $(OUTDIR)$(DIRSLASH)pathdef.c
-rmdir $(OUTDIR)
-$(DEL) $(MAIN_TARGET) vimrun.exe install.exe uninstall.exe
+ -$(DEL) *.gcno *.gcda
-$(DEL) *.map
ifdef PERL
-$(DEL) if_perl.c
diff --git a/src/version.c b/src/version.c
index d6f8085628..f2b7a19f36 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 628,
+/**/
627,
/**/
626,