cooja ant run automatically builds jars

This commit is contained in:
fros4943 2008-09-01 12:47:54 +00:00
parent 822726f817
commit 9ea58d343b
3 changed files with 6 additions and 7 deletions

View file

@ -24,7 +24,7 @@
<delete dir="${build}"/>
</target>
<target name="jar" depends="clean, init, compile">
<target name="jar" depends="init, compile">
<jar destfile="${lib}/mrm.jar" basedir="${build}">
<fileset dir="images"/>
<manifest>

View file

@ -20,7 +20,7 @@
<delete file="${cooja_mspsim_jar}"/>
</target>
<target name="compile" depends="init, clean">
<target name="compile" depends="init">
<mkdir dir="${build}"/>
<javac srcdir="${src}" destdir="${build}" debug="on">
<classpath>
@ -42,7 +42,7 @@
</javadoc>
</target>
<target name="jar" depends="clean, init, compile">
<target name="jar" depends="init, compile">
<jar destfile="${cooja_mspsim_jar}" basedir="${build}">
<manifest>
<attribute name="Class-Path" value="."/>