summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/bachelor/nomake.cmd
blob: 07630d2e16a12ab54f9ea20d2cdf4335390b476c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off

set latexnmk=call ..\..\include\latex.nmk.cmd

if "%1"=="all" (
:all
	%latexnmk% dvi
goto :eof
) else if "%1"=="allpdf" (
:allpdf
	%latexnmk% pdf
goto :eof
) else (
	%latexnmk% %*
)