|
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 | ############################################################################# |
|---|
| 10 | CP = cp -p |
|---|
| 11 | |
|---|
| 12 | # Filenames with extension as determined by the OS |
|---|
| 13 | GDAL2WKTRASTER=gdal2wktraster.py |
|---|
| 14 | |
|---|
| 15 | # PostgreSQL executable directory |
|---|
| 16 | PGSQL_BINDIR=@PGSQL_BINDIR@ |
|---|
| 17 | |
|---|
| 18 | all: |
|---|
| 19 | |
|---|
| 20 | install: |
|---|
| 21 | $(CP) $(GDAL2WKTRASTER) $(PGSQL_BINDIR)/$(GDAL2WKTRASTER) |
|---|
| 22 | |
|---|
| 23 | uninstall: |
|---|
| 24 | $(RM) $(PGSQL_BINDIR)/$(GDAL2WKTRASTER) |
|---|
| 25 | |
|---|
| 26 | clean: |
|---|
| 27 | $(RM) *.o |
|---|