]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
added ant build.xml for better automating the build process
authorbeutel <beutel>
Tue, 14 Aug 2007 17:35:46 +0000 (17:35 +0000)
committerbeutel <beutel>
Tue, 14 Aug 2007 17:35:46 +0000 (17:35 +0000)
tools/build.xml [new file with mode: 0644]

diff --git a/tools/build.xml b/tools/build.xml
new file mode 100644 (file)
index 0000000..6c2b204
--- /dev/null
@@ -0,0 +1,14 @@
+<project name="tinyos-2.x tools" default="all">
+
+       <target name="all" >
+               <echo message = "Building ${project.name}" />
+               <exec executable="./Bootstrap" failonerror="true">
+               </exec>
+               <exec executable="./configure" failonerror="true">
+               </exec>
+               <exec executable="make" failonerror="true">
+                       <arg line="all" />
+               </exec>
+       </target>
+
+</project>