root/spike/wktraster/scripts/Makefile.in

Revision 5464, 0.7 KB (checked in by pracine, 23 months ago)

Removed cleaning of ~*

  • Property svn:keywords set to Id
Line 
1#############################################################################
2# $Id$
3#
4# Copyright (c) 2009 Pierre Racine <pierre.racine@sbf.ulaval.ca>
5#
6# This is free software; you can redistribute and/or modify it under
7# the terms of the GNU General Public Licence. See the COPYING file.
8#
9#############################################################################
10CP = cp -p
11
12# Filenames with extension as determined by the OS
13GDAL2WKTRASTER=gdal2wktraster.py
14
15# PostgreSQL executable directory
16PGSQL_BINDIR=@PGSQL_BINDIR@
17
18all:
19
20install:
21        $(CP) $(GDAL2WKTRASTER) $(PGSQL_BINDIR)/$(GDAL2WKTRASTER)
22
23uninstall:
24        $(RM) $(PGSQL_BINDIR)/$(GDAL2WKTRASTER)
25
26clean:
27        $(RM) *.o
Note: See TracBrowser for help on using the browser.