In a simple compiling of java files, is there anyway I can compile the java programs with same source and destination directories.  When I give the same directory it does not update the class files already present.

<target name="build.compile"
          description="compiles ">
                <javac destdir="${build.dir}/classes" classpathref=""
                  verbose="off">
                        <src path="${basedir}"/>
                <include name="**/*.java"/>
        </javac>
</target>


Thanks

K.Srinivas


Reply via email to