[geos-commits] r2134 - trunk/source

svn_geos at osgeo.org svn_geos at osgeo.org
Sat Jul 19 15:07:56 EDT 2008


Author: warmerdam
Date: 2008-07-19 15:07:55 -0400 (Sat, 19 Jul 2008)
New Revision: 2134

Modified:
   trunk/source/Makefile.vc
Log:
added rules to create platform.h, version.h and geos_c.h from templates on win32

Modified: trunk/source/Makefile.vc
===================================================================
--- trunk/source/Makefile.vc	2008-07-19 18:45:32 UTC (rev 2133)
+++ trunk/source/Makefile.vc	2008-07-19 19:07:55 UTC (rev 2134)
@@ -305,6 +305,17 @@
 $(CDLLNAME): ..\capi\geos_c.obj $(DLLNAME)
 	link /dll /debug ..\capi\geos_c.obj $(LIBNAME) /out:$(CDLLNAME) /implib:$(CLIBNAME)
   
+headers/geos/platform.h: headers/geos/platform.h.vc
+	copy headers\geos\platform.h.vc headers\geos\platform.h
+
+headers/geos/version.h: headers/geos/version.h.vc
+	if not exist headers\geos\version.h copy headers\geos\version.h.vc headers\geos\version.h
+
+# geos_c.h should already be in distribution, if is not you'll
+# have to run ./configure to recreate
+../capi/geos_c.h: ../capi/geos_c.h.in.
+	copy ..\capi\geos_c.h.in ..\capi\geos_c.h
+   
 .cpp.obj:
 	$(CC) $(CFLAGS) /c $*.cpp /Fo$@
 



More information about the geos-commits mailing list