blob: 542e4e152590af88db730aacff9864d3b3b29175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
@echo off
set latexnmk=call ..\..\include\latex.nmk.cmd
if "%1"=="help" (
:help
%latexnmk% %1
echo all build DVI of autoref and thesis
echo allpdf build PDF of autoref and thesis
goto :eof
) else if "%1"=="all" (
:all
set target=thesis & %latexnmk% dvi
set target=autoref & %latexnmk% dvi
set target=
goto :eof
) else if "%1"=="allpdf" (
:allpdf
set target=thesis & %latexnmk% pdf
set target=autoref & %latexnmk% pdf
set target=
goto :eof
) else (
%latexnmk% %*
)
|