]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/AntiTheft/java/build.xml
added ant build support for java
[tinyos-2.x.git] / apps / AntiTheft / java / build.xml
diff --git a/apps/AntiTheft/java/build.xml b/apps/AntiTheft/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>