summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile b/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile
index cd39aa8987d..04887a49c6e 100644
--- a/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile
+++ b/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile
@@ -3,8 +3,9 @@
# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com>
#
-TARGET?=thesis
-
+TARGET ?= thesis
+BIBTEX ?= bibtex8
+BIBTEXFLAGS ?= -H -c cp1251
include ../../include/latex.mk
@@ -18,7 +19,12 @@ allpdf:
env TARGET=autoref $(MAKE) pdf ;\
eval unset TARGET
+alldvi
+ @env TARGET=thesis $(MAKE) dvi ;\
+ env TARGET=autoref $(MAKE) dvi ;\
+ eval unset TARGET
+
help: .help
- @echo " all build DVI of autoref and thesis" ;\
+ @echo " all build PDF of autoref and thesis" ;\
echo " allpdf build PDF of autoref and thesis" ;\
-
+ echo " alldvi build DVI of autoref and thesis" ;\