[postgis-commits] svn - r3798 - spike/wktraster/scripts
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Thu Mar 5 04:32:43 PST 2009
Author: mloskot
Date: 2009-03-05 04:32:39 -0800 (Thu, 05 Mar 2009)
New Revision: 3798
Modified:
spike/wktraster/scripts/
spike/wktraster/scripts/Makefile.in
Log:
scripts/Makefile.in: Fixed install target.
Property changes on: spike/wktraster/scripts
___________________________________________________________________
Name: svn:ignore
+ Makefile
Modified: spike/wktraster/scripts/Makefile.in
===================================================================
--- spike/wktraster/scripts/Makefile.in 2009-03-04 21:37:34 UTC (rev 3797)
+++ spike/wktraster/scripts/Makefile.in 2009-03-05 12:32:39 UTC (rev 3798)
@@ -10,18 +10,19 @@
# *
# **********************************************************************
+CP = cp -p
+
# 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)
+install:
+ $(CP) $(GDAL2WKTRASTER) x.txt
uninstall:
- @rm -f $(PGSQL_BINDIR)/$(GDAL2WKTRASTER)
+ $(RM) $(PGSQL_BINDIR)/$(GDAL2WKTRASTER)
clean:
- @rm -f *.o $(GDAL2WKTRASTER) $(GDAL2WKTRASTER)
-
+ $(RM) ~* *.o
More information about the postgis-commits
mailing list