We now only build the files that have changed. It should speed up compile time as our source tree grows.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@726 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2009-05-15 20:48:01 +00:00
parent f33f3c0434
commit 57e5f22987
1 changed files with 3 additions and 12 deletions

View File

@ -61,21 +61,12 @@
<condition property="target.is.playground" value="true">
<equals arg1="${target}" arg2="playground"/>
</condition>
<path id="source">
<dirset dir="${source.dir}">
<patternset>
<include name="org/broadinstitute/sting/*"/>
<exclude name="**/playground/**" unless="target.is.playground"/>
</patternset>
</dirset>
</path>
<!-- Compile the java code from ${src} into build -->
<javac destdir="build" classpathref="external.dependencies"
<javac srcdir="${source.dir}" destdir="build" classpathref="external.dependencies"
debug="true" debuglevel="lines,vars,source">
<!--compilerarg value="-Xlint:unchecked" /-->
<src refid="source" />
<exclude name="**/playground/**" unless="target.is.playground"/>
</javac>
</target>