diff options
author | avasseur <avasseur> | 2005-04-20 10:57:13 +0000 |
---|---|---|
committer | avasseur <avasseur> | 2005-04-20 10:57:13 +0000 |
commit | cf35fc6351b60933460fe44e00e262cb72f43cef (patch) | |
tree | 573d23d687941b1042eee1abc1e71d6045277880 /build.xml | |
parent | c850c085804bc42cb378638cbe0e65a0a5358d3f (diff) | |
download | aspectj-cf35fc6351b60933460fe44e00e262cb72f43cef.tar.gz aspectj-cf35fc6351b60933460fe44e00e262cb72f43cef.zip |
fixing Alex build dependancies. Adding top level build. Usefull for patch creation
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/build.xml b/build.xml new file mode 100644 index 000000000..75a356a95 --- /dev/null +++ b/build.xml @@ -0,0 +1,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>
\ No newline at end of file |