Annotation of OpenXM/src/asir-contrib/packages/doc/Makefile, Revision 1.17
1.17 ! takayama 1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile,v 1.16 2001/05/27 11:00:05 takayama Exp $
1.5 takayama 2: # targets
3: # all :
4: # Extracts all tex-info files from ../src/*
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.6 takayama 8: # install-document : all
1.5 takayama 9: # Copy the documents to OpenXM/doc/asir-contrib
1.15 takayama 10: # install-html-help
11: # Copy html help to OpenXM/doc/asir-contrib
12: #
1.6 takayama 13: # NOTE: install-help should be executed after installing asir2000.
1.5 takayama 14: OpenXM_ROOT=../../../../../OpenXM
15: ASIRDOC=$(OpenXM_ROOT)/src/asir-doc
16: ASIRLIB=$(OpenXM_ROOT)/../OpenXM_contrib2/asir2000/lib
17: CONTRIB=$(OpenXM_ROOT)/src/asir-contrib/packages/src
1.6 takayama 18: ## PS documents are installed under $(OpenXM_doc)/asir-contrib
1.5 takayama 19: OpenXM_doc=$(OpenXM_ROOT)/doc
20: DVIPS=dvips -f
1.9 noro 21: OXWEAVE= ../../../kxx/oxweave
1.15 takayama 22: TEXI2HTML=texi2html -menu -split_node
1.5 takayama 23:
1.16 takayama 24: JPSRCS= oxxm.texi oxmath.texi oxphc.texi oxgnuplot.texi oxsm1.texi oxom.texi dsolv-jp.texi longname-jp.texi oxtigers-jp.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
1.17 ! takayama 25: EGSRCS= oxxm-eg.texi oxmath-eg.texi oxphc-eg.texi oxgnuplot-eg.texi oxsm1-eg.texi oxom-eg.texi dsolv-eg.texi longname-eg.texi oxtigers-eg.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
1.6 takayama 26:
1.3 noro 27: all : $(JPSRCS) $(EGSRCS)
1.6 takayama 28: install : install-document install-help
1.1 takayama 29:
1.15 takayama 30: names-ja.texi : names.oxweave
31: /bin/rm -f names-ja.texi
32: $(OXWEAVE) C ja <names.oxweave >names-ja.texi
33:
34: names-en.texi : names.oxweave
35: /bin/rm -f names-en.texi
1.16 takayama 36: $(OXWEAVE) C en <names.oxweave >names-en.texi
1.15 takayama 37:
38: hypergeometric-ja.texi : hypergeometric.oxweave
39: /bin/rm -f hypergeometric-ja.texi
40: $(OXWEAVE) C ja <hypergeometric.oxweave >hypergeometric-ja.texi
41:
42: hypergeometric-en.texi : hypergeometric.oxweave
43: /bin/rm -f hypergeometric-en.texi
1.16 takayama 44: $(OXWEAVE) C en <hypergeometric.oxweave >hypergeometric-en.texi
45:
46: number-ja.texi : number.oxweave
47: /bin/rm -f number-ja.texi
48: $(OXWEAVE) C ja <number.oxweave >number-ja.texi
49:
50: number-en.texi : number.oxweave
51: /bin/rm -f number-en.texi
52: $(OXWEAVE) C en <number.oxweave >number-en.texi
53:
54: calculus-ja.texi : calculus.oxweave
55: /bin/rm -f calculus-ja.texi
56: $(OXWEAVE) C ja <calculus.oxweave >calculus-ja.texi
57:
58: calculus-en.texi : calculus.oxweave
59: /bin/rm -f calculus-en.texi
60: $(OXWEAVE) C en <calculus.oxweave >calculus-en.texi
61:
62: series-ja.texi : series.oxweave
63: /bin/rm -f series-ja.texi
64: $(OXWEAVE) C ja <series.oxweave >series-ja.texi
65:
66: series-en.texi : series.oxweave
67: /bin/rm -f series-en.texi
68: $(OXWEAVE) C en <series.oxweave >series-en.texi
69:
70: matrix-ja.texi : matrix.oxweave
71: /bin/rm -f matrix-ja.texi
72: $(OXWEAVE) C ja <matrix.oxweave >matrix-ja.texi
73:
74: matrix-en.texi : matrix.oxweave
75: /bin/rm -f matrix-en.texi
76: $(OXWEAVE) C en <matrix.oxweave >matrix-en.texi
77:
78: graphic-ja.texi : graphic.oxweave
79: /bin/rm -f graphic-ja.texi
80: $(OXWEAVE) C ja <graphic.oxweave >graphic-ja.texi
81:
82: graphic-en.texi : graphic.oxweave
83: /bin/rm -f graphic-en.texi
84: $(OXWEAVE) C en <graphic.oxweave >graphic-en.texi
85:
86: print-ja.texi : print.oxweave
87: /bin/rm -f print-ja.texi
88: $(OXWEAVE) C ja <print.oxweave >print-ja.texi
89:
90: print-en.texi : print.oxweave
91: /bin/rm -f print-en.texi
92: $(OXWEAVE) C en <print.oxweave >print-en.texi
93:
94: poly-ja.texi : poly.oxweave
95: /bin/rm -f poly-ja.texi
96: $(OXWEAVE) C ja <poly.oxweave >poly-ja.texi
97:
98: poly-en.texi : poly.oxweave
99: /bin/rm -f poly-en.texi
100: $(OXWEAVE) C en <poly.oxweave >poly-en.texi
101:
102: complex-ja.texi : complex.oxweave
103: /bin/rm -f complex-ja.texi
104: $(OXWEAVE) C ja <complex.oxweave >complex-ja.texi
105:
106: complex-en.texi : complex.oxweave
107: /bin/rm -f complex-en.texi
108: $(OXWEAVE) C en <complex.oxweave >complex-en.texi
109:
1.15 takayama 110:
1.1 takayama 111: oxxm.texi : $(ASIRLIB)/xm Makefile
112: /bin/rm -f oxxm.texi
1.9 noro 113: $(OXWEAVE) C-texi jp-texi <$(ASIRLIB)/xm >oxxm.texi
1.1 takayama 114:
115: oxxm-eg.texi : $(ASIRLIB)/xm Makefile
116: /bin/rm -f oxxm-eg.texi
1.9 noro 117: $(OXWEAVE) C-texi eg-texi <$(ASIRLIB)/xm >oxxm-eg.texi
1.1 takayama 118:
119: oxmath.texi : $(CONTRIB)/m Makefile
120: /bin/rm -f oxmath.texi
1.9 noro 121: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/m >oxmath.texi
1.1 takayama 122:
123: oxmath-eg.texi : $(CONTRIB)/m Makefile
124: /bin/rm -f oxmath-eg.texi
1.9 noro 125: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/m >oxmath-eg.texi
1.1 takayama 126:
127: oxphc.texi : $(CONTRIB)/phc Makefile
128: /bin/rm -f oxphc.texi
1.9 noro 129: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/phc >oxphc.texi
1.1 takayama 130:
131: oxphc-eg.texi : $(CONTRIB)/phc Makefile
132: /bin/rm -f oxphc-eg.texi
1.9 noro 133: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/phc >oxphc-eg.texi
1.1 takayama 134:
135: oxgnuplot.texi : $(CONTRIB)/gnuplot Makefile
136: /bin/rm -f oxgnuplot.texi
1.9 noro 137: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/gnuplot >oxgnuplot.texi
1.1 takayama 138:
139: oxgnuplot-eg.texi : $(CONTRIB)/gnuplot Makefile
140: /bin/rm -f oxgnuplot-eg.texi
1.9 noro 141: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/gnuplot >oxgnuplot-eg.texi
1.1 takayama 142:
143: oxsm1.texi : $(CONTRIB)/sm1 Makefile
144: /bin/rm -f oxsm1.texi
1.9 noro 145: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/sm1 >oxsm1.texi
1.1 takayama 146:
147: oxsm1-eg.texi : $(CONTRIB)/sm1 Makefile
148: /bin/rm -f oxsm1-eg.texi
1.9 noro 149: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/sm1 >oxsm1-eg.texi
1.1 takayama 150:
151: oxom.texi : $(CONTRIB)/om Makefile
152: /bin/rm -f oxom.texi
1.9 noro 153: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/om >oxom.texi
1.1 takayama 154:
155: oxom-eg.texi : $(CONTRIB)/om Makefile
156: /bin/rm -f oxom-eg.texi
1.9 noro 157: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/om >oxom-eg.texi
1.1 takayama 158:
1.11 takayama 159: dsolv-jp.texi : dsolv.oxweave Makefile
160: /bin/rm -f dsolv-jp.texi
161: $(OXWEAVE) C-texi jp-texi <dsolv.oxweave >dsolv-jp.texi
162:
163: dsolv-eg.texi : dsolv.oxweave Makefile
164: /bin/rm -f dsolv-eg.texi
165: $(OXWEAVE) C-texi eg-texi <dsolv.oxweave >dsolv-eg.texi
166:
1.12 takayama 167: longname-jp.texi : $(CONTRIB)/longname Makefile
168: /bin/rm -f longname-jp.texi
169: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/longname >longname-jp.texi
170:
171: longname-eg.texi : $(CONTRIB)/longname Makefile
172: /bin/rm -f longname-eg.texi
173: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/longname >longname-eg.texi
174:
1.13 takayama 175: oxtigers-jp.texi : $(CONTRIB)/tigers Makefile
176: /bin/rm -f oxtigers-jp.texi
177: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/tigers >oxtigers-jp.texi
178:
179: oxtigers-eg.texi : $(CONTRIB)/tigers Makefile
180: /bin/rm -f oxtigers-eg.texi
181: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/tigers >oxtigers-eg.texi
182:
1.3 noro 183: help-eg: $(EGSRCS) $(ASIRDOC)/extract_func
184: -rm -rf tmp help-eg
185: mkdir help-eg tmp
186: cp cman-eg.texi $(EGSRCS) tmp
187: -(cd tmp; makeinfo --force cman-eg.texi)
1.5 takayama 188: (cd help-eg; for i in ../tmp/asir-contrib*; do ../$(ASIRDOC)/extract_func $$i; done)
1.14 takayama 189: ## duplicate some help files
190: -(cd help-eg; cp sm1_hilbert hilbert_polynomial)
1.3 noro 191:
192: help-jp: $(JPSRCS) $(ASIRDOC)/extract_func
193: -rm -rf tmp help-jp
194: mkdir help-jp tmp
195: for i in cman.texi $(JPSRCS); do nkf -e $$i > tmp/$$i; done
196: -(cd tmp; makeinfo --force cman.texi)
1.10 noro 197: (cd help-jp; for i in ../tmp/asir-contrib*; do ../$(ASIRDOC)/extract_func -j $$i; done)
1.14 takayama 198: ## duplicate some help files
199: -(cd help-jp; cp sm1_hilbert hilbert_polynomial)
1.3 noro 200:
1.15 takayama 201: html-en: help-eg
202: -rm -rf html-en
203: -mkdir html-en
204: -cp tmp/*.texi html-en
205: -(cd html-en; ${TEXI2HTML} cman-eg.texi)
206:
207: html-ja: help-jp
208: -mkdir html-ja
209: -cp tmp/*.texi html-ja
210: -cp tmp/cman.texi html-ja/cman-ja.texi
211: -(cd html-ja; ${TEXI2HTML} cman-ja.texi)
212:
1.3 noro 213: help: help-eg help-jp
1.4 takayama 214:
215: install-help: help
1.6 takayama 216: /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.5 takayama 217: mkdir $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.7 takayama 218: -cp -f help-jp/* $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.6 takayama 219: /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5 takayama 220: mkdir $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.7 takayama 221: -cp -f help-eg/* $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5 takayama 222:
1.15 takayama 223: install-html-help: html-en html-ja
224: -( tar cf - html-en | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
225: -( tar cf - html-ja | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
226:
1.5 takayama 227: install-document : all clean-document
228: -ptex cman.texi
229: -ptex cman.texi
1.8 takayama 230: -cp cman.dvi $(OpenXM_doc)/asir-contrib/cman-jp.dvi
1.5 takayama 231: -$(DVIPS) cman >$(OpenXM_doc)/asir-contrib/cman-jp.ps
232: -tex cman-eg.texi
233: -tex cman-eg.texi
1.8 takayama 234: -cp cman-eg.dvi $(OpenXM_doc)/asir-contrib/cman-eg.dvi
1.5 takayama 235: -$(DVIPS) cman-eg >$(OpenXM_doc)/asir-contrib/cman-eg.ps
236:
237:
238: clean-document :
239: /bin/rm -rf $(OpenXM_doc)/asir-contrib
240: mkdir $(OpenXM_doc)/asir-contrib
241: touch $(OpenXM_doc)/asir-contrib/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_AUTOMATICDALLY_GENERATED.
242:
1.3 noro 243:
1.1 takayama 244: clean :
1.16 takayama 245: /bin/rm -f oxxm.texi oxxm-eg.texi oxmath.texi *~ *.aux *.cp *.dvi *.fn *.ky *.log *.pg *.toc *.tp *.vr oxmath-eg.texi oxphc.texi oxphc-eg.texi oxgnuplot.texi oxgnuplot-eg.texi oxsm1.texi oxsm1-eg.texi oxom-eg.texi oxom.texi dsolv-jp.texi dsolv-eg.texi longname-jp.texi longname-eg.texi oxtigers-jp.texi oxtigers-eg.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
1.15 takayama 246: /bin/rm -rf help-jp help-eg tmp html-en html-ja
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>