diff options
author | Yves Orton <demerphq@gmail.com> | 2007-02-10 21:00:10 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-02-10 19:35:09 +0000 |
commit | a1216aced59ab8ef16c7c3220a50dad6ed434ef2 (patch) | |
tree | afa50106f66700eeff37dccc89387ac9aa22c45f /win32 | |
parent | 81e3fc254f697a77f623afd4d35468dd9ca691c7 (diff) | |
download | perl-a1216aced59ab8ef16c7c3220a50dad6ed434ef2.tar.gz |
Defend against cmd.exe stupidity (on Win2k at least)
Message-ID: <9b18b3110702101100n76f65136ke65113bf0dbd01f@mail.gmail.com>
Date: Sat, 10 Feb 2007 20:00:10 +0100
p4raw-id: //depot/perl@30197
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/win32/Makefile b/win32/Makefile index 90570b9a42..8299d1c9fa 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1167,7 +1167,11 @@ distclean: realclean -del /f bin\*.bat -del /f perllibst.h -del /f $(PERLEXE_ICO) perl.base + ren ..\lib\Net\Changes.libnet Changes.tenbil + ren ..\lib\Net\README.libnet README.tenbil -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib + ren ..\lib\Net\Changes.tenbil Changes.libnet + ren ..\lib\Net\README.tenbil README.libnet -cd $(EXTDIR) && del /s *.def Makefile Makefile.old -if exist $(AUTODIR) rmdir /s /q $(AUTODIR) -if exist $(COREDIR) rmdir /s /q $(COREDIR) @@ -1272,7 +1276,11 @@ _clean : -@$(DEL) $(WIN32_OBJ) -@$(DEL) $(DLL_OBJ) -@$(DEL) $(X2P_OBJ) + ren ..\lib\Net\Changes.libnet Changes.tenbil + ren ..\lib\Net\README.libnet README.tenbil -@$(DEL) ..\*$(o) ..\*.lib ..\*.exp *$(o) *.lib *.exp *.res + ren ..\lib\Net\Changes.tenbil Changes.libnet + ren ..\lib\Net\README.tenbil README.libnet -@$(DEL) ..\t\*.exe ..\t\*.dll ..\t\*.bat -@$(DEL) ..\x2p\*.exe ..\x2p\*.bat -@$(DEL) *.ilk |