summaryrefslogtreecommitdiffstats
path: root/build.xml
blob: 31b6de35bf0880112341cc39d5745f96bc7bc7da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<project name="aspectj" basedir="." default="all">

    <!-- a root build.xml that redirects to build/build-ant.xml for convenience so that ones can type
    "ant .." straight in the modules/ root --> 

    <target name="clean">
        <subant target="clean">
            <fileset dir="." includes="build/build-ant.xml"/>
        </subant>
    </target>

    <target name="cleanall">
        <subant target="cleanall">
            <fileset dir="." includes="build/build-ant.xml"/>
        </subant>
    </target>

    <target name="all">
        <subant target="all">
            <fileset dir="." includes="build/build-ant.xml"/>
        </subant>
    </target>

    <target name="compile">
        <subant target="compile">
            <fileset dir="." includes="build/build-ant.xml"/>
        </subant>
    </target>

    <target name="test">
        <subant target="test">
            <fileset dir="." includes="build/build-ant.xml"/>
        </subant>
    </target>

    <target name="jar">
        <subant target="jar">
            <fileset dir="." includes="build/build-ant.xml"/>
        </subant>
    </target>

</project>