[postgis-commits] svn - r3795 - spike/wktraster/scripts

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Wed Mar 4 13:35:40 PST 2009


Author: pracine
Date: 2009-03-04 13:35:40 -0800 (Wed, 04 Mar 2009)
New Revision: 3795

Added:
   spike/wktraster/scripts/Makefile.in
Log:
Copy gdap2wktraster.py to pgsql/bin.

Added: spike/wktraster/scripts/Makefile.in
===================================================================
--- spike/wktraster/scripts/Makefile.in	2009-03-04 20:25:41 UTC (rev 3794)
+++ spike/wktraster/scripts/Makefile.in	2009-03-04 21:35:40 UTC (rev 3795)
@@ -0,0 +1,27 @@
+# **********************************************************************
+# *
+# * WKTRaster - Raster Types for PostGIS
+# * http://www.postgis.org/support/wiki/index.php?WKTRasterHomePage
+# *
+# * Copyright (c) 2009 Sandro Santilli <strk at keybit.net>
+# *
+# * This is free software; you can redistribute and/or modify it under
+# * the terms of the GNU General Public Licence. See the COPYING file.
+# *
+# **********************************************************************
+
+# Filenames with extension as determined by the OS
+GDAL2WKTRASTER=gdal2wktraster.py
+
+# PostgreSQL executable directory
+PGSQL_BINDIR=@PGSQL_BINDIR@
+
+install: all
+    @cp $(GDAL2WKTRASTER) $(PGSQL_BINDIR)/$(GDAL2WKTRASTER)
+
+uninstall:
+    @rm -f $(PGSQL_BINDIR)/$(GDAL2WKTRASTER)
+
+clean:
+    @rm -f *.o $(GDAL2WKTRASTER) $(GDAL2WKTRASTER) 
+



More information about the postgis-commits mailing list