]> 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 19:00:35 +0000 (19:00 +0000)
committerbeutel <beutel>
Tue, 14 Aug 2007 19:00:35 +0000 (19:00 +0000)
doc/build.xml [new file with mode: 0644]

diff --git a/doc/build.xml b/doc/build.xml
new file mode 100644 (file)
index 0000000..1e46b12
--- /dev/null
@@ -0,0 +1,16 @@
+<project name="tinyos-2.x docs" default="all">
+
+       <target name="all" >
+               <echo message = "Building tinyos-2.x docs as html" />
+               <exec executable="make" failonerror="true">
+                       <arg  line="all" />
+               </exec>
+       </target>
+
+       <target name="clean" >
+               <echo message = "Building tinyos-2.x docs as pdf" />
+               <exec executable="make" failonerror="true">
+                       <arg  line="pdf" />
+               </exec>
+       </target>
+</project>