diff options
author | Karl Berry <karl@freefriends.org> | 2016-07-05 21:39:30 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-07-05 21:39:30 +0000 |
commit | eadac6a4b811db258d2b4d5dd4dec4fb0551ca4d (patch) | |
tree | 0ee9d092e8f52117148beabe162c1b0e6421da7a /Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile | |
parent | 5cf6f77f3a4d03a7ffcb78f2fef5f5172905534a (diff) |
disser (5jul16)
git-svn-id: svn://tug.org/texlive/trunk@41635 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile b/Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile new file mode 100644 index 00000000000..733d70078f5 --- /dev/null +++ b/Master/texmf-dist/doc/latex/disser/templates-utf8/Makefile @@ -0,0 +1,32 @@ +# +# Makefile for documents and templates +# Author: Stanislav Kruchinin <stanislav.kruchinin@gmail.com> +# + +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 specialist $@ + @$(MAKE) -i -C master $@ + @$(MAKE) -i -C candidate $@ + @$(MAKE) -i -C doctor $@ + +help: + @$(MAKE) -s -C candidate $@ ;\ + echo " install install templates" ;\ + echo " uninstall uninstall templates" ;\ + echo " reinstall reinstall templates" + +install: + cp -rf ../templates $(DOCDIR) ;\ + cp -rf ../templates-utf8 $(DOCDIR) ;\ + cp -rf ../include $(DOCDIR) + +uninstall: + -rm -rf $(DOCDIR) + +reinstall: uninstall install |