]> source.dussan.org Git - aspectj.git/commitdiff
From branch: Driver for build.xmls that now exist in each module.
authoraclement <aclement>
Tue, 19 Apr 2005 10:44:18 +0000 (10:44 +0000)
committeraclement <aclement>
Tue, 19 Apr 2005 10:44:18 +0000 (10:44 +0000)
build/build-master.xml [new file with mode: 0644]

diff --git a/build/build-master.xml b/build/build-master.xml
new file mode 100644 (file)
index 0000000..1cdf30d
--- /dev/null
@@ -0,0 +1,90 @@
+<?xml version="1.0"?>
+<project name="build" basedir=".">
+
+   <target name="patch">
+       <cvs output="patch">
+            <commandline>
+                <argument line="-q diff -u -N"/>
+            </commandline>
+        </cvs>
+    </target>
+
+    <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>