File: compileFinalVersion.bat

package info (click to toggle)
cloudcompare 2.11.3-7.1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 58,224 kB
  • sloc: cpp: 229,982; ansic: 30,723; makefile: 84; sh: 20
file content (17 lines) | stat: -rw-r--r-- 422 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@echo off
if not exist pdf mkdir pdf
rm pdf/*.pdf
@echo on
pdflatex Documentation.tex -output-directory=pdf
@echo off
@if not exist pdf/Documentation.pdf goto failure
if exist pdf/Documentation.idx makeindex -s IndexStyle.ist pdf/Documentation.idx
pdflatex Documentation.tex -output-directory=pdf
@if not exist pdf/Documentation.pdf goto failure
goto end
:failure
@echo on
@echo generation has failed
@echo off
pause
:end