]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
added ant support
authorbeutel <beutel>
Thu, 6 Sep 2007 17:00:22 +0000 (17:00 +0000)
committerbeutel <beutel>
Thu, 6 Sep 2007 17:00:22 +0000 (17:00 +0000)
apps/MultihopOscilloscope/java/build.xml [new file with mode: 0644]

diff --git a/apps/MultihopOscilloscope/java/build.xml b/apps/MultihopOscilloscope/java/build.xml
new file mode 100644 (file)
index 0000000..e8fa088
--- /dev/null
@@ -0,0 +1,19 @@
+<project name="tinyos-2.x app multihoposcilloscope" default="all">
+
+       <target name="all" >
+               <exec executable="make" failonerror="true">
+                       <arg line="all" />
+               </exec>
+       </target>
+
+       <target name="java" depends="all">
+       </target>
+
+       <target name="javadoc" >
+               <echo message = "Building javadoc" />
+               <exec executable="make" failonerror="true">
+                       <arg line="javadoc" />
+               </exec>
+       </target>
+       
+</project>