blob: 75a356a95905e9c8eb00219206f307b5240ce52c (
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
44
45
46
47
48
49
50
51
|
<?xml version="1.0"?>
<project name="aspectj" basedir="." default="all">
<!-- a root build.xml that redirects to build/build-master.xml for convenience so that ones can type
"ant .." straight in the modules/ root -->
<target name="patch">
<cvs output="patch">
<commandline>
<argument line="-q diff -u -N"/>
</commandline>
</cvs>
</target>
<target name="clean">
<subant target="clean">
<fileset dir="." includes="build/build-master.xml"/>
</subant>
</target>
<target name="cleanall">
<subant target="cleanall">
<fileset dir="." includes="build/build-master.xml"/>
</subant>
</target>
<target name="all">
<subant target="all">
<fileset dir="." includes="build/build-master.xml"/>
</subant>
</target>
<target name="compile">
<subant target="compile">
<fileset dir="." includes="build/build-master.xml"/>
</subant>
</target>
<target name="test">
<subant target="test">
<fileset dir="." includes="build/build-master.xml"/>
</subant>
</target>
<target name="jar">
<subant target="jar">
<fileset dir="." includes="build/build-master.xml"/>
</subant>
</target>
</project>
|