[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-contrib / packages / doc / top

Annotation of OpenXM/src/asir-contrib/packages/doc/top/Makefile, Revision 1.7

1.7     ! ohara       1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/top/Makefile,v 1.6 2007/09/29 07:29:31 takayama Exp $
1.4       takayama    2:
                      3: # Name of this document.
                      4: MYNAME=cman
1.1       takayama    5:
                      6: SRC = base.oxw calculus.oxw complex.oxw \
                      7:       glib.oxw graphic.oxw hypergeometric.oxw \
                      8:       intro.oxw matrix.oxw misc.oxw names.oxw \
                      9:       number.oxw oxrfc100.oxw \
                     10:       poly.oxw print.oxw series.oxw \
1.5       takayama   11:       util.oxw windows.oxw oxshell.oxw load.oxw
1.1       takayama   12:
1.7     ! ohara      13: ENSRCS = ${SRC:.oxw=.en}
        !            14: JASRCS = ${SRC:.oxw=.ja}
1.1       takayama   15: ENAUTO=  base-auto.en glib-auto.en matrix-auto.en number-auto.en \
                     16:          poly-auto.en print-auto.en util-auto.en \
                     17:          oxshell-auto.en
                     18: JAAUTO=${ENAUTO:.en=.ja}
                     19:
1.6       takayama   20: include ../M/Makefile
1.7     ! ohara      21:
1.4       takayama   22: clean_private:
1.1       takayama   23: ### base
1.7     ! ohara      24:
        !            25: ${MYNAME}.en ${MYNAME}.ja:
        !            26:
        !            27: ${MYNAME}-en.texi: ${ENAUTO} ${ENSRCS}
        !            28: ${MYNAME}-ja.texi: ${JAAUTO} ${JASRCS}
        !            29:
        !            30: base-auto.en: ${CONTRIB}/names.rr
        !            31:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            32:        | ${OXGENTEXI} --category base --en --upnode "Basic (Standard Functions)" ${OPTGENTEXI} > $@
        !            33:
        !            34: base-auto.ja: ${CONTRIB}/names.rr
        !            35:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            36:        | ${OXGENTEXI} --category base --ja --upnode "Basic (Standard Functions)" ${OPTGENTEXI} > $@
1.1       takayama   37:
                     38: ### number
1.7     ! ohara      39: number-auto.en: ${CONTRIB}/names.rr
        !            40:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            41:        | ${OXGENTEXI}  --category number --en --upnode "Numbers (Standard Mathematical Functions)" ${OPTGENTEXI} > $@
        !            42: number-auto.ja: ${CONTRIB}/names.rr
        !            43:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            44:        | ${OXGENTEXI}   --category number  --ja --upnode "Numbers (Standard Mathematical Functions)" ${OPTGENTEXI} > $@
1.1       takayama   45:
                     46: ### matrix
1.7     ! ohara      47: matrix-auto.en: ${CONTRIB}/names.rr
        !            48:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            49:        | ${OXGENTEXI} --category matrix --en --upnode "Matrix (Standard Mathematical Functions)" ${OPTGENTEXI} > $@
        !            50:
        !            51: matrix-auto.ja: ${CONTRIB}/names.rr
        !            52:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            53:        | ${OXGENTEXI} --category matrix --ja --upnode "Matrix (Standard Mathematical Functions)" ${OPTGENTEXI} > $@
1.1       takayama   54:
                     55: ### print
1.7     ! ohara      56: print-auto.en: ${CONTRIB}/names.rr
        !            57:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            58:        | ${OXGENTEXI} --category print --en --upnode "Print (Standard Mathematical Functions)" ${OPTGENTEXI} > $@
        !            59:
        !            60: print-auto.ja: ${CONTRIB}/names.rr
        !            61:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            62:        | ${OXGENTEXI} --category print --ja --upnode "Print (Standard Mathematical Functions)" ${OPTGENTEXI} > $@
1.1       takayama   63:
                     64: ### poly
1.7     ! ohara      65: poly-auto.en: ${CONTRIB}/names.rr
        !            66:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            67:        | ${OXGENTEXI} --category poly --en --upnode "Polynomials (Standard Mathematical Functions)" ${OPTGENTEXI} >poly-auto.en
        !            68:
        !            69: poly-auto.ja: ${CONTRIB}/names.rr
        !            70:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            71:        | ${OXGENTEXI} --category poly --ja --upnode "Polynomials (Standard Mathematical Functions)" ${OPTGENTEXI} > $@
1.1       takayama   72:
                     73: ### glib
1.7     ! ohara      74: glib-auto.en: ${ASIRLIB}/glib
        !            75:        cat ${ASIRLIB}/glib | ${OXWEAVE} usage \
        !            76:        | ${OXGENTEXI}  --category glib --en --upnode "Graphic Library (2 dimensional)" ${OPTGENTEXI} > $@
        !            77:
        !            78: glib-auto.ja: ${ASIRLIB}/glib
        !            79:        cat ${ASIRLIB}/glib | ${OXWEAVE} usage \
        !            80:        | ${OXGENTEXI}   --category glib  --ja --upnode "Graphic Library (2 dimensional)" ${OPTGENTEXI} > $@
1.1       takayama   81:
                     82: ### util
1.7     ! ohara      83: util-auto.en: ${CONTRIB}/names.rr
        !            84:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            85:        | ${OXGENTEXI}  --category util --en --upnode "Utility Functions" ${OPTGENTEXI} > $@
        !            86:
        !            87: util-auto.ja: ${CONTRIB}/names.rr
        !            88:        cat ${CONTRIB}/names.rr | ${OXWEAVE} usage \
        !            89:        | ${OXGENTEXI}   --category util  --ja --upnode "Utility Functions" ${OPTGENTEXI} > $@
1.1       takayama   90: ### oxshell
1.7     ! ohara      91:
        !            92: oxshell-auto.en: ${CONTRIB}/oxshell.rr
        !            93:        cat ${CONTRIB}/oxshell.rr | ${OXWEAVE} usage \
        !            94:        | ${OXGENTEXI}  --category oxshell --en --upnode "Oxshell Functions" ${OPTGENTEXI} > $@
        !            95:
        !            96: oxshell-auto.ja: ${CONTRIB}/oxshell.rr
        !            97:        cat ${CONTRIB}/oxshell.rr | ${OXWEAVE} usage \
        !            98:        | ${OXGENTEXI}   --category oxshell  --ja --upnode "Oxshell Functions" ${OPTGENTEXI} > $@
1.1       takayama   99:

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