build-all.bat 822 B

1234567891011121314151617181920212223242526272829303132333435
  1. rem Copyright (C) 2014-2017 by Thomas Auzinger <thomas@auzinger.name>
  2. @echo off
  3. set CLASS=vutinfth
  4. set SOURCE=example
  5. @echo on
  6. rem Build vutinfth documentation
  7. pdflatex %CLASS%.dtx
  8. pdflatex %CLASS%.dtx
  9. makeindex -s gglo.ist -o %CLASS%.gls %CLASS%.glo
  10. makeindex -s gind.ist -o %CLASS%.ind %CLASS%.idx
  11. pdflatex %CLASS%.dtx
  12. pdflatex %CLASS%.dtx
  13. rem Build the vutinfth class file
  14. pdflatex %CLASS%.ins
  15. rem Build the vutinfth example document
  16. pdflatex %SOURCE%
  17. bibtex %SOURCE%
  18. pdflatex %SOURCE%
  19. pdflatex %SOURCE%
  20. makeindex -t %SOURCE%.glg -s %SOURCE%.ist -o %SOURCE%.gls %SOURCE%.glo
  21. makeindex -t %SOURCE%.alg -s %SOURCE%.ist -o %SOURCE%.acr %SOURCE%.acn
  22. makeindex -t %SOURCE%.ilg -o %SOURCE%.ind %SOURCE%.idx
  23. pdflatex %SOURCE%
  24. pdflatex %SOURCE%
  25. @echo off
  26. echo.
  27. echo.
  28. echo Class file and example document compiled.
  29. pause