diff options
Diffstat (limited to 'Master/texmf-dist/doc/ptex/ptex-base/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/ptex/ptex-base/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/ptex/ptex-base/Makefile b/Master/texmf-dist/doc/ptex/ptex-base/Makefile new file mode 100644 index 00000000000..e54c586f0b4 --- /dev/null +++ b/Master/texmf-dist/doc/ptex/ptex-base/Makefile @@ -0,0 +1,26 @@ +KANJI = -kanji=jis +FONTMAP = -f ipaex.map -f ptex-ipaex.map + +all: jfm.pdf jtex.pdf jtexdoc.pdf ptexdoc.pdf ptexskip.pdf \ + eptexdoc.pdf #eptex_resume.pdf + +eptexdoc.pdf: eptexdoc.tex + platex $(KANJI) eptexdoc.tex + platex $(KANJI) eptexdoc.tex + mendex -J eptexdoc.idx + platex $(KANJI) eptexdoc.tex + platex $(KANJI) eptexdoc.tex + dvipdfmx $(FONTMAP) eptexdoc.dvi + rm *.aux *.log *.toc *.idx *.ind *.ilg *.out eptexdoc.dvi + +.SUFFIXES: .tex .dvi .pdf +.tex.dvi: + platex $(KANJI) $< + platex $(KANJI) $< + rm *.aux *.log +.dvi.pdf: + dvipdfmx $(FONTMAP) $< + +.PHONY: clean +clean: + rm -f *.dvi *.pdf |