|
Revision 3940, 0.9 KB
(checked in by mloskot, 3 years ago)
|
|
[wktraster] Merged recent commits (diff 3933:3951) made against old repository hosted on svn.refractions.net.
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | ############################################################################# |
|---|
| 2 | # $Id$ |
|---|
| 3 | # |
|---|
| 4 | # Master makefile used to build WKT Raster |
|---|
| 5 | # |
|---|
| 6 | # Copyright (c) 2009 Sandro Santilli <strk@keybit.net> |
|---|
| 7 | # |
|---|
| 8 | # This is free software; you can redistribute and/or modify it under |
|---|
| 9 | # the terms of the GNU General Public Licence. See the COPYING file. |
|---|
| 10 | # |
|---|
| 11 | ############################################################################# |
|---|
| 12 | |
|---|
| 13 | all: corelib pglib rtpostgis.sql |
|---|
| 14 | |
|---|
| 15 | corelib: |
|---|
| 16 | $(MAKE) -C rt_core |
|---|
| 17 | |
|---|
| 18 | pglib: |
|---|
| 19 | $(MAKE) -C rt_pg |
|---|
| 20 | |
|---|
| 21 | rtpostgis.sql: |
|---|
| 22 | $(MAKE) -C rt_pg rtpostgis.sql |
|---|
| 23 | |
|---|
| 24 | install: all |
|---|
| 25 | $(MAKE) -C rt_pg install |
|---|
| 26 | $(MAKE) -C scripts install |
|---|
| 27 | |
|---|
| 28 | clean: |
|---|
| 29 | $(MAKE) -C rt_core $@ |
|---|
| 30 | $(MAKE) -C rt_pg $@ |
|---|
| 31 | $(MAKE) -C test $@ |
|---|
| 32 | $(MAKE) -C scripts $@ |
|---|
| 33 | |
|---|
| 34 | distclean: clean |
|---|
| 35 | $(RM) -R autom4te.cache |
|---|
| 36 | $(RM) config.status |
|---|
| 37 | |
|---|
| 38 | check: |
|---|
| 39 | $(MAKE) -C test $@ |
|---|
| 40 | @echo |
|---|
| 41 | @echo "Consider also running make post-install-check after installation" |
|---|
| 42 | @echo |
|---|
| 43 | |
|---|
| 44 | post-install-check: |
|---|
| 45 | $(MAKE) -C test $@ |
|---|