postgis/extensions/Makefile.in
Paul Ramsey 94f57513ea Replace final reference to 'make' with $(MAKE)
git-svn-id: http://svn.osgeo.org/postgis/trunk@13135 b70326c6-7e19-0410-871a-916f4a2858ee
2014-12-02 00:33:33 +00:00

40 lines
970 B
Makefile

#############################################################################
#
# Master Makefile used to build extensions
# Copyright (C) 2012 Regina Obe and Leo Hsu <lr@pcorp.us>
# Copyright (C) 2012 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.
#
#############################################################################
SUBDIRS = postgis
SUBDIRS += postgis_tiger_geocoder
ifeq (@TOPOLOGY@,topology)
SUBDIRS += postgis_topology
endif
ifeq (@SFCGAL@,sfcgal)
SUBDIRS += postgis_sfcgal
endif
ifeq (@ADDRESS_STANDARDIZER@,address_standardizer)
SUBDIRS += address_standardizer
endif
all clean distclean install uninstall:
for DIR in $(SUBDIRS); do \
echo "---- Making $@ in $${DIR}"; \
$(MAKE) -C "$${DIR}" $@ || exit 1; \
done
distclean: distclean-local
distclean-local:
rm -f Makefile
check:
@echo "Nothing to check"