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/Makefile26
1 files changed, 16 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile b/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile
index cb0b531291c..e041e488ac6 100644
--- a/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile
+++ b/Master/texmf-dist/doc/latex/disser/templates/doctor/Makefile
@@ -1,18 +1,24 @@
+#
+# Makefile for documents and templates
+# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com>
+#
+
TARGET?=thesis
+
include ../../include/latex.mk
all:
- @env TARGET=thesis $(MAKE)
- @env TARGET=autoref $(MAKE)
- @eval unset TARGET
+ @env TARGET=thesis $(MAKE) dvi ;\
+ env TARGET=autoref $(MAKE) dvi ;\
+ eval unset TARGET
allpdf:
- @env TARGET=thesis $(MAKE) pdf
- @env TARGET=autoref $(MAKE) pdf
- @eval unset TARGET
+ @env TARGET=thesis $(MAKE) pdf ;\
+ env TARGET=autoref $(MAKE) pdf ;\
+ eval unset TARGET
+
+help: .help
+ @echo " all build DVI of autoref and thesis" ;\
+ echo " allpdf build PDF of autoref and thesis" ;\
-help:
- $(MAKE) -f ../../include/latex.mk help
- @echo " all build DVI of autoref and thesis"
- @echo " allpdf build PDF of autoref and thesis"