summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2003-09-04 17:18:51 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2003-09-04 17:18:51 +0000
commit8443351108b18b5dd7f3ae49befe810172866ff0 (patch)
tree9bbe6799acd9a19b635dc2035351a169aa825601 /build.xml
parent2992b5313bc4eef0fe1b5838620456f9df927eae (diff)
downloadjavassist-8443351108b18b5dd7f3ae49befe810172866ff0.tar.gz
javassist-8443351108b18b5dd7f3ae49befe810172866ff0.zip
updated documents.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@43 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 346909ac..92a35e17 100644
--- a/build.xml
+++ b/build.xml
@@ -42,6 +42,24 @@
</javac>
</target>
+ <target name="sample" depends="compile">
+ <javac srcdir="${basedir}"
+ destdir="${build.classes.dir}"
+ debug="on"
+ deprecation="on"
+ optimize="off"
+ includes="sample/**">
+ <classpath refid="classpath"/>
+ </javac>
+ <copy file="sample/vector/Test.j"
+ todir="${build.classes.dir}/sample/vector"/>
+ <copy todir="${build.classes.dir}/sample/evolve">
+ <fileset dir="sample/evolve"/>
+ </copy>
+ <echo>To run the sample programs, change the current directory
+to ${build.classes.dir}.</echo>
+ </target>
+
<target name="jar" depends="compile">
<jar jarfile="javassist.jar">
<fileset dir="${build.classes.dir}">