Author: jrieks
Date: Thu Apr 14 06:58:21 2005
New Revision: 7832

Modified:
   trunk/config/gen/makefiles/dynclasses.in
Log:
[perl #34960] [PATCH] r7825: remove win32 intermediate files during 
'dynclasses/make clean'

the attached patch against r7825 removes win32 intermediate files during 
'dynclasses/make clean'

Courtesy of Jerry Gay <[EMAIL PROTECTED]>


Modified: trunk/config/gen/makefiles/dynclasses.in
==============================================================================
--- trunk/config/gen/makefiles/dynclasses.in    (original)
+++ trunk/config/gen/makefiles/dynclasses.in    Thu Apr 14 06:58:21 2005
@@ -60,8 +60,17 @@
 testclean :
        $(RM_F) ../t/dynclass/*.imc ../t/dynclass/*.pbc
 
+dynext-clean :
+# win32 import library
+       $(RM_F) *.lib
+# win32 program data base - contains debugging info
+       $(RM_F) *.pdb
+# win32 incremental link status files
+       $(RM_F) *.ilk
+# win32 exported functions and data items
+       $(RM_F) *.exp
 
-clean : testclean
+clean : testclean dynext-clean
        $(RM_F) *.c pmc_*.h *_group.h *$(LOAD_EXT) *.dump lib-* *$(O)
 
 realclean: clean

Reply via email to