From: Pavel V. <va...@us...> - 2002-01-31 22:58:55
|
Update of /cvsroot/javaprofiler/jpiimpl In directory usw-pr-cvs1:/tmp/cvs-serv13886 Modified Files: build.xml Log Message: doxygen added Index: build.xml =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** build.xml 2002/01/31 06:03:43 1.4 --- build.xml 2002/01/31 22:58:52 1.5 *************** *** 100,104 **** <javadoc Windowtitle="JPI and Implementation" defaultexcludes="yes" destdir="jpiimpl/docs/javadoc" group="JPI net.sourceforge.javaprofiler.jpi*,Implementation net.sourceforge.javaprofiler.jpiimpl*" ! private="on"> <doctitle>Java Profiling Interface and Implementation</doctitle> <package name="net.sourceforge.javaprofiler.jpiimpl.*"/> --- 100,104 ---- <javadoc Windowtitle="JPI and Implementation" defaultexcludes="yes" destdir="jpiimpl/docs/javadoc" group="JPI net.sourceforge.javaprofiler.jpi*,Implementation net.sourceforge.javaprofiler.jpiimpl*" ! private="on" failonerror="false"> <doctitle>Java Profiling Interface and Implementation</doctitle> <package name="net.sourceforge.javaprofiler.jpiimpl.*"/> *************** *** 124,133 **** <target depends="init" description="Doxygen documentation for my API." name="doxygen"> ! <mkdir dir="jpiimpl/docs/doxygen"/> ! <!-- <exec executable="doxygen" failonerro="no"> //+params for os ! <arg line=""/> ! <arg vaule=""/> ! <arg path=""/> ! </exec> --> </target> --- 124,135 ---- <target depends="init" description="Doxygen documentation for my API." name="doxygen"> ! <exec executable="doxygen" dir="jpiimpl/docs" failonerror="false"> ! <!-- <arg line=""/> ! <arg vaule=""/> <arg path=""> --> ! <arg file="jpiimpl/docs/doc_html.conf"/> ! </exec> ! <exec executable="doxygen" dir="jpiimpl/docs" failonerror="false"> ! <arg file="jpiimpl/docs/doc_latex.conf"/> ! </exec> </target> *************** *** 146,150 **** <delete file="jpiimpl/jpiimpl.jar"/> <delete dir="jpiimpl/docs/javadoc"/> ! <delete dir="jpiimpl/docs/doxygen"/> </target> --- 148,153 ---- <delete file="jpiimpl/jpiimpl.jar"/> <delete dir="jpiimpl/docs/javadoc"/> ! <delete dir="jpiimpl/docs/html"/> ! <delete dir="jpiimpl/docs/latex"/> </target> |