[geos-commits] r3860 - trunk/src

svn_geos at osgeo.org svn_geos at osgeo.org
Fri Aug 2 15:39:00 PDT 2013


Author: robe
Date: 2013-08-02 15:38:59 -0700 (Fri, 02 Aug 2013)
New Revision: 3860

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

Modified: trunk/src/Makefile.vc
===================================================================
--- trunk/src/Makefile.vc	2013-08-02 22:33:36 UTC (rev 3859)
+++ trunk/src/Makefile.vc	2013-08-02 22:38:59 UTC (rev 3860)
@@ -367,14 +367,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