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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<?xml version="1.0"?>
<project name="build" basedir=".">
<macrodef name="targets">
<attribute name="name"/>
<sequential>
<subant target="@{name}">
<!-- TODO ant 1.7 stuff here would be better.. -->
<!-- TODO: we do not call RunBeforeCommit since all test will be run thru each module separately -->
<filelist dir=".."
files="runtime/build.xml,
util/build.xml,
bridge/build.xml,
aspectj5rt/build.xml,
bcel-builder/build.xml,
testing-util/build.xml,
asm/build.xml,
weaver/build.xml,
org.aspectj.ajdt.core/build.xml,
ajde/build.xml,
testing-client/build.xml,
taskdefs/build.xml,
testing/build.xml,
testing-drivers/build.xml,
ajdoc/build.xml,
ajbrowser/build.xml,
tests/build.xml,
loadtime/build.xml,
loadtime5/build.xml"/>
</subant>
</sequential>
</macrodef>
<target name="all">
<targets name="all"/>
</target>
<target name="clean">
<targets name="clean"/>
<mkdir dir="../aj-build/dist"/>
<mkdir dir="../aj-build/jars"/>
</target>
<target name="cleanall">
<targets name="cleanall"/>
<delete dir="../aj-build"/>
</target>
<target name="test">
<targets name="test"/>
</target>
<target name="jar">
<subant target="jar">
<!-- TODO ant 1.7 stuff here would be better.. -->
<filelist dir=".."
files="runtime/build.xml,
util/build.xml,
bridge/build.xml,
aspectj5rt/build.xml,
bcel-builder/build.xml,
asm/build.xml,
weaver/build.xml,
org.aspectj.ajdt.core/build.xml,
ajde/build.xml,
taskdefs/build.xml,
ajdoc/build.xml,
ajbrowser/build.xml,
loadtime/build.xml,
loadtime5/build.xml"/>
<!-- TODO av org.aspectj.lib -->
</subant>
<!-- FIXME av bcel-builder -->
</target>
<target name="docs">
<subant target="dist">
<filelist dir=".." files="docs/build.xml"/>
</subant>
</target>
</project>
|