Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 96c9fe0069796d04c592aeab178722badfab285f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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}" failifexecutionfails="false"/>
     </target>

    <condition property="binDirExists">
        <available file="${bin_dir}" type="dir"/>
    </condition>

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

</project>

Back to the top