]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.0628: MinGW: coverage files are not cleaned up v9.1.0628
authorKen Takata <kentkt@csc.jp>
Sat, 27 Jul 2024 11:14:35 +0000 (13:14 +0200)
committerChristian Brabandt <cb@256bit.org>
Sat, 27 Jul 2024 11:16:43 +0000 (13:16 +0200)
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>
src/Make_cyg_ming.mak
src/version.c

index 5fb3a41f0804eb5913990a32bec79716c9039fa2..f082c960d82d6c0cd34a2fd822db7f575743b2da 100644 (file)
@@ -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
index d6f80856280c0d6ce84337c4060d3657e5c5f5fa..f2b7a19f366c00d28b8e86d7b519151a017bd7c8 100644 (file)
@@ -704,6 +704,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    628,
 /**/
     627,
 /**/