Annotation of OpenXM/src/ox_math/documents/Makefile, Revision 1.4
1.4 ! ohara 1: # $OpenXM: OpenXM/src/ox_math/documents/Makefile,v 1.3 2000/01/21 10:56:56 ohara Exp $
1.2 ohara 2:
3: ## platex is a localized tex compiler for Japanese language.
4: ## ox_math.tex is written in Japanese by the EUC-JP coded character set.
5: ## Therefore, we need platex, which supports the EUC-JP, to compile it.
1.1 ohara 6:
7: OpenXM_HOME = ../../..
1.3 ohara 8: OXWEAVE = ${OpenXM_HOME}/bin/oxweave
1.1 ohara 9: LATEX = latex
1.2 ohara 10: PLATEX = platex
1.3 ohara 11: DOCUMENTS = math2ox.tex math2ox.dvi ox_math.tex ox_math.dvi readme-jp readme-eg samplelog-sm1.txt
1.1 ohara 12:
1.2 ohara 13: all: ${DOCUMENTS}
1.1 ohara 14:
1.2 ohara 15: math2ox.dvi: math2ox.tex
16: ${LATEX} math2ox.tex
17: ${LATEX} math2ox.tex
1.1 ohara 18:
1.2 ohara 19: ox_math.dvi: ox_math.tex
20: ${PLATEX} ox_math.tex
21: ${PLATEX} ox_math.tex
1.1 ohara 22:
1.3 ohara 23: readme-jp: readme.oxweave
24: ${OXWEAVE} ja < readme.oxweave > readme-jp
25:
26: readme-eg: readme.oxweave
27: ${OXWEAVE} en < readme.oxweave > readme-eg
28:
29:
1.1 ohara 30: install: install-document install-binary
31:
32: install-binary:
33: @echo "No bainaries are installed."
34:
35: install-for-debug:
36: @echo "No bainaries are installed."
37:
38: install-document: ${DOCUMENTS}
39: -mkdir ${OpenXM_HOME}/doc/ox_math
40: cp -f ${DOCUMENTS} ${OpenXM_HOME}/doc/ox_math/
41:
42: clean:
1.4 ! ohara 43: -rm -f *~ *.log *.aux *.dvi readme-jp readme-eg math2ox.?? *.fns *.toc
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>