diff options
author | wisberg <wisberg> | 2005-05-19 03:48:09 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2005-05-19 03:48:09 +0000 |
commit | 2afa9c9148da8566562ef029b9a5d6b5f141763c (patch) | |
tree | e0c62bcb64d8a9884639743298b23eda89cf96cb /asm | |
parent | 79d3b2f57fab5ac2d63d402ee8c226082c872064 (diff) | |
download | aspectj-2afa9c9148da8566562ef029b9a5d6b5f141763c.tar.gz aspectj-2afa9c9148da8566562ef029b9a5d6b5f141763c.zip |
newbuild.xml replacing build.xml, with Alex ok
Diffstat (limited to 'asm')
-rw-r--r-- | asm/build.xml | 40 | ||||
-rw-r--r-- | asm/newbuild.xml | 6 |
2 files changed, 3 insertions, 43 deletions
diff --git a/asm/build.xml b/asm/build.xml index 3057e9262..d6a9c197c 100644 --- a/asm/build.xml +++ b/asm/build.xml @@ -1,40 +1,6 @@ <?xml version="1.0"?> -<project name="asm" default="all" basedir="."> - - <import file="../build/build-common.xml"/> - <import file="../bridge/build.xml"/> - - <path id="asm.test.src.path"> - <fileset dir="${basedir}/../lib"> - <include name="junit/*.jar"/> - </fileset> - <path refid="asm.src.path"/> - </path> - - <path id="asm.src.path"> - <pathelement path="../bridge/bin"/> - </path> - - <target name="compile" depends="init, - bridge.compile"> - <srccompile project="asm" path="asm.src.path"/> - </target> - - <target name="test:compile" depends="compile"> - <testcompile project="asm" path="asm.test.src.path"/> - </target> - - <target name="test" depends="test:compile"> - <testrun project="asm" path="asm.test.src.path" suite="AsmModuleTests"/> - </target> - - <target name="jar" depends="compile"> - <delete file="${build.ajdir}/jars/asm.jar"/> - <zip destfile="${build.ajdir}/jars/asm.jar"> - <fileset dir="bin"> - <include name="**/*"/> - </fileset> - </zip> - </target> +<!-- see ../build/*.html for explanation --> +<project name="asm" default="test" basedir="."> + <import file="${basedir}/../build/build.xml"/> </project> diff --git a/asm/newbuild.xml b/asm/newbuild.xml deleted file mode 100644 index d6a9c197c..000000000 --- a/asm/newbuild.xml +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0"?> -<!-- see ../build/*.html for explanation --> -<project name="asm" default="test" basedir="."> - <import file="${basedir}/../build/build.xml"/> -</project> - |