Annotation of OpenXM/src/asir-contrib/packages/doc/top/Makefile, Revision 1.6
1.6 ! takayama 1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/top/Makefile,v 1.5 2005/05/18 05:48:45 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:
13: ENSRCS = ${SRC:.oxw=.en}
14: JASRCS = ${SRC:.oxw=.ja}
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.4 takayama 21: clean_private:
1.1 takayama 22: ### base
23: base-auto.en : ${CONTRIB}/names.rr
24: ${RM} -f base-auto.en
25: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category base --en --upnode "Basic (Standard Functions)" ${OPTGENTEXI} >base-auto.en
26: base-auto.ja : ${CONTRIB}/names.rr
27: ${RM} -f base-auto.ja
28: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category base --ja --upnode "Basic (Standard Functions)" ${OPTGENTEXI} >base-auto.ja
29:
30: ### number
31: number-auto.en : ${CONTRIB}/names.rr
32: ${RM} -f number-auto.en
33: cat ${CONTRIB}/names.rr | ${OXWEAVE} usage | ${OXGENTEXI} --category number --en --upnode "Numbers (Standard Mathematical Functions)" ${OPTGENTEXI} >number-auto.en
34: number-auto.ja : ${CONTRIB}/names.rr
35: ${RM} -f number-auto.ja
36: cat ${CONTRIB}/names.rr | ${OXWEAVE} usage | ${OXGENTEXI} --category number --ja --upnode "Numbers (Standard Mathematical Functions)" ${OPTGENTEXI} >number-auto.ja
37:
38: ### matrix
39: matrix-auto.en : ${CONTRIB}/names.rr
40: ${RM} -f matrix-auto.en
41: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category matrix --en --upnode "Matrix (Standard Mathematical Functions)" ${OPTGENTEXI} >matrix-auto.en
42: matrix-auto.ja : ${CONTRIB}/names.rr
43: ${RM} -f matrix-auto.ja
44: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category matrix --ja --upnode "Matrix (Standard Mathematical Functions)" ${OPTGENTEXI} >matrix-auto.ja
45:
46: ### print
47: print-auto.en : ${CONTRIB}/names.rr
48: ${RM} -f print-auto.en
49: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category print --en --upnode "Print (Standard Mathematical Functions)" ${OPTGENTEXI} >print-auto.en
50: print-auto.ja : ${CONTRIB}/names.rr
51: ${RM} -f print-auto.ja
52: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category print --ja --upnode "Print (Standard Mathematical Functions)" ${OPTGENTEXI} >print-auto.ja
53:
54: ### poly
55: poly-auto.en : ${CONTRIB}/names.rr
56: ${RM} -f poly-auto.en
57: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category poly --en --upnode "Polynomials (Standard Mathematical Functions)" ${OPTGENTEXI} >poly-auto.en
58: poly-auto.ja : ${CONTRIB}/names.rr
59: ${RM} -f poly-auto.ja
60: ${OXWEAVE} usage <${CONTRIB}/names.rr | ${OXGENTEXI} --category poly --ja --upnode "Polynomials (Standard Mathematical Functions)" ${OPTGENTEXI} >poly-auto.ja
61:
62: ### glib
63: glib-auto.en : ${ASIRLIB}/glib
64: ${RM} -f glib-auto.en
65: cat ${ASIRLIB}/glib | ${OXWEAVE} usage | ${OXGENTEXI} --category glib --en --upnode "Graphic Library (2 dimensional)" ${OPTGENTEXI} >glib-auto.en
66: glib-auto.ja : ${ASIRLIB}/glib
67: ${RM} -f glib-auto.ja
68: cat ${ASIRLIB}/glib | ${OXWEAVE} usage | ${OXGENTEXI} --category glib --ja --upnode "Graphic Library (2 dimensional)" ${OPTGENTEXI} >glib-auto.ja
69:
70: ### util
71: util-auto.en : ${CONTRIB}/names.rr
72: ${RM} -f util-auto.en
73: cat ${CONTRIB}/names.rr | ${OXWEAVE} usage | ${OXGENTEXI} --category util --en --upnode "Utility Functions" ${OPTGENTEXI} >util-auto.en
74: util-auto.ja : ${CONTRIB}/names.rr
75: ${RM} -f util-auto.ja
76: cat ${CONTRIB}/names.rr | ${OXWEAVE} usage | ${OXGENTEXI} --category util --ja --upnode "Utility Functions" ${OPTGENTEXI} >util-auto.ja
77: ### oxshell
78: oxshell-auto.en : ${CONTRIB}/oxshell.rr
79: ${RM} -f oxshell-auto.en
80: cat ${CONTRIB}/oxshell.rr | ${OXWEAVE} usage | ${OXGENTEXI} --category oxshell --en --upnode "Oxshell Functions" ${OPTGENTEXI} >oxshell-auto.en
81: oxshell-auto.ja : ${CONTRIB}/oxshell.rr
82: ${RM} -f oxshell-auto.ja
83: cat ${CONTRIB}/oxshell.rr | ${OXWEAVE} usage | ${OXGENTEXI} --category oxshell --ja --upnode "Oxshell Functions" ${OPTGENTEXI} >oxshell-auto.ja
84:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>