diff options
author | Dr. Clea F. Rees <cfrees@imapmail.org> | 2008-12-03 00:28:53 +0000 |
---|---|---|
committer | Dr. Clea F. Rees <cfrees@imapmail.org> | 2008-12-03 00:28:53 +0000 |
commit | 4f27dd85b17214cfe01fad1772840f3a3b9d88a1 (patch) | |
tree | b67a43b38cb544d442042a0bda3e2ed1c63db905 /Master/texmf-dist/doc/latex/disser/templates/candidate/nomake.cmd | |
parent | 9e9aecddd3e49a9bb616309887effea00fdbfdd6 (diff) |
disser 1.1.0
git-svn-id: svn://tug.org/texlive/trunk@11501 c570f23f-e606-0410-a88d-b1316a301751
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.cmd | 28 |
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 |