b5c94910ac
like /tools/mspsim. This is a very simple modification that affects a very large number of files in Contiki: Cooja, /platform/cooja, Collect-view, Coffe-manager, and Cooja simulation files (.csc). I've gone through Contiki to update all references I could find. Nevertheless, this commit will likely break external dependencies, like saved Cooja simulation files.
36 lines
914 B
XML
36 lines
914 B
XML
<?xml version="1.0"?>
|
|
|
|
<project name="Coffee Manager" default="jar" basedir=".">
|
|
<target name="init">
|
|
<tstamp/>
|
|
</target>
|
|
|
|
<target name="compile" depends="init">
|
|
<mkdir dir="build"/>
|
|
<javac srcdir="org/contikios/coffee" destdir="build" includeantruntime="false" debug="true" />
|
|
</target>
|
|
|
|
<target name="clean" depends="init">
|
|
<delete file="coffee.jar"/>
|
|
<delete dir="build"/>
|
|
</target>
|
|
|
|
<target name="configs" depends="init">
|
|
<mkdir dir="build"/>
|
|
<copy todir="build">
|
|
<fileset file="sky.properties"/>
|
|
<fileset file="esb.properties"/>
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="jar" depends="init, compile, configs">
|
|
<jar destfile="coffee.jar" basedir="build">
|
|
<manifest>
|
|
<attribute name="Main-Class" value="org.contikios.coffee.CoffeeManager"/>
|
|
<attribute name="Class-Path" value="."/>
|
|
</manifest>
|
|
</jar>
|
|
</target>
|
|
|
|
</project>
|