Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 3f8e9f07fedbf7e4766e03febaad2fb2b3a6150b (plain) (tree)


















                                                                                                
<?xml version="1.0" encoding="UTF-8"?>
<project default="makeTestApps">

    <!-- properties -->
    <property name="bin_dir" location="./data/launch/bin"/>
    <property name="src_dir" location="./data/launch/src"/>

    <!-- targets -->
    <target name="makeTestApps" description="Create the binaries for the test applications">    
            <exec executable="make" dir="${src_dir}" />
     </target>

    <target name="clean" description="Delete Test Applications">
        <delete>
    	    <fileset dir="${bin_dir}" includes="*"/>
        </delete>
    </target>

</project>

Back to the top