diff options
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.cmd | 10 |
1 files changed, 7 insertions, 3 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 d3bc974cf93..dbadd220a2b 100644 --- a/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd +++ b/Master/texmf-dist/doc/latex/disser/templates/master/nomake.cmd @@ -3,6 +3,8 @@ rem Makefile for documents and templates rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +set bibtex=bibtex8 +set bibtexflags=-H -c cp1251 set latexnmk=call ..\..\include\latex.nmk.cmd if "%1"=="" ( @@ -11,9 +13,11 @@ if "%1"=="" ( for %%f in (%*) do if "%%f"=="help" ( call :%%f ) else if "%%f"=="all" ( - %latexnmk% dvi + %latexnmk% pdf ) else if "%%f"=="allpdf" ( %latexnmk% pdf + ) else if "%%f"=="alldvi" ( + %latexnmk% dvi ) else ( %latexnmk% %%f ) @@ -22,8 +26,8 @@ if "%1"=="" ( exit /b :help - echo all alias for dvi target + echo all alias for pdf target echo allpdf alias for pdf target + echo alldvi alias for dvi target %latexnmk% help goto :eof - |