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