Currently, my compile target is as follows.
<target name="compile">
<mkdir dir="${build.classes.dir}"/>
<javac srcdir="${src.dir}" destdir="${build.classes.dir}"/>
</target>
So, it compiles everything in ${src.dir}.
Apart from this I want to add one single Java file to be compiled.
Therefore, I want:
1. All Java files in ${src.dir} to be compiled.
2. rt/src/Crypto.java to be compiled.
How can I do this?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]