From: Sandro Santilli Date: Sat, 13 Jun 2015 08:08:26 +0000 (+0000) Subject: Only remove pom.xml on "make maintainer-clean" X-Git-Tag: 2.2.0rc1~355 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8e703f246c17260736c228d8bf56970988f25b5;p=postgis Only remove pom.xml on "make maintainer-clean" It's a distributed file... git-svn-id: http://svn.osgeo.org/postgis/trunk@13672 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/java/jdbc/Makefile.in b/java/jdbc/Makefile.in index d65ecfacd..9d6dffd86 100644 --- a/java/jdbc/Makefile.in +++ b/java/jdbc/Makefile.in @@ -19,7 +19,7 @@ pom.xml: pom.xml.in sed 's,%VERSION%,$(POSTGIS_LIB_VERSION),g' $< >$@ clean: - rm -f pom.xml + : nothing to do build: pom.xml @@ -27,7 +27,7 @@ build clean distclean check: $(ANT) $@ maintainer-clean: distclean - : nothing to do + rm -f pom.xml install uninstall: : TODO !