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:
@ -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
|
||||
|
@ -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>
|
||||
|
||||
|
Reference in New Issue
Block a user