1
0

Add dependency on prepare targets for new compile targets, so that if they

are run independently the destination dirs will exist.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@201921 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Kitching
2005-06-26 23:08:36 +00:00
parent e939036229
commit c68672222d

View File

@@ -274,7 +274,7 @@
depends='log4j12-warning,log4j13-warning,logkit-warning,jdk1.4-warning,avalon-framework-warning'/>
<target name="compile-only"
depends="init,discovery,warning,show-lib-presence,compile-non-log4j,compile-log4j12,compile-log4j13,build-jar"/>
depends="prepare,discovery,warning,show-lib-presence,compile-non-log4j,compile-log4j12,compile-log4j13,build-jar"/>
<target name="show-lib-presence">
<echo message="jdk.1.4.present=${jdk.1.4.present}"/>
@@ -284,7 +284,7 @@
<echo message="avalon-framework.present=${avalon-framework.present}"/>
</target>
<target name="compile-non-log4j">
<target name="compile-non-log4j" depends="prepare">
<!-- compile everything except Log4J classes -->
<javac srcdir="${source.home}"
destdir="${build.home}/classes"
@@ -309,7 +309,7 @@
</javac>
</target>
<target name="compile-log4j12">
<target name="compile-log4j12" depends="prepare">
<!-- compile the log4j1.2 support classes -->
<javac srcdir="${source.home}"
destdir="${build.home}/classes"
@@ -333,7 +333,7 @@
</javac>
</target>
<target name="compile-log4j13">
<target name="compile-log4j13" depends="prepare">
<!-- compile the log4j1.3 support classes -->
<javac srcdir="${source.home}"
destdir="${build.home}/classes"