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

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

1.37    ! noro        1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile,v 1.36 2002/08/23 00:09:13 takayama Exp $
1.5       takayama    2: # targets
                      3: # all :
1.29      takayama    4: #     Extracts all tex-info files from ../src/* and generate *.texi files.
1.6       takayama    5: # install : install-document install-help
                      6: # install-help : all
1.5       takayama    7: #        Installing online help to OpenXM/lib/asir/help-*
1.36      takayama    8: # install-document :  all  gen-dvi-ps
                      9: #        Copy the documents in dvi and ps to OpenXM/doc/asir-contrib
1.15      takayama   10: # install-html-help
                     11: #        Copy html help to OpenXM/doc/asir-contrib
1.29      takayama   12: # gen-html-en  gen-html-ja
                     13: #        Generate HTML documents under html-en and html-ja
1.36      takayama   14: # gen-dvi-ps
                     15: #        Generate dvi and ps files.
1.15      takayama   16: #
1.6       takayama   17: # NOTE: install-help should be executed after installing asir2000.
1.29      takayama   18: ########################################################################
                     19: #  How to add new documents in the category xxx
                     20: # "xxx*.texi <--- xxx.oxweave (manually written) + xxx*auto*.texi (automatic)"
                     21: #   (1) "xxx.oxweave" --> xxx-en.texi and xxx-ja.texi
                     22: #       xxx-auto-en.texi and xxx-auto-ja.texi should be included from
                     23: #       xxx-en.texi and xxx-ja.texi  (JPSRCS, EGSRCS)
                     24: #     NOTE: xxx.oxweave might be embedded in xxx.rr or xxx,
                     25: #           but this style is obsolete.
                     26: #   (2) "xxx.rr" or "xxx" --> xxx-auto-en.texi and xxx-auto-ja.texi
                     27: #       (JAAUTO, ENAUTO)
                     28: #       xxx-auto*.texi's are extracted from xxx or xxx.rr
                     29: #   (3) xxx-en.texi and xxx-ja.texi should be included from cman.texi
1.33      takayama   30: #     and cman-en.texi
1.29      takayama   31: #  cf.  glib*  base*
                     32: ########################################################################
1.5       takayama   33: OpenXM_ROOT=../../../../../OpenXM
                     34: ASIRDOC=$(OpenXM_ROOT)/src/asir-doc
                     35: ASIRLIB=$(OpenXM_ROOT)/../OpenXM_contrib2/asir2000/lib
                     36: CONTRIB=$(OpenXM_ROOT)/src/asir-contrib/packages/src
1.23      takayama   37: OPTGENTEXI= --include
                     38: #OPTGENTEXI= --include --example
1.6       takayama   39: ## PS documents are installed under $(OpenXM_doc)/asir-contrib
1.5       takayama   40: OpenXM_doc=$(OpenXM_ROOT)/doc
                     41: DVIPS=dvips -f
1.9       noro       42: OXWEAVE= ../../../kxx/oxweave
1.15      takayama   43: TEXI2HTML=texi2html -menu -split_node
1.5       takayama   44:
1.34      takayama   45: JPSRCS= oxxm-ja.texi oxmath-ja.texi oxphc-ja.texi oxgnuplot-ja.texi oxsm1-ja.texi oxom-ja.texi dsolv-ja.texi longname-ja.texi oxtigers-ja.texi names-ja.texi hypergeometric-ja.texi number-ja.texi calculus-ja.texi series-ja.texi matrix-ja.texi  graphic-ja.texi print-ja.texi poly-ja.texi complex-ja.texi intro-ja.texi Diff-ja.texi Dmodule-ja.texi Matrix-ja.texi base-ja.texi misc-ja.texi glib-ja.texi pfp-ja.texi plucker-ja.texi windows-ja.texi
                     46: EGSRCS= oxxm-en.texi oxmath-en.texi oxphc-en.texi oxgnuplot-en.texi oxsm1-en.texi oxom-en.texi dsolv-en.texi longname-en.texi oxtigers-en.texi names-en.texi hypergeometric-en.texi number-en.texi calculus-en.texi series-en.texi matrix-en.texi  graphic-en.texi print-en.texi poly-en.texi complex-en.texi intro-en.texi cman-en.texi base-en.texi misc-en.texi glib-en.texi pfp-en.texi plucker-en.texi windows-en.texi
1.6       takayama   47:
1.27      takayama   48: JAAUTO=base-auto-ja.texi pfp-auto-ja.texi poly-auto-ja.texi \
1.32      takayama   49:        print-auto-ja.texi matrix-auto-ja.texi glib-auto-ja.texi \
                     50:           sm1-auto-ja.texi plucker-auto-ja.texi
1.27      takayama   51: ENAUTO=base-auto-en.texi pfp-auto-en.texi poly-auto-en.texi \
1.32      takayama   52:        print-auto-en.texi matrix-auto-en.texi glib-auto-en.texi \
                     53:           sm1-auto-en.texi plucker-auto-en.texi
1.23      takayama   54:
                     55: all : gentexi $(JPSRCS) $(EGSRCS) $(JAAUTO) $(ENAUTO)
1.33      takayama   56:        @echo "Type in  tex cman-en.texi to generate the manual(en) in dvi format."
                     57:        @echo "Type in  ptex cman-ja.texi   to generate the manual(ja) in dvi format."
1.28      takayama   58: install :
                     59:        @if [ ! -f ./.done_install ] ; \
                     60:        then \
                     61:                make install2 ; \
                     62:                touch ./.done_install ; \
                     63:        else \
                     64:                echo "NOTE: Installation is already done. Remove .done_install for a new installation." ; \
                     65:        fi
                     66:
                     67: install2 : install-document install-help install-html-help
1.1       takayama   68:
1.22      takayama   69: gentexi : gentexi.c
                     70:        gcc -o gentexi gentexi.c
                     71:
1.32      takayama   72: ###base
1.21      takayama   73: base-ja.texi : base.oxweave
                     74:        /bin/rm -f base-ja.texi
                     75:        $(OXWEAVE) C ja  <base.oxweave >base-ja.texi
                     76: base-en.texi : base.oxweave
                     77:        /bin/rm -f base-en.texi
                     78:        $(OXWEAVE) C en  <base.oxweave >base-en.texi
1.32      takayama   79: base-auto-en.texi : $(CONTRIB)/names.rr gentexi
                     80:        rm -f base-auto-en.texi
1.37    ! noro       81:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category base --en --upnode "Basic (Standard Functions)" ${OPTGENTEXI} >base-auto-en.texi
1.32      takayama   82: base-auto-ja.texi : $(CONTRIB)/names.rr gentexi
                     83:        rm -f base-auto-ja.texi
                     84:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category base --ja --upnode Top ${OPTGENTEXI} >base-auto-ja.texi
                     85:
1.21      takayama   86:
1.15      takayama   87: names-ja.texi : names.oxweave
                     88:        /bin/rm -f names-ja.texi
                     89:        $(OXWEAVE) C ja  <names.oxweave >names-ja.texi
                     90:
                     91: names-en.texi : names.oxweave
                     92:        /bin/rm -f names-en.texi
1.16      takayama   93:        $(OXWEAVE) C en  <names.oxweave >names-en.texi
1.15      takayama   94:
1.32      takayama   95: ###plucker
1.20      takayama   96: plucker-ja.texi : plucker.oxweave
                     97:        /bin/rm -f plucker-ja.texi
                     98:        $(OXWEAVE) C ja  <plucker.oxweave >plucker-ja.texi
                     99: plucker-en.texi : plucker.oxweave
                    100:        /bin/rm -f plucker-en.texi
                    101:        $(OXWEAVE) C en  <plucker.oxweave >plucker-en.texi
1.32      takayama  102: plucker-auto-en.texi : $(CONTRIB)/plucker.rr gentexi
                    103:        rm -f plucker-auto-en.texi
1.37    ! noro      104:        $(OXWEAVE) usage  <$(CONTRIB)/plucker.rr | ./gentexi --category plucker --en --upnode "Plucker relations" ${OPTGENTEXI} >plucker-auto-en.texi
1.32      takayama  105: plucker-auto-ja.texi : $(CONTRIB)/plucker.rr gentexi
                    106:        rm -f plucker-auto-ja.texi
                    107:        $(OXWEAVE) usage  <$(CONTRIB)/plucker.rr | ./gentexi --category plucker --ja --upnode Top ${OPTGENTEXI} >plucker-auto-ja.texi
1.20      takayama  108:
1.15      takayama  109: hypergeometric-ja.texi : hypergeometric.oxweave
                    110:        /bin/rm -f hypergeometric-ja.texi
                    111:        $(OXWEAVE) C ja  <hypergeometric.oxweave >hypergeometric-ja.texi
                    112:
                    113: hypergeometric-en.texi : hypergeometric.oxweave
                    114:        /bin/rm -f hypergeometric-en.texi
1.16      takayama  115:        $(OXWEAVE) C en  <hypergeometric.oxweave >hypergeometric-en.texi
                    116:
                    117: number-ja.texi : number.oxweave
                    118:        /bin/rm -f number-ja.texi
                    119:        $(OXWEAVE) C ja  <number.oxweave >number-ja.texi
                    120:
                    121: number-en.texi : number.oxweave
                    122:        /bin/rm -f number-en.texi
                    123:        $(OXWEAVE) C en  <number.oxweave >number-en.texi
                    124:
                    125: calculus-ja.texi : calculus.oxweave
                    126:        /bin/rm -f calculus-ja.texi
                    127:        $(OXWEAVE) C ja  <calculus.oxweave >calculus-ja.texi
                    128:
                    129: calculus-en.texi : calculus.oxweave
                    130:        /bin/rm -f calculus-en.texi
                    131:        $(OXWEAVE) C en  <calculus.oxweave >calculus-en.texi
                    132:
                    133: series-ja.texi : series.oxweave
                    134:        /bin/rm -f series-ja.texi
                    135:        $(OXWEAVE) C ja  <series.oxweave >series-ja.texi
                    136:
                    137: series-en.texi : series.oxweave
                    138:        /bin/rm -f series-en.texi
                    139:        $(OXWEAVE) C en  <series.oxweave >series-en.texi
                    140:
1.32      takayama  141: ### matrix
1.16      takayama  142: matrix-ja.texi : matrix.oxweave
                    143:        /bin/rm -f matrix-ja.texi
                    144:        $(OXWEAVE) C ja  <matrix.oxweave >matrix-ja.texi
                    145: matrix-en.texi : matrix.oxweave
                    146:        /bin/rm -f matrix-en.texi
                    147:        $(OXWEAVE) C en  <matrix.oxweave >matrix-en.texi
1.32      takayama  148: matrix-auto-en.texi : $(CONTRIB)/names.rr gentexi
                    149:        rm -f matrix-auto-en.texi
1.37    ! noro      150:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category matrix --en --upnode "Matrix (Standard Mathematical Functions)" ${OPTGENTEXI} >matrix-auto-en.texi
1.32      takayama  151: matrix-auto-ja.texi : $(CONTRIB)/names.rr gentexi
                    152:        rm -f matrix-auto-ja.texi
                    153:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category matrix --ja --upnode Top ${OPTGENTEXI} >matrix-auto-ja.texi
                    154:
1.16      takayama  155:
                    156: graphic-ja.texi : graphic.oxweave
                    157:        /bin/rm -f graphic-ja.texi
                    158:        $(OXWEAVE) C ja  <graphic.oxweave >graphic-ja.texi
                    159:
                    160: graphic-en.texi : graphic.oxweave
                    161:        /bin/rm -f graphic-en.texi
                    162:        $(OXWEAVE) C en  <graphic.oxweave >graphic-en.texi
                    163:
1.32      takayama  164: ### print
1.16      takayama  165: print-ja.texi : print.oxweave
                    166:        /bin/rm -f print-ja.texi
                    167:        $(OXWEAVE) C ja  <print.oxweave >print-ja.texi
                    168: print-en.texi : print.oxweave
                    169:        /bin/rm -f print-en.texi
                    170:        $(OXWEAVE) C en  <print.oxweave >print-en.texi
1.32      takayama  171: print-auto-en.texi : $(CONTRIB)/names.rr gentexi
                    172:        rm -f print-auto-en.texi
1.37    ! noro      173:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category print --en --upnode "Print (Standard Mathematical Functions)" ${OPTGENTEXI} >print-auto-en.texi
1.32      takayama  174: print-auto-ja.texi : $(CONTRIB)/names.rr gentexi
                    175:        rm -f print-auto-ja.texi
                    176:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category print --ja --upnode Top ${OPTGENTEXI} >print-auto-ja.texi
1.16      takayama  177:
1.32      takayama  178: ###poly
1.16      takayama  179: poly-ja.texi : poly.oxweave
                    180:        /bin/rm -f poly-ja.texi
                    181:        $(OXWEAVE) C ja  <poly.oxweave >poly-ja.texi
                    182: poly-en.texi : poly.oxweave
                    183:        /bin/rm -f poly-en.texi
                    184:        $(OXWEAVE) C en  <poly.oxweave >poly-en.texi
1.32      takayama  185: poly-auto-en.texi : $(CONTRIB)/names.rr gentexi
                    186:        rm -f poly-auto-en.texi
1.37    ! noro      187:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category poly --en --upnode "Polynomials (Standard Mathematical Functions)" ${OPTGENTEXI} >poly-auto-en.texi
1.32      takayama  188: poly-auto-ja.texi : $(CONTRIB)/names.rr gentexi
                    189:        rm -f poly-auto-ja.texi
                    190:        $(OXWEAVE) usage  <$(CONTRIB)/names.rr | ./gentexi --category poly --ja --upnode Top ${OPTGENTEXI} >poly-auto-ja.texi
1.16      takayama  191:
                    192: complex-ja.texi : complex.oxweave
                    193:        /bin/rm -f complex-ja.texi
                    194:        $(OXWEAVE) C ja  <complex.oxweave >complex-ja.texi
                    195:
                    196: complex-en.texi : complex.oxweave
                    197:        /bin/rm -f complex-en.texi
                    198:        $(OXWEAVE) C en  <complex.oxweave >complex-en.texi
                    199:
1.15      takayama  200:
1.33      takayama  201: oxxm-ja.texi : $(ASIRLIB)/xm Makefile
                    202:        /bin/rm -f oxxm-ja.texi
                    203:        $(OXWEAVE) C-texi jp-texi  <$(ASIRLIB)/xm >oxxm-ja.texi
                    204:
                    205: oxxm-en.texi : $(ASIRLIB)/xm Makefile
                    206:        /bin/rm -f oxxm-en.texi
                    207:        $(OXWEAVE) C-texi eg-texi  <$(ASIRLIB)/xm >oxxm-en.texi
                    208:
                    209: oxmath-ja.texi : $(CONTRIB)/m Makefile
                    210:        /bin/rm -f oxmath-ja.texi
                    211:        $(OXWEAVE) C-texi jp-texi  <$(CONTRIB)/m >oxmath-ja.texi
                    212:
                    213: oxmath-en.texi : $(CONTRIB)/m Makefile
                    214:        /bin/rm -f oxmath-en.texi
                    215:        $(OXWEAVE) C-texi eg-texi  <$(CONTRIB)/m >oxmath-en.texi
                    216:
                    217: oxphc-ja.texi : $(CONTRIB)/phc Makefile
                    218:        /bin/rm -f oxphc-ja.texi
                    219:        $(OXWEAVE) C-texi jp-texi  <$(CONTRIB)/phc >oxphc-ja.texi
                    220:
                    221: oxphc-en.texi : $(CONTRIB)/phc Makefile
                    222:        /bin/rm -f oxphc-en.texi
                    223:        $(OXWEAVE) C-texi eg-texi  <$(CONTRIB)/phc >oxphc-en.texi
                    224:
                    225: oxgnuplot-ja.texi : $(CONTRIB)/gnuplot Makefile
                    226:        /bin/rm -f oxgnuplot-ja.texi
                    227:        $(OXWEAVE) C-texi jp-texi  <$(CONTRIB)/gnuplot >oxgnuplot-ja.texi
                    228:
                    229: oxgnuplot-en.texi : $(CONTRIB)/gnuplot Makefile
                    230:        /bin/rm -f oxgnuplot-en.texi
                    231:        $(OXWEAVE) C-texi eg-texi  <$(CONTRIB)/gnuplot >oxgnuplot-en.texi
1.1       takayama  232:
1.32      takayama  233: ###sm1
1.33      takayama  234: oxsm1-ja.texi : sm1.oxweave Makefile sm1-auto-ja.texi
                    235:        /bin/rm -f oxsm1-ja.texi
                    236:        $(OXWEAVE) C-texi jp-texi  <sm1.oxweave >oxsm1-ja.texi
                    237: oxsm1-en.texi : sm1.oxweave Makefile sm1-auto-en.texi
                    238:        /bin/rm -f oxsm1-en.texi
                    239:        $(OXWEAVE) C-texi eg-texi  <sm1.oxweave >oxsm1-en.texi
1.32      takayama  240: sm1-auto-en.texi : $(CONTRIB)/sm1 gentexi
                    241:        rm -f sm1-auto-en.texi
1.37    ! noro      242:        $(OXWEAVE) usage  <$(CONTRIB)/sm1 | ./gentexi --category sm1 --en --upnode "SM1 Functions" ${OPTGENTEXI} >sm1-auto-en.texi
1.32      takayama  243: sm1-auto-ja.texi : $(CONTRIB)/names.rr gentexi
                    244:        rm -f sm1-auto-ja.texi
                    245:        $(OXWEAVE) usage  <$(CONTRIB)/sm1 | ./gentexi --category sm1 --ja --upnode Top ${OPTGENTEXI} >sm1-auto-ja.texi
1.1       takayama  246:
1.33      takayama  247: oxom-ja.texi : $(CONTRIB)/om Makefile
                    248:        /bin/rm -f oxom-ja.texi
                    249:        $(OXWEAVE) C-texi jp-texi  <$(CONTRIB)/om >oxom-ja.texi
                    250:
                    251: oxom-en.texi : $(CONTRIB)/om Makefile
                    252:        /bin/rm -f oxom-en.texi
                    253:        $(OXWEAVE) C-texi eg-texi  <$(CONTRIB)/om >oxom-en.texi
                    254:
                    255: dsolv-ja.texi : dsolv.oxweave Makefile
                    256:        /bin/rm -f dsolv-ja.texi
                    257:        $(OXWEAVE) C-texi jp-texi  <dsolv.oxweave >dsolv-ja.texi
                    258:
                    259: dsolv-en.texi : dsolv.oxweave Makefile
                    260:        /bin/rm -f dsolv-en.texi
                    261:        $(OXWEAVE) C-texi eg-texi  <dsolv.oxweave >dsolv-en.texi
                    262:
                    263: longname-ja.texi : $(CONTRIB)/longname Makefile
                    264:        /bin/rm -f longname-ja.texi
                    265:        $(OXWEAVE) C-texi jp-texi  <$(CONTRIB)/longname >longname-ja.texi
                    266:
                    267: longname-en.texi : $(CONTRIB)/longname Makefile
                    268:        /bin/rm -f longname-en.texi
                    269:        $(OXWEAVE) C-texi eg-texi  <$(CONTRIB)/longname >longname-en.texi
                    270:
                    271: oxtigers-ja.texi : $(CONTRIB)/tigers Makefile
                    272:        /bin/rm -f oxtigers-ja.texi
                    273:        $(OXWEAVE) C-texi jp-texi  <$(CONTRIB)/tigers >oxtigers-ja.texi
                    274:
                    275: oxtigers-en.texi : $(CONTRIB)/tigers Makefile
                    276:        /bin/rm -f oxtigers-en.texi
                    277:        $(OXWEAVE) C-texi eg-texi  <$(CONTRIB)/tigers >oxtigers-en.texi
1.13      takayama  278:
1.34      takayama  279: ### windows
                    280: windows-ja.texi : windows.oxweave Makefile
                    281:        /bin/rm -f windows-ja.texi
                    282:        $(OXWEAVE) C-texi ja  <windows.oxweave >windows-ja.texi
                    283:
                    284: windows-en.texi : windows.oxweave Makefile
                    285:        /bin/rm -f windows-en.texi
                    286:        $(OXWEAVE) C-texi en  <windows.oxweave >windows-en.texi
                    287:
1.35      takayama  288: ### intro
                    289: intro-ja.texi : intro.oxweave Makefile
                    290:        /bin/rm -f intro-ja.texi
                    291:        $(OXWEAVE) C-texi ja  <intro.oxweave >intro-ja.texi
                    292:
                    293: intro-en.texi : intro.oxweave Makefile
                    294:        /bin/rm -f intro-en.texi
                    295:        $(OXWEAVE) C-texi en  <intro.oxweave >intro-en.texi
                    296:
1.30      takayama  297: ###misc
                    298: misc-ja.texi : misc.oxweave
                    299:        /bin/rm -f misc-ja.texi
                    300:        $(OXWEAVE) C ja  <misc.oxweave >misc-ja.texi
                    301: misc-en.texi : misc.oxweave
                    302:        /bin/rm -f misc-en.texi
                    303:        $(OXWEAVE) C en  <misc.oxweave >misc-en.texi
1.29      takayama  304:
                    305: ###glib
                    306: glib-ja.texi : glib.oxweave
                    307:        /bin/rm -f glib-ja.texi
                    308:        $(OXWEAVE) C ja  <glib.oxweave >glib-ja.texi
                    309: glib-en.texi : glib.oxweave
                    310:        /bin/rm -f glib-en.texi
                    311:        $(OXWEAVE) C en  <glib.oxweave >glib-en.texi
                    312: glib-auto-en.texi : ${ASIRLIB}/glib gentexi
                    313:        rm -f glib-auto-en.texi
1.37    ! noro      314:        cat ${ASIRLIB}/glib | $(OXWEAVE) usage | ./gentexi  --category glib --en --upnode "Graphic Library (2 dimensional)" ${OPTGENTEXI} >glib-auto-en.texi
1.29      takayama  315: glib-auto-ja.texi : ${ASIRLIB}/glib gentexi
                    316:        rm -f glib-auto-ja.texi
                    317:        cat ${ASIRLIB}/glib | $(OXWEAVE) usage  | ./gentexi   --category glib  --ja --upnode Top ${OPTGENTEXI} >glib-auto-ja.texi
                    318:
1.31      takayama  319: ###pfp
                    320: pfp-ja.texi : pfp.oxweave
                    321:        /bin/rm -f pfp-ja.texi
                    322:        $(OXWEAVE) C ja  <pfp.oxweave >pfp-ja.texi
                    323: pfp-en.texi : pfp.oxweave
                    324:        /bin/rm -f pfp-en.texi
                    325:        $(OXWEAVE) C en  <pfp.oxweave >pfp-en.texi
                    326: pfp-auto-en.texi : $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr gentexi
                    327:        rm -f pfp-auto-en.texi
1.37    ! noro      328:        cat $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr | $(OXWEAVE) usage | ./gentexi  --en --upnode  Pfpcohom ${OPTGENTEXI} >pfp-auto-en.texi
1.31      takayama  329: pfp-auto-ja.texi : $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr gentexi
                    330:        rm -f pfp-auto-ja.texi
                    331:        cat $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr | $(OXWEAVE) usage  | ./gentexi  --ja --upnode Top ${OPTGENTEXI} >pfp-auto-ja.texi
1.29      takayama  332:
1.32      takayama  333: ###### Generating online manual
1.33      takayama  334: gen-help-en: $(EGSRCS) $(ASIRDOC)/extract_func $(ENAUTO)
                    335:        -rm -rf tmp help-en
                    336:        mkdir help-en tmp
                    337:        cp cman-en.texi $(EGSRCS) $(ENAUTO) tmp
                    338:        -(cd tmp; makeinfo --force cman-en.texi)
                    339:        (cd help-en; for i in ../tmp/asir-contrib*; do ../$(ASIRDOC)/extract_func $$i; done)
1.14      takayama  340: ## duplicate some help files
1.33      takayama  341:        -(cd help-en; cp sm1_hilbert hilbert_polynomial)
1.3       noro      342:
1.33      takayama  343: gen-help-ja: $(JPSRCS) $(ASIRDOC)/extract_func $(JAAUTO)
                    344:        -rm -rf tmp-ja help-ja
                    345:        mkdir help-ja tmp-ja
                    346:        for i in cman-ja.texi $(JPSRCS) $(JAAUTO); do nkf -e $$i > tmp-ja/$$i; done
                    347:        -(cd tmp-ja; makeinfo --force cman-ja.texi)
                    348:        (cd help-ja; for i in ../tmp-ja/asir-contrib*; do ../$(ASIRDOC)/extract_func -j $$i; done)
1.14      takayama  349: ## duplicate some help files
1.33      takayama  350:        -(cd help-ja; cp sm1_hilbert hilbert_polynomial)
1.3       noro      351:
1.33      takayama  352: gen-html-en: gen-help-en
1.15      takayama  353:        -rm -rf html-en
                    354:        -mkdir html-en
                    355:        -cp tmp/*.texi html-en
1.33      takayama  356:        -(cd html-en; ${TEXI2HTML} cman-en.texi)
1.15      takayama  357:
1.33      takayama  358: gen-html-ja: gen-help-ja
1.15      takayama  359:        -mkdir html-ja
1.18      takayama  360:        -cp tmp-ja/*.texi html-ja
1.33      takayama  361:        -cp tmp-ja/cman-ja.texi html-ja/cman-ja.texi
1.15      takayama  362:        -(cd html-ja; ${TEXI2HTML} cman-ja.texi)
                    363:
1.33      takayama  364: help: gen-help-en gen-help-ja
1.4       takayama  365:
                    366: install-help: help
1.6       takayama  367:        /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.5       takayama  368:        mkdir $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.33      takayama  369:        -cp -f help-ja/* $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.6       takayama  370:        /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5       takayama  371:        mkdir $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.33      takayama  372:        -cp -f help-en/* $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5       takayama  373:
1.18      takayama  374: install-html-help: gen-html-en gen-html-ja
1.15      takayama  375:        -( tar cf - html-en | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
                    376:        -( tar cf - html-ja | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
                    377:
1.36      takayama  378: install-document :  gen-dvi-ps
                    379:        -cp cman-ja.dvi $(OpenXM_doc)/asir-contrib/cman-ja.dvi
                    380:        -$(DVIPS) cman-ja >$(OpenXM_doc)/asir-contrib/cman-ja.ps
                    381:        -cp cman-en.dvi $(OpenXM_doc)/asir-contrib/cman-en.dvi
                    382:        -$(DVIPS) cman-en >$(OpenXM_doc)/asir-contrib/cman-en.ps
                    383: gen-dvi-ps: all clean-document
1.33      takayama  384:        -ptex cman-ja.texi
                    385:        -ptex cman-ja.texi
                    386:        -tex cman-en.texi
                    387:        -tex cman-en.texi
1.5       takayama  388:
                    389:
                    390: clean-document :
                    391:        /bin/rm -rf $(OpenXM_doc)/asir-contrib
1.28      takayama  392:        rm -f ./.done_install
1.5       takayama  393:        mkdir $(OpenXM_doc)/asir-contrib
                    394:        touch $(OpenXM_doc)/asir-contrib/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_AUTOMATICDALLY_GENERATED.
                    395:
1.3       noro      396:
1.1       takayama  397: clean :
1.28      takayama  398:        rm -f ./.done_install
1.23      takayama  399:        rm -f gentexi $(JAAUTO) $(ENAUTO) gentexi-in.tmp gentexi-out.tmp
1.35      takayama  400:        rm -f oxxm-ja.texi oxxm-en.texi oxmath-ja.texi *~ *.aux *.cp *.dvi *.fn *.ky *.log *.pg *.toc *.tp *.vr oxmath-en.texi oxphc-ja.texi oxphc-en.texi oxgnuplot-ja.texi oxgnuplot-en.texi oxsm1-ja.texi oxsm1-en.texi oxom-en.texi oxom-ja.texi dsolv-ja.texi dsolv-en.texi longname-ja.texi longname-en.texi oxtigers-ja.texi oxtigers-en.texi names-ja.texi names-en.texi hypergeometric-ja.texi hypergeometric-en.texi number-en.texi number-ja.texi calculus-en.texi calculus-ja.texi series-en.texi series-ja.texi matrix-en.texi matrix-ja.texi graphic-en.texi graphic-ja.texi print-en.texi print-ja.texi poly-en.texi poly-ja.texi complex-en.texi complex-ja.texi plucker-ja.texi plucker-en.texi base-ja.texi base-en.texi glib-ja.texi glib-en.texi misc-ja.texi misc-en.texi pfp-ja.texi pfp-en.texi windows-ja.texi windows-en.texi intro-ja.texi intro-en.texi
1.33      takayama  401:        /bin/rm -rf help-ja help-en tmp tmp-ja html-en html-ja

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