summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/eskdx/manual/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/eskdx/manual/Makefile')
-rw-r--r--Master/texmf-dist/doc/latex/eskdx/manual/Makefile19
1 files changed, 17 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/latex/eskdx/manual/Makefile b/Master/texmf-dist/doc/latex/eskdx/manual/Makefile
index 8183ab40f21..327effcd57c 100644
--- a/Master/texmf-dist/doc/latex/eskdx/manual/Makefile
+++ b/Master/texmf-dist/doc/latex/eskdx/manual/Makefile
@@ -6,6 +6,10 @@ DIST_FILES = \
eskdx.pdf \
eskdx.tex.in \
example.tex \
+ img-form1.svg \
+ img-form2.svg \
+ img-form2a.svg \
+ img-title.svg \
Makefile
include $(TOP_DIR)/include.mak
@@ -15,7 +19,8 @@ all: eskdx.pdf
eskdx.tex: eskdx.tex.in $(M4DEPS)
m4 $(M4FLAGS) $< >$@
-eskdx.pdf: example.tex
+eskdx.pdf: example.tex \
+ img-title.pdf img-form1.pdf img-form2.pdf img-form2a.pdf
html.tex: eskdx.tex.in $(M4DEPS)
m4 $(M4FLAGS) -Dm4_HTML $< >$@
@@ -23,12 +28,22 @@ html.tex: eskdx.tex.in $(M4DEPS)
html.aux: html.tex
latex $<
-html: html.tex html.aux example.tex
+html: html.tex html.aux example.tex \
+ img-title.eps img-form1.eps img-form2.eps img-form2a.eps
latex2html -init_file latex2html-init -iso_language RU $<
+%.eps: %.svg
+ inkscape --without-gui --export-text-to-path \
+ --export-eps=$@ $<
+
+%.pdf: %.svg
+ inkscape --without-gui --export-text-to-path \
+ --export-pdf=$@ $<
+
clean:
rm -f {eskdx,html}.{aux,out,log,toc}
rm -f html.{tex,dvi} WARNINGS
rm -rf html
+ rm -f img-{form1,form2,form2a,title}.{eps,pdf}
.PHONY: html