summaryrefslogtreecommitdiffstats
path: root/build/build-master.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build/build-master.xml')
-rw-r--r--build/build-master.xml82
1 files changed, 0 insertions, 82 deletions
diff --git a/build/build-master.xml b/build/build-master.xml
deleted file mode 100644
index 5ef55dff5..000000000
--- a/build/build-master.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-<?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>