Changed the core build file to run clean before building each time, which is necessary when switching between debug and optimized versions.

git-svn-id: https://zxing.googlecode.com/svn/trunk@466 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
dswitkin 2008-06-20 21:50:46 +00:00
parent d713f52437
commit 72dfe0c28f

View file

@ -57,13 +57,13 @@
</jar> </jar>
</target> </target>
<target name="build"> <target name="build" depends="clean">
<antcall target="compile"> <antcall target="compile">
<param name="generate-debug" value="true"/> <param name="generate-debug" value="true"/>
</antcall> </antcall>
</target> </target>
<target name="build-no-debug"> <target name="build-no-debug" depends="clean">
<antcall target="compile"> <antcall target="compile">
<param name="generate-debug" value="false"/> <param name="generate-debug" value="false"/>
</antcall> </antcall>