dleslie     00/12/08 11:17:24

  Modified:    c        build.xml
  Log:
  For building doc and apidocs.
  
  Revision  Changes    Path
  1.2       +4 -3      xml-xalan/c/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 2000/12/08 19:03:59     1.1
  +++ build.xml 2000/12/08 19:17:23     1.2
  @@ -14,7 +14,7 @@
   
     <property name="build.docs" value="${build.dir}/docs"/>
     <property name="build.apidocs" value="${build.docs}/apidocs"/>  
  -  <property name="build.site" value="${build.dir}/site"/>
  +  <property name="site.dir" value="./site"/>
   
     <target name="prepare">
       <gunzip src="${doc.generator.styletargz}"/>
  @@ -32,7 +32,7 @@
     </target>
   
     <target name="apidocs" depends="prepare">
  -    <!--copy todir="${build.apidocs}">
  +    <copy todir="${build.apidocs}">
         <fileset dir="${xdocs.apidocs}"/>
       </copy-->
       <exec executable="doxygen.exe" dir="${xdocs.dir}">
  @@ -42,7 +42,7 @@
       
     <target name="site" depends="prepare">
       <java fork="yes" classname="${doc.generator}" 
classpath="${java.class.path}">
  -      <arg line="targetDirectory=${build.site} ${xdocs.site} 
${xdocs.style}"/>    
  +      <arg line="targetDirectory=${site.dir} ${xdocs.site} ${xdocs.style}"/> 
   
       </java>
       <copy todir="${site.dir}/apidocs">
         <fileset dir="${build.apidocs}"/>
  @@ -52,6 +52,7 @@
     
     <target name="clean">
       <delete dir="${build.dir}"/>
  +    <delete dir="${site.dir}"/>
     </target>   
       
   </project>
  
  
  

Reply via email to