1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Fix 'make clean' with jdbc and ant by using filesets.

This commit is contained in:
Bruce Momjian
2001-05-17 03:22:53 +00:00
parent e7ffdd4475
commit 1ef5c99c85
4 changed files with 26 additions and 22 deletions

View File

@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.29 2001/05/17 00:29:52 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.30 2001/05/17 03:22:53 momjian Exp $
#
#-------------------------------------------------------------------------
@ -37,4 +37,3 @@ uninstall:
clean distclean maintainer-clean:
$(ANT) -buildfile $(top_srcdir)/build.xml clean
rm -f org/postgresql/Driver.java

View File

@ -3,7 +3,7 @@
build file to allow ant (http://jakarta.apache.org/ant/) to be used
to build the PostgreSQL JDBC Driver.
$Id: build.xml,v 1.10 2001/05/16 17:09:26 momjian Exp $
$Id: build.xml,v 1.11 2001/05/17 03:22:53 momjian Exp $
-->
@ -83,8 +83,10 @@
<!-- This target removes any class files from the build directory -->
<target name="clean">
<delete dir="${dest}" />
<delete dir="${jars}" />
<delete>
<fileset dir="${dest}" />
<fileset dir="${jars}" />
</delete>
<delete file="${package}/Driver.java" />
</target>