From: Steve Hay Date: Mon, 10 Jan 2005 10:28:00 +0000 (+0000) Subject: Make Win32's distclean target clean up properly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6c4b87ea2cf1b07b221a48a59b468e8aae9a0981;p=p5sagit%2Fp5-mst-13.2.git Make Win32's distclean target clean up properly p4raw-id: //depot/perl@23777 --- diff --git a/win32/Makefile b/win32/Makefile index 760622f..eb43c0f 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1109,6 +1109,10 @@ distclean: realclean -if exist $(LIBDIR)\List rmdir /s $(LIBDIR)\List -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar -if exist $(LIBDIR)\Scalar rmdir /s $(LIBDIR)\Scalar + -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys + -if exist $(LIBDIR)\Sys rmdir /s $(LIBDIR)\Sys + -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads + -if exist $(LIBDIR)\threads rmdir /s $(LIBDIR)\threads -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS -if exist $(LIBDIR)\XS rmdir /s $(LIBDIR)\XS -cd $(PODDIR) && del /f *.html *.bat checkpods \ diff --git a/win32/makefile.mk b/win32/makefile.mk index 45ed15e..28a5f04 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1270,6 +1270,10 @@ distclean: realclean -if exist $(LIBDIR)\List rmdir /s $(LIBDIR)\List -if exist $(LIBDIR)\Scalar rmdir /s /q $(LIBDIR)\Scalar -if exist $(LIBDIR)\Scalar rmdir /s $(LIBDIR)\Scalar + -if exist $(LIBDIR)\Sys rmdir /s /q $(LIBDIR)\Sys + -if exist $(LIBDIR)\Sys rmdir /s $(LIBDIR)\Sys + -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads + -if exist $(LIBDIR)\threads rmdir /s $(LIBDIR)\threads -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS -if exist $(LIBDIR)\XS rmdir /s $(LIBDIR)\XS -cd $(PODDIR) && del /f *.html *.bat checkpods \