postgis/raster/Makefile.in
Raúl Marín cdd520d378 Remove WARNFLAGS
Closes #4630
2020-01-31 17:41:14 +01:00

67 lines
1.7 KiB
Makefile

#############################################################################
#
# Master Makefile used to build WKT Raster
#
# Copyright (c) 2009 Sandro Santilli <strk@kbt.io>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#############################################################################
CC=@CC@
CFLAGS=-I../liblwgeom @CFLAGS@
LDFLAGS = @LDFLAGS@
all: @RT_CORE_LIB@ @RT_PG_LIB@ @RT_LOADER@ @RT_POSTGIS_SQL@
corelib:
$(MAKE) -C rt_core
pglib: corelib
$(MAKE) -C rt_pg
rtloader: corelib
$(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
check check-unit check-regress core-check:
$(MAKE) -C test $@