diff options
author | aclement <aclement> | 2005-04-19 10:38:38 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-04-19 10:38:38 +0000 |
commit | f7bcff6dbf16ed80ca4934fd8529deae6ebdde7c (patch) | |
tree | 2362d53afe3cb37c15b9ff0a3d513fcad9e0b89b /runtime/build.xml | |
parent | 45ae94da9e44a31f970c9f5ee4f678902b26fc17 (diff) | |
download | aspectj-f7bcff6dbf16ed80ca4934fd8529deae6ebdde7c.tar.gz aspectj-f7bcff6dbf16ed80ca4934fd8529deae6ebdde7c.zip |
From branch: New build scripts that Alex uses under IntelliJ - can be run individually or via master in build module.
Diffstat (limited to 'runtime/build.xml')
-rw-r--r-- | runtime/build.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/runtime/build.xml b/runtime/build.xml new file mode 100644 index 000000000..fb36d8957 --- /dev/null +++ b/runtime/build.xml @@ -0,0 +1,41 @@ +<?xml version="1.0"?> +<project name="runtime" default="all" basedir="."> + + <import file="../build/build-common.xml"/> + + <path id="runtime.test.src.path"> + <fileset dir="${basedir}/../lib"> + <include name="junit/*.jar"/> + </fileset> + <path refid="runtime.src.path"/> + </path> + + <path id="runtime.src.path"> + </path> + + <target name="compile" depends="init"> + <srccompile project="runtime" path="runtime.src.path"/> + </target> + + <target name="test:compile" depends="compile"> + <testcompile project="runtime" path="runtime.test.src.path"/> + </target> + + <target name="test" depends="test:compile"> + <testrun project="runtime" path="runtime.test.src.path" suite="RuntimeModuleTests"/> + </target> + + <target name="all" depends="init, compile, test:compile"/> + + <target name="jar" depends="compile"> + <delete file="${build.ajdir}/jars/aspectjrt.jar"/> + <copy file="runtime.mf.txt" todir="${build.ajdir}/temp" filtering="yes"/> + <jar destfile="${build.ajdir}/jars/aspectjrt.jar" manifest="${build.ajdir}/temp/runtime.mf.txt"> + <fileset dir="bin"> + <include name="**/*"/> + </fileset> + </jar> + </target> + +</project> + |