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

if "%1"=="all" (
:all
	..\..\include\latex.nmk.cmd dvi
goto :eof
) else if "%1"=="allpdf" (
:allpdf
	..\..\include\latex.nmk.cmd pdf
goto :eof
) else (
	..\..\include\latex.nmk.cmd %*
)

if "%1" neq "" echo Don't know how to make %1
:end
shift & goto :start