summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd')
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd28
1 files changed, 27 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd
index cf105a9e8ff..0cd35556702 100644
--- a/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd
+++ b/Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd
@@ -1 +1,27 @@
-@call ..\..\include\latex.nmk.cmd %* \ No newline at end of file
+@echo off
+
+if "%1"=="help" (
+:help
+ 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 & call ..\..\include\latex.nmk.cmd dvi
+ set target=autoref & call ..\..\include\latex.nmk.cmd dvi
+ set target=
+goto :eof
+) else if "%1"=="allpdf" (
+:allpdf
+ set target=thesis & call ..\..\include\latex.nmk.cmd pdf
+ set target=autoref & call ..\..\include\latex.nmk.cmd pdf
+ set target=
+goto :eof
+) else (
+ ..\..\include\latex.nmk.cmd %*
+ goto :eof
+)
+
+if "%1" neq "" echo Don't know how to make %1
+:end
+shift & goto :start