############################################################################# # $Id$ # # Master makefile used to build WKT Raster # # Copyright (c) 2009 Sandro Santilli # # 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: corelib pglib rtpostgis.sql corelib: $(MAKE) -C rt_core pglib: $(MAKE) -C rt_pg rtpostgis.sql: $(MAKE) -C rt_pg rtpostgis.sql install: all $(MAKE) -C rt_pg install $(MAKE) -C scripts install clean: $(MAKE) -C rt_core $@ $(MAKE) -C rt_pg $@ $(MAKE) -C test $@ $(MAKE) -C scripts $@ distclean: clean $(RM) -R autom4te.cache $(RM) config.status check: $(MAKE) -C test $@ @echo @echo "Consider also running make post-install-check after installation" @echo post-install-check: $(MAKE) -C test $@