[geos-commits] r3859 - branches/3.3/src

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Aug 2 15:33:36 PDT 2013


Author: robe
Date: 2013-08-02 15:33:36 -0700 (Fri, 02 Aug 2013)
New Revision: 3859

Modified:
   branches/3.3/src/Makefile.vc
Log:
#607 Makefile.vc 'clean' step leaks obj files

Modified: branches/3.3/src/Makefile.vc
===================================================================
--- branches/3.3/src/Makefile.vc	2013-08-01 21:13:33 UTC (rev 3858)
+++ branches/3.3/src/Makefile.vc	2013-08-02 22:33:36 UTC (rev 3859)
@@ -353,14 +353,12 @@
 	@IF EXIST $(SLIBNAME) $(RM) $(SLIBNAME)
 	@IF EXIST $(CLIBNAME) $(RM) $(CLIBNAME)
 	@IF EXIST $(CDLLNAME) $(RM) $(CDLLNAME)
-	- at del ..\capi\*.obj
-	- at del *.exe
-	- at del *.exp
-	- at del *.ilk
-	- at del *.manifest
-	- at del *.obj
-	- at del *.pdb
-	- at FOR %d IN ( $(GEOS_DIRLIST) ) DO del %d\*.obj
+	- at del /s *.exe
+	- at del /s *.exp
+	- at del /s *.ilk
+	- at del /s *.manifest
+	- at del /s *.obj
+	- at del /s *.pdb
 
 TestSweepLineSpeed.exe:	$(LIBNAME) \
 		..\tests\bigtest\GeometryTestFactory.obj \



More information about the geos-commits mailing list