postgis/java/Makefile
Sandro Santilli 202a639469 Ant rules to excecute maven by Maria Arias de Reyna (#1437)
Also simplify java Makefile to be simple proxies of ant

git-svn-id: http://svn.osgeo.org/postgis/trunk@9236 b70326c6-7e19-0410-871a-916f4a2858ee
2012-02-20 12:52:58 +00:00

21 lines
647 B
Makefile

# **********************************************************************
# *
# * PostGIS - Spatial Types for PostgreSQL
# * http://postgis.refractions.net
# *
# * 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.
# *
# **********************************************************************
# TODO: add all subdirs
SUBDIRS = jdbc
all install uninstall clean distclean check maintainer-clean:
for s in $(SUBDIRS); do \
echo "---- Making $@ in $${s}"; \
$(MAKE) -C $${s} $@ || exit 1; \
done;