kstaken 02/03/21 22:27:48
Modified: . build.xml Log: Adding basic scratchpad build. ant scratchpad Revision Changes Path 1.12 +19 -1 xml-xindice/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/xml-xindice/build.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- build.xml 14 Mar 2002 21:28:19 -0000 1.11 +++ build.xml 22 Mar 2002 06:27:48 -0000 1.12 @@ -14,7 +14,7 @@ cd xml-xindice ; bin/ant - $Id: build.xml,v 1.11 2002/03/14 21:28:19 kstaken Exp $ + $Id: build.xml,v 1.12 2002/03/22 06:27:48 kstaken Exp $ --> @@ -28,6 +28,7 @@ <property name="root.dir" value="./java"/> <property name="jar.dir" value="${root.dir}/lib"/> <property name="src.dir" value="${root.dir}/src"/> + <property name="scratchpad.src.dir" value="${root.dir}/scratchpad/src"/> <property name="build.dir" value="${root.dir}/classes"/> <property name="examples.dir" value="${root.dir}/examples"/> @@ -113,6 +114,23 @@ <target name="src" depends="prepare, idl"> <echo message="Compiling Source"/> <javac srcdir="${src.dir}" + destdir="${build.dir}" + classpathref="project.class.path" + debug="${compile.debug}" + optimize="${compile.optimize}" + nowarn="${compile.nowarn}" + deprecation="${compile.deprecation}" + verbose="${compile.verbose}" + /> + </target> + + + <target name="scratchpad" depends="prepare, clean-jar, idl, src, scratchpad-src, bin-jar"> + </target> + + <target name="scratchpad-src" depends="prepare, idl, src"> + <echo message="Compiling Scratchpad Source"/> + <javac srcdir="${scratchpad.src.dir}" destdir="${build.dir}" classpathref="project.class.path" debug="${compile.debug}"