Changed the core build file to run clean before building each time, which is necessar...
authordswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Fri, 20 Jun 2008 21:50:46 +0000 (21:50 +0000)
committerdswitkin <dswitkin@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Fri, 20 Jun 2008 21:50:46 +0000 (21:50 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@466 59b500cc-1b3d-0410-9834-0bbf25fbcc57

core/build.xml

index c5cd834..e2df078 100644 (file)
     </jar>
   </target>
 
-  <target name="build">
+  <target name="build" depends="clean">
     <antcall target="compile">
       <param name="generate-debug" value="true"/>
     </antcall>
   </target>
 
-  <target name="build-no-debug">
+  <target name="build-no-debug" depends="clean">
     <antcall target="compile">
       <param name="generate-debug" value="false"/>
     </antcall>