summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd')
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd12
1 files changed, 5 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd
index 39e5d90404a..07630d2e16a 100644
--- a/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd
+++ b/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd
@@ -1,17 +1,15 @@
@echo off
+set latexnmk=call ..\..\include\latex.nmk.cmd
+
if "%1"=="all" (
:all
- ..\..\include\latex.nmk.cmd dvi
+ %latexnmk% dvi
goto :eof
) else if "%1"=="allpdf" (
:allpdf
- ..\..\include\latex.nmk.cmd pdf
+ %latexnmk% pdf
goto :eof
) else (
- ..\..\include\latex.nmk.cmd %*
+ %latexnmk% %*
)
-
-if "%1" neq "" echo Don't know how to make %1
-:end
-shift & goto :start