summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-11-21 23:53:45 +0000
committerKarl Berry <karl@freefriends.org>2010-11-21 23:53:45 +0000
commit1a9e525f4cfeebc43345769293278fc86d237e0b (patch)
tree21467486865d88e8c2516ca68e54347ccbbf22d6 /Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd
parent67db10d00fe1667acb186aa61d485eecd5a8d828 (diff)
disser 1.1.7 (22nov10)
git-svn-id: svn://tug.org/texlive/trunk@20522 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd')
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd29
1 files changed, 29 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd b/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd
new file mode 100644
index 00000000000..d3bc974cf93
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/disser/templates/specialist/nomake.cmd
@@ -0,0 +1,29 @@
+@echo off
+
+rem Makefile for documents and templates
+rem Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com>
+
+set latexnmk=call ..\..\include\latex.nmk.cmd
+
+if "%1"=="" (
+ %latexnmk%
+) else (
+ for %%f in (%*) do if "%%f"=="help" (
+ call :%%f
+ ) else if "%%f"=="all" (
+ %latexnmk% dvi
+ ) else if "%%f"=="allpdf" (
+ %latexnmk% pdf
+ ) else (
+ %latexnmk% %%f
+ )
+)
+
+exit /b
+
+:help
+ echo all alias for dvi target
+ echo allpdf alias for pdf target
+ %latexnmk% help
+goto :eof
+