]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tools/build.xml
Add SharedSplitControlC, for N clients needing shared access to something.
[tinyos-2.x.git] / tools / build.xml
index 6c2b204ac1413e033164c4223b5add309294a554..31d577511438f41cf1adc47c49ff21dab14e1d2a 100644 (file)
@@ -1,14 +1,27 @@
 <project name="tinyos-2.x tools" default="all">
 
        <target name="all" >
-               <echo message = "Building ${project.name}" />
+               <echo message = "Building tinyos-2.x tools" />
                <exec executable="./Bootstrap" failonerror="true">
                </exec>
                <exec executable="./configure" failonerror="true">
+                       <arg  line="--quiet" />
                </exec>
                <exec executable="make" failonerror="true">
                        <arg line="all" />
                </exec>
        </target>
 
+       <target name="install" >
+               <echo message = "Installing tinyos-2.x tools" />
+               <exec executable="./Bootstrap" failonerror="true">
+               </exec>
+               <exec executable="./configure" failonerror="true">
+                       <arg line="--prefix=/scratch/tos2_trial --quiet" />
+                       </exec>
+               <exec executable="make" failonerror="true">
+                       <arg line="install" />
+               </exec>
+       </target>
+
 </project>