[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math / documents

Annotation of OpenXM/src/ox_math/documents/Makefile, Revision 1.2

1.2     ! ohara       1: # $OpenXM: OpenXM/src/ox_math/documents/Makefile,v 1.1 2000/01/20 07:47:30 ohara Exp $
        !             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 = ../../..
                      8: LATEX = latex
1.2     ! ohara       9: PLATEX = platex
        !            10: DOCUMENTS = math2ox.tex math2ox.dvi ox_math.tex ox_math.dvi readme.jp samplelog-sm1.txt
1.1       ohara      11:
1.2     ! ohara      12: all: ${DOCUMENTS}
1.1       ohara      13:
1.2     ! ohara      14: math2ox.dvi: math2ox.tex
        !            15:        ${LATEX} math2ox.tex
        !            16:        ${LATEX} math2ox.tex
1.1       ohara      17:
1.2     ! ohara      18: ox_math.dvi: ox_math.tex
        !            19:        ${PLATEX} ox_math.tex
        !            20:        ${PLATEX} ox_math.tex
1.1       ohara      21:
                     22: install: install-document install-binary
                     23:
                     24: install-binary:
                     25:        @echo "No bainaries are installed."
                     26:
                     27: install-for-debug:
                     28:        @echo "No bainaries are installed."
                     29:
                     30: install-document: ${DOCUMENTS}
                     31:        -mkdir ${OpenXM_HOME}/doc/ox_math
                     32:        cp -f ${DOCUMENTS} ${OpenXM_HOME}/doc/ox_math/
                     33:
                     34: clean:
                     35:        -rm -f *~ *.log *.aux *.dvi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>