Annotation of OpenXM/src/asir-contrib/packages/doc/Makefile, Revision 1.32
1.32 ! takayama 1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile,v 1.31 2002/07/14 12:13:42 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
28: # and cman-eg.texi
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.32 ! takayama 43: 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 intro.texi Diff.texi Dmodule.texi Matrix.texi base-ja.texi misc-ja.texi glib-ja.texi pfp-ja.texi plucker-ja.texi
! 44: 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 intro-eg.texi cman-eg.texi base-en.texi misc-en.texi glib-en.texi pfp-en.texi plucker-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.32 ! takayama 54: @echo "Type in tex cman-eg.texi to generate the manual(en) in dvi format."
! 55: @echo "Type in ptex cman.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.1 takayama 199: oxxm.texi : $(ASIRLIB)/xm Makefile
200: /bin/rm -f oxxm.texi
1.9 noro 201: $(OXWEAVE) C-texi jp-texi <$(ASIRLIB)/xm >oxxm.texi
1.1 takayama 202:
203: oxxm-eg.texi : $(ASIRLIB)/xm Makefile
204: /bin/rm -f oxxm-eg.texi
1.9 noro 205: $(OXWEAVE) C-texi eg-texi <$(ASIRLIB)/xm >oxxm-eg.texi
1.1 takayama 206:
207: oxmath.texi : $(CONTRIB)/m Makefile
208: /bin/rm -f oxmath.texi
1.9 noro 209: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/m >oxmath.texi
1.1 takayama 210:
211: oxmath-eg.texi : $(CONTRIB)/m Makefile
212: /bin/rm -f oxmath-eg.texi
1.9 noro 213: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/m >oxmath-eg.texi
1.1 takayama 214:
215: oxphc.texi : $(CONTRIB)/phc Makefile
216: /bin/rm -f oxphc.texi
1.9 noro 217: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/phc >oxphc.texi
1.1 takayama 218:
219: oxphc-eg.texi : $(CONTRIB)/phc Makefile
220: /bin/rm -f oxphc-eg.texi
1.9 noro 221: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/phc >oxphc-eg.texi
1.1 takayama 222:
223: oxgnuplot.texi : $(CONTRIB)/gnuplot Makefile
224: /bin/rm -f oxgnuplot.texi
1.9 noro 225: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/gnuplot >oxgnuplot.texi
1.1 takayama 226:
227: oxgnuplot-eg.texi : $(CONTRIB)/gnuplot Makefile
228: /bin/rm -f oxgnuplot-eg.texi
1.9 noro 229: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/gnuplot >oxgnuplot-eg.texi
1.1 takayama 230:
1.32 ! takayama 231: ###sm1
! 232: oxsm1.texi : sm1.oxweave Makefile sm1-auto-ja.texi
1.1 takayama 233: /bin/rm -f oxsm1.texi
1.19 takayama 234: $(OXWEAVE) C-texi jp-texi <sm1.oxweave >oxsm1.texi
1.32 ! takayama 235: oxsm1-eg.texi : sm1.oxweave Makefile sm1-auto-en.texi
1.1 takayama 236: /bin/rm -f oxsm1-eg.texi
1.19 takayama 237: $(OXWEAVE) C-texi eg-texi <sm1.oxweave >oxsm1-eg.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:
245: oxom.texi : $(CONTRIB)/om Makefile
246: /bin/rm -f oxom.texi
1.9 noro 247: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/om >oxom.texi
1.1 takayama 248:
249: oxom-eg.texi : $(CONTRIB)/om Makefile
250: /bin/rm -f oxom-eg.texi
1.9 noro 251: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/om >oxom-eg.texi
1.1 takayama 252:
1.11 takayama 253: dsolv-jp.texi : dsolv.oxweave Makefile
254: /bin/rm -f dsolv-jp.texi
255: $(OXWEAVE) C-texi jp-texi <dsolv.oxweave >dsolv-jp.texi
256:
257: dsolv-eg.texi : dsolv.oxweave Makefile
258: /bin/rm -f dsolv-eg.texi
259: $(OXWEAVE) C-texi eg-texi <dsolv.oxweave >dsolv-eg.texi
260:
1.12 takayama 261: longname-jp.texi : $(CONTRIB)/longname Makefile
262: /bin/rm -f longname-jp.texi
263: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/longname >longname-jp.texi
264:
265: longname-eg.texi : $(CONTRIB)/longname Makefile
266: /bin/rm -f longname-eg.texi
267: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/longname >longname-eg.texi
268:
1.13 takayama 269: oxtigers-jp.texi : $(CONTRIB)/tigers Makefile
270: /bin/rm -f oxtigers-jp.texi
271: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/tigers >oxtigers-jp.texi
272:
273: oxtigers-eg.texi : $(CONTRIB)/tigers Makefile
274: /bin/rm -f oxtigers-eg.texi
275: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/tigers >oxtigers-eg.texi
276:
1.30 takayama 277: ###misc
278: misc-ja.texi : misc.oxweave
279: /bin/rm -f misc-ja.texi
280: $(OXWEAVE) C ja <misc.oxweave >misc-ja.texi
281: misc-en.texi : misc.oxweave
282: /bin/rm -f misc-en.texi
283: $(OXWEAVE) C en <misc.oxweave >misc-en.texi
1.29 takayama 284:
285: ###glib
286: glib-ja.texi : glib.oxweave
287: /bin/rm -f glib-ja.texi
288: $(OXWEAVE) C ja <glib.oxweave >glib-ja.texi
289: glib-en.texi : glib.oxweave
290: /bin/rm -f glib-en.texi
291: $(OXWEAVE) C en <glib.oxweave >glib-en.texi
292: glib-auto-en.texi : ${ASIRLIB}/glib gentexi
293: rm -f glib-auto-en.texi
294: cat ${ASIRLIB}/glib | $(OXWEAVE) usage | ./gentexi --category glib --en --upnode Top ${OPTGENTEXI} >glib-auto-en.texi
295: glib-auto-ja.texi : ${ASIRLIB}/glib gentexi
296: rm -f glib-auto-ja.texi
297: cat ${ASIRLIB}/glib | $(OXWEAVE) usage | ./gentexi --category glib --ja --upnode Top ${OPTGENTEXI} >glib-auto-ja.texi
298:
1.31 takayama 299: ###pfp
300: pfp-ja.texi : pfp.oxweave
301: /bin/rm -f pfp-ja.texi
302: $(OXWEAVE) C ja <pfp.oxweave >pfp-ja.texi
303: pfp-en.texi : pfp.oxweave
304: /bin/rm -f pfp-en.texi
305: $(OXWEAVE) C en <pfp.oxweave >pfp-en.texi
306: pfp-auto-en.texi : $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr gentexi
307: rm -f pfp-auto-en.texi
308: cat $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr | $(OXWEAVE) usage | ./gentexi --en --upnode Top ${OPTGENTEXI} >pfp-auto-en.texi
309: pfp-auto-ja.texi : $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr gentexi
310: rm -f pfp-auto-ja.texi
311: cat $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr | $(OXWEAVE) usage | ./gentexi --ja --upnode Top ${OPTGENTEXI} >pfp-auto-ja.texi
1.29 takayama 312:
1.32 ! takayama 313: ###### Generating online manual
1.23 takayama 314: gen-help-eg: $(EGSRCS) $(ASIRDOC)/extract_func $(ENAUTO)
1.3 noro 315: -rm -rf tmp help-eg
316: mkdir help-eg tmp
1.23 takayama 317: cp cman-eg.texi $(EGSRCS) $(ENAUTO) tmp
1.3 noro 318: -(cd tmp; makeinfo --force cman-eg.texi)
1.5 takayama 319: (cd help-eg; for i in ../tmp/asir-contrib*; do ../$(ASIRDOC)/extract_func $$i; done)
1.14 takayama 320: ## duplicate some help files
321: -(cd help-eg; cp sm1_hilbert hilbert_polynomial)
1.3 noro 322:
1.23 takayama 323: gen-help-jp: $(JPSRCS) $(ASIRDOC)/extract_func $(JAAUTO)
1.18 takayama 324: -rm -rf tmp-ja help-jp
325: mkdir help-jp tmp-ja
1.23 takayama 326: for i in cman.texi $(JPSRCS) $(JAAUTO); do nkf -e $$i > tmp-ja/$$i; done
1.18 takayama 327: -(cd tmp-ja; makeinfo --force cman.texi)
328: (cd help-jp; for i in ../tmp-ja/asir-contrib*; do ../$(ASIRDOC)/extract_func -j $$i; done)
1.14 takayama 329: ## duplicate some help files
330: -(cd help-jp; cp sm1_hilbert hilbert_polynomial)
1.3 noro 331:
1.18 takayama 332: gen-html-en: gen-help-eg
1.15 takayama 333: -rm -rf html-en
334: -mkdir html-en
335: -cp tmp/*.texi html-en
336: -(cd html-en; ${TEXI2HTML} cman-eg.texi)
337:
1.18 takayama 338: gen-html-ja: gen-help-jp
1.15 takayama 339: -mkdir html-ja
1.18 takayama 340: -cp tmp-ja/*.texi html-ja
341: -cp tmp-ja/cman.texi html-ja/cman-ja.texi
1.15 takayama 342: -(cd html-ja; ${TEXI2HTML} cman-ja.texi)
343:
1.18 takayama 344: help: gen-help-eg gen-help-jp
1.4 takayama 345:
346: install-help: help
1.6 takayama 347: /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.5 takayama 348: mkdir $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.7 takayama 349: -cp -f help-jp/* $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.6 takayama 350: /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5 takayama 351: mkdir $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.7 takayama 352: -cp -f help-eg/* $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5 takayama 353:
1.18 takayama 354: install-html-help: gen-html-en gen-html-ja
1.15 takayama 355: -( tar cf - html-en | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
356: -( tar cf - html-ja | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
357:
1.5 takayama 358: install-document : all clean-document
359: -ptex cman.texi
360: -ptex cman.texi
1.8 takayama 361: -cp cman.dvi $(OpenXM_doc)/asir-contrib/cman-jp.dvi
1.5 takayama 362: -$(DVIPS) cman >$(OpenXM_doc)/asir-contrib/cman-jp.ps
363: -tex cman-eg.texi
364: -tex cman-eg.texi
1.8 takayama 365: -cp cman-eg.dvi $(OpenXM_doc)/asir-contrib/cman-eg.dvi
1.5 takayama 366: -$(DVIPS) cman-eg >$(OpenXM_doc)/asir-contrib/cman-eg.ps
367:
368:
369: clean-document :
370: /bin/rm -rf $(OpenXM_doc)/asir-contrib
1.28 takayama 371: rm -f ./.done_install
1.5 takayama 372: mkdir $(OpenXM_doc)/asir-contrib
373: touch $(OpenXM_doc)/asir-contrib/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_AUTOMATICDALLY_GENERATED.
374:
1.3 noro 375:
1.1 takayama 376: clean :
1.28 takayama 377: rm -f ./.done_install
1.23 takayama 378: rm -f gentexi $(JAAUTO) $(ENAUTO) gentexi-in.tmp gentexi-out.tmp
1.31 takayama 379: 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 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
1.18 takayama 380: /bin/rm -rf help-jp help-eg tmp tmp-ja html-en html-ja
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>