]> 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:16:19 +0000 (17:16 +0000)
committerbeutel <beutel>
Tue, 14 Aug 2007 17:16:19 +0000 (17:16 +0000)
support/sdk/cpp/sf/build.xml [new file with mode: 0644]
support/sdk/java/build.xml [new file with mode: 0644]

diff --git a/support/sdk/cpp/sf/build.xml b/support/sdk/cpp/sf/build.xml
new file mode 100644 (file)
index 0000000..9888cac
--- /dev/null
@@ -0,0 +1,10 @@
+<project name="tinyos-2.x support sdk java" default="all">
+
+       <target name="all" >
+               <echo message = "Building support sdk cpp sf" />
+               <exec executable="make" failonerror="true">
+                       <arg line="all" />
+               </exec>
+       </target>
+
+</project>
diff --git a/support/sdk/java/build.xml b/support/sdk/java/build.xml
new file mode 100644 (file)
index 0000000..ef16add
--- /dev/null
@@ -0,0 +1,15 @@
+<project name="tinyos-2.x support sdk java" default="all">
+
+       <target name="all" >
+               <echo message = "Building support sdk java" />
+               <exec executable="make" failonerror="true">
+                       <arg line="all" />
+               </exec>
+       </target>
+       <target name="tinyos.jar">
+               <echo message="Building tinyos.jar"></echo>
+               <exec failonerror="true" executable="make">
+                       <arg line="tinyos.jar"></arg></exec>
+       </target>
+
+</project>