From: Nick Ing-Simmons Date: Fri, 1 Jun 2001 10:13:31 +0000 (+0000) Subject: Cleanup dll.base and dll.exp created by GCC builds. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=562c1c190437b5b6cd7367e07a3dd748f2d9f34f;p=p5sagit%2Fp5-mst-13.2.git Cleanup dll.base and dll.exp created by GCC builds. p4raw-id: //depot/perlio@10364 --- diff --git a/lib/ExtUtils/MM_Win32.pm b/lib/ExtUtils/MM_Win32.pm index 709be20..a75ec0d 100644 --- a/lib/ExtUtils/MM_Win32.pm +++ b/lib/ExtUtils/MM_Win32.pm @@ -532,6 +532,22 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)\.exists join('',@m); } +sub clean +{ + my ($self) = @_; + my $s = &ExtUtils::MM_Unix::clean; + if ($GCC) { + $s .= <<'END'; +clean :: + -$(RM_F) dll.base dll.exp + +END + } + return $s; +} + + + sub perl_archive { my ($self) = @_;