Annotation of OpenXM/src/asir-contrib/packages/doc/Makefile, Revision 1.4
1.4 ! takayama 1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile,v 1.3 1999/12/10 05:05:39 noro Exp $
1.3 noro 2: JPSRCS= oxxm.texi oxmath.texi oxphc.texi oxgnuplot.texi oxsm1.texi oxom.texi
3: EGSRCS= oxxm-eg.texi oxmath-eg.texi oxphc-eg.texi oxgnuplot-eg.texi oxsm1-eg.texi oxom-eg.texi
4: all : $(JPSRCS) $(EGSRCS)
1.1 takayama 5:
1.3 noro 6: ASIRDOC=$(OpenXM_HOME)/src/asir-doc
1.2 takayama 7: ASIRLIB=$(OpenXM_HOME)/src/asir2000/lib
8: CONTRIB=$(OpenXM_HOME)/src/asir-contrib/packages/src
1.1 takayama 9:
10: oxxm.texi : $(ASIRLIB)/xm Makefile
11: /bin/rm -f oxxm.texi
12: oxweave C-texi jp-texi <$(ASIRLIB)/xm >oxxm.texi
13:
14: oxxm-eg.texi : $(ASIRLIB)/xm Makefile
15: /bin/rm -f oxxm-eg.texi
16: oxweave C-texi eg-texi <$(ASIRLIB)/xm >oxxm-eg.texi
17:
18: oxmath.texi : $(CONTRIB)/m Makefile
19: /bin/rm -f oxmath.texi
20: oxweave C-texi jp-texi <$(CONTRIB)/m >oxmath.texi
21:
22: oxmath-eg.texi : $(CONTRIB)/m Makefile
23: /bin/rm -f oxmath-eg.texi
24: oxweave C-texi eg-texi <$(CONTRIB)/m >oxmath-eg.texi
25:
26: oxphc.texi : $(CONTRIB)/phc Makefile
27: /bin/rm -f oxphc.texi
28: oxweave C-texi jp-texi <$(CONTRIB)/phc >oxphc.texi
29:
30: oxphc-eg.texi : $(CONTRIB)/phc Makefile
31: /bin/rm -f oxphc-eg.texi
32: oxweave C-texi eg-texi <$(CONTRIB)/phc >oxphc-eg.texi
33:
34: oxgnuplot.texi : $(CONTRIB)/gnuplot Makefile
35: /bin/rm -f oxgnuplot.texi
36: oxweave C-texi jp-texi <$(CONTRIB)/gnuplot >oxgnuplot.texi
37:
38: oxgnuplot-eg.texi : $(CONTRIB)/gnuplot Makefile
39: /bin/rm -f oxgnuplot-eg.texi
40: oxweave C-texi eg-texi <$(CONTRIB)/gnuplot >oxgnuplot-eg.texi
41:
42: oxsm1.texi : $(CONTRIB)/sm1 Makefile
43: /bin/rm -f oxsm1.texi
44: oxweave C-texi jp-texi <$(CONTRIB)/sm1 >oxsm1.texi
45:
46: oxsm1-eg.texi : $(CONTRIB)/sm1 Makefile
47: /bin/rm -f oxsm1-eg.texi
48: oxweave C-texi eg-texi <$(CONTRIB)/sm1 >oxsm1-eg.texi
49:
50: oxom.texi : $(CONTRIB)/om Makefile
51: /bin/rm -f oxom.texi
52: oxweave C-texi jp-texi <$(CONTRIB)/om >oxom.texi
53:
54: oxom-eg.texi : $(CONTRIB)/om Makefile
55: /bin/rm -f oxom-eg.texi
56: oxweave C-texi eg-texi <$(CONTRIB)/om >oxom-eg.texi
57:
1.3 noro 58: help-eg: $(EGSRCS) $(ASIRDOC)/extract_func
59: -rm -rf tmp help-eg
60: mkdir help-eg tmp
61: cp cman-eg.texi $(EGSRCS) tmp
62: -(cd tmp; makeinfo --force cman-eg.texi)
63: (cd help-eg; for i in ../tmp/asir-contrib*; do $(ASIRDOC)/extract_func $$i; done)
64:
65: help-jp: $(JPSRCS) $(ASIRDOC)/extract_func
66: -rm -rf tmp help-jp
67: mkdir help-jp tmp
68: for i in cman.texi $(JPSRCS); do nkf -e $$i > tmp/$$i; done
69: -(cd tmp; makeinfo --force cman.texi)
70: (cd help-jp; for i in ../tmp/asir-contrib*; do $(ASIRDOC)/extract_func $$i; done)
71:
72: help: help-eg help-jp
1.4 ! takayama 73:
! 74: install-help: help
! 75: /bin/rm -f $(OpenXM_HOME)/lib/asir/help-jp/xm.help
! 76: mkdir $(OpenXM_HOME)/lib/asir/help-jp/xm.help
! 77: cp -f help-jp/* $(OpenXM_HOME)/lib/asir/help-jp/xm.help
1.3 noro 78:
1.1 takayama 79: clean :
80: /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
1.3 noro 81: /bin/rm -rf help-jp help-eg tmp
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>