From c800834d639840ed9f1fb94fdf2b44fe820c0b80 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 18 Jun 2019 06:55:34 +0100 Subject: [PATCH] Makefile.clangcl: add .rcpp files to 'make clean'. They're the intermediate product between preprocessing a resource file and feeding it to the resource compiler proper, so they certainly need cleaning. --- mkfiles.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkfiles.pl b/mkfiles.pl index 42690cf3..0b378f66 100755 --- a/mkfiles.pl +++ b/mkfiles.pl @@ -601,7 +601,7 @@ if (defined $makefiles{'clangcl'}) { print &def($makefile_extra{'clangcl'}->{'end'}); print "\nclean:\n". &splitline("\trm -f \$(BUILDDIR)*.obj \$(BUILDDIR)*.exe ". - "\$(BUILDDIR)*.res \$(BUILDDIR)*.map ". + "\$(BUILDDIR)*.rcpp \$(BUILDDIR)*.res \$(BUILDDIR)*.map ". "\$(BUILDDIR)*.exe.manifest")."\n"; select STDOUT; close OUT; }