You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

makedoc.bat 951B

1234567891011121314151617181920212223242526272829
  1. @echo off
  2. REM creates pdf and html documentation
  3. echo Building Fop documentation (pdf,html)
  4. echo ----------------
  5. if "%JAVA_HOME%" == "" goto error
  6. set LIBDIR=..\..\lib
  7. set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib\classes.zip;%LIBDIR%\ant.jar;%LIBDIR%\w3c.jar;%LIBDIR%\buildtools.jar;%LIBDIR%\xerces-1.2.3.jar;%LIBDIR%\xalan-1.2.2.jar;%LIBDIR%\bsf.jar;%LIBDIR%\jimi-1.0.jar;%LIBDIR%\stylebook.jar;%LIBDIR%\..\build\fop.jar
  8. set ANT_HOME=%LIBDIR%
  9. %JAVA_HOME%\bin\java.exe -Dant.home=%ANT_HOME% -classpath %LOCALCLASSPATH%;%CLASSPATH% org.apache.tools.ant.Main %1 %2 %3 %4 %5
  10. %JAVA_HOME%\bin\java.exe -classpath %LOCALCLASSPATH%;%CLASSPATH% org.apache.stylebook.StyleBook "targetDirectory=../html-docs/" fop.xml style/
  11. goto end
  12. :error
  13. echo ERROR: JAVA_HOME not found in your environment.
  14. echo Please, set the JAVA_HOME variable in your environment to match the
  15. echo location of the Java Virtual Machine you want to use.
  16. :end