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.cmd18
1 files changed, 17 insertions, 1 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 cf105a9e8ff..39e5d90404a 100644
--- a/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd
+++ b/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd
@@ -1 +1,17 @@
-@call ..\..\include\latex.nmk.cmd %* \ No newline at end of file
+@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