blob: e54c586f0b499c7b4a373a64c021b3c5c3cbee6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|