summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/disser/templates/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser/templates/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/disser/templates/Makefile30
1 files changed, 18 insertions, 12 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/templates/Makefile b/Master/texmf-dist/doc/latex/disser/templates/Makefile
index 37488ee350c..2f7c7d55226 100644
--- a/Master/texmf-dist/doc/latex/disser/templates/Makefile
+++ b/Master/texmf-dist/doc/latex/disser/templates/Makefile
@@ -1,26 +1,32 @@
-TARGET=thesis
-TEXMF?=/usr/share/texmf
-DOCDIR?=$(TEXMF)/doc/latex/disser
+#
+# Makefile for documents and templates
+# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com>
+#
-dvi ps ps_2on1 pdf pdf_2on1 html clean epstopdf fixbb srcdist all allpdf:
+TARGET ?= thesis
+TEXMF ?= /usr/share/texmf
+DESTDIR ?= $(TEXMF)
+DOCDIR ?= $(DESTDIR)/doc/latex/disser
+
+dvi clean figclean bmtoeps epstopdf fixbb pdftopng256 pdftotiffg4 ps ps_2on1 pdf pdf_2on1 html srcdist all allpdf:
@$(MAKE) -i -C bachelor $@
@$(MAKE) -i -C master $@
@$(MAKE) -i -C candidate $@
@$(MAKE) -i -C doctor $@
help:
- @$(MAKE) -s -C bachelor $@
- @echo " install install templates to TeX tree"
- @echo " uninstall uninstall templates"
- @echo " reinstall reinstall templates"
+ @$(MAKE) -s -C candidate $@ ;\
+ echo " install install templates" ;\
+ echo " uninstall uninstall templates" ;\
+ echo " reinstall reinstall templates"
install:
- cp -rf ../templates $(DOCDIR)
+ cp -rf ../templates $(DOCDIR) ;\
cp -rf ../include $(DOCDIR)
uninstall:
- rm -rf $(DOCDIR)/templates
- rm -rf $(DOCDIR)/include
- rmdir $(DOCDIR)
+ -rm -rf $(DOCDIR)/templates
+ -rm -rf $(DOCDIR)/include
+ -rmdir $(DOCDIR)
reinstall: uninstall install