postgis/raster/Makefile.in
Paul Ramsey 29e2d6a299 Change @rm to rm for visibility
git-svn-id: http://svn.osgeo.org/postgis/trunk@9523 b70326c6-7e19-0410-871a-916f4a2858ee
2012-03-21 21:36:59 +00:00

58 lines
1.2 KiB
Makefile

#############################################################################
# $Id: Makefile 3940 2009-03-30 09:30:43Z mloskot $
#
# Master makefile used to build WKT Raster
#
# Copyright (c) 2009 Sandro Santilli <strk@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.
#
#############################################################################
all: @RT_CORE_LIB@ @RT_PG_LIB@ @RT_LOADER@ @RT_POSTGIS_SQL@
corelib:
$(MAKE) -C rt_core
pglib:
$(MAKE) -C rt_pg
rtloader:
$(MAKE) -C loader
rtpostgis.sql:
$(MAKE) -C rt_pg rtpostgis.sql
install: all
$(MAKE) -C rt_pg install
$(MAKE) -C loader install
$(MAKE) -C scripts install
uninstall:
$(MAKE) -C rt_pg uninstall
$(MAKE) -C loader uninstall
$(MAKE) -C scripts uninstall
clean:
$(MAKE) -C rt_core $@
$(MAKE) -C rt_pg $@
$(MAKE) -C loader $@
$(MAKE) -C test $@
$(MAKE) -C scripts $@
distclean: clean
$(MAKE) -C rt_core $@
$(MAKE) -C rt_pg $@
$(MAKE) -C loader $@
$(MAKE) -C test $@
$(MAKE) -C scripts $@
rm -f raster_config.h Makefile
core-check:
$(MAKE) -C test $@
check:
$(MAKE) -C test $@