d17e499cf951fa1f7cf0164689dab3e579a25a9c
[elisp/tm.git] / Makefile
1 #
2 # $Id: Makefile,v 6.14 1995/06/26 08:13:11 morioka Exp morioka $
3 #
4
5 # Please specify emacs executables:
6 #       NEMACS  = for NEMACS (or NEpoch)
7 #       MULE1   = for Mule 1.* (based on Emacs 18.*)
8 #       ORIG19  = for Emacs 19.* (FSF original or XEmacs)
9 #       MULE2   = for MULE 2.* (based on Emacs 19.*)
10
11 NEMACS  = nemacs
12 MULE1   = mule1
13 ORIG19  = emacs19
14 MULE2   = mule2
15
16 # Please specify Emacs Lisp install directory:
17 # TMDIR18 = for Emacs 18.* (NEMACS, NEpoch or MULE 1)
18 # TMDIR19 = for Emacs 19.* (FSF original, XEmacs or MULE 2)
19
20 #TMDIR18 = /usr/local/lib/emacs/local.lisp/tm
21 #TMDIR19 = /usr/local/lib/mule/site-lisp
22
23 TMDIR18 = $(HOME)/lib/emacs18/lisp
24 TMDIR19 = $(HOME)/lib/emacs19/lisp
25
26 # Please specify GNUS type (`gnus3' or `gnus4') if you use Emacs 18.*
27 EMACS18_GNUS  = gnus3
28 # EMACS18_GNUS  = gnus4
29
30 # Please specify optional load-path
31 NEMACS_OPT = /usr/local/lib/nemacs/local.lisp
32 MULE1_OPT  = /usr/local/lib/mule/local.lisp
33 ORIG19_OPT =
34 MULE2_OPT =
35
36 bindir  = $(HOME)/bin
37
38 CC      = gcc
39 CFLAGS  = -O
40
41 RM      = /bin/rm -f
42 CP      = /bin/cp -p
43
44 UTILS   = ol2 decode-b
45 GOMI    = $(UTILS) *.elc loadpath
46 FILES   = tm/README.eng tm/rel-*.ol \
47         tm/Makefile tm/Makefile.bc tm/make-lpath tm/inst-el tm/inst-elc \
48         tm/*.el tm/*.c tm/methods \
49         tm/doc/Makefile tm/doc/*.pln tm/doc/*.ol tm/doc/*.tex tm/doc/*.texi \
50         tm/gnus/Makefile tm/gnus/*-path tm/gnus/mk-tgnus tm/gnus/*.el \
51         tm/mh-e/Makefile tm/mh-e/Makefile.bc tm/mh-e/code-jp.ol tm/mh-e/*.el \
52         mel/*.el mel/Makefile* mel/inst* mel/make-lpath \
53         tl/README.eng \
54         tl/Makefile tl/Makefile.bc tl/loadpath \
55         tl/*.el tl/doc/*.texi
56
57 TARFILE = tm6.63.tar
58
59
60 lpath-nemacs:
61         ./make-lpath $(NEMACS_OPT)
62
63 nemacs: lpath-nemacs
64         cd ../mel; PWD=`pwd` make nemacs EMACS=$(NEMACS)
65         make -f Makefile.bc all EMACS=$(NEMACS) EMACS_TYPE=nemacs
66         cd gnus; PWD=`pwd` make gnus3 EMACS=$(NEMACS)
67         cd mh-e; PWD=`pwd` \
68                 make nemacs NEMACS=$(NEMACS) NEMACS_MH_E=$(NEMACS_MH_E)
69
70 nemacs-vm: lpath-nemacs
71         make -f Makefile.bc tm-vm EMACS=$(NEMACS) EMACS_TYPE=nemacs
72
73 install-nemacs: nemacs install-mua-18
74         cd ../mel; PWD=`pwd` make install-nemacs EMACS=$(NEMACS)
75         make -f Makefile.bc install TMDIR=$(TMDIR18) EMACS_TYPE=nemacs
76         cd gnus; PWD=`pwd` make install-18 EMACS=$(NEMACS) TMDIR18=$(TMDIR18)
77
78 lpath-mule1:
79         ./make-lpath $(MULE1_OPT)
80
81 mule1:  lpath-mule1
82         cd ../mel; PWD=`pwd` make mule1 EMACS=$(MULE1)
83         make -f Makefile.bc all EMACS=$(MULE1) EMACS_TYPE=mule
84         cd gnus; PWD=`pwd` make gnus3 EMACS=$(MULE1)
85         cd mh-e; PWD=`pwd` \
86                 make mule1 MULE1=$(MULE1) NEMACS_MH_E=$(MULE1_MH_E)
87
88 mule1-vm: lpath-nemacs
89         make -f Makefile.bc tm-vm EMACS=$(MULE1) EMACS_TYPE=mule
90
91 install-mule1:  mule1 install-mua-18
92         cd ../mel; PWD=`pwd` make install-mule1 EMACS=$(MULE1)
93         make -f Makefile.bc install TMDIR=$(TMDIR18) EMACS_TYPE=mule
94         cd gnus; PWD=`pwd` make install-18 EMACS=$(MULE1) TMDIR18=$(TMDIR18)
95
96 install-mua-18:
97         cd mh-e; PWD=`pwd` make install-18 TMDIR18=$(TMDIR18)
98         make -f Makefile.bc install-tm-vm TMDIR=$(TMDIR18)
99
100
101 lpath-orig19:
102         ./make-lpath $(ORIG19_OPT)
103
104 orig19: lpath-orig19
105         cd ../mel; PWD=`pwd` make orig19 EMACS=$(ORIG19)
106         make -f Makefile.bc all EMACS=$(ORIG19) EMACS_TYPE=orig
107         cd gnus; PWD=`pwd` make gnus4 EMACS=$(ORIG19)
108 # If you use (ding) GNUS, please comment use following:
109 #       cd gnus; PWD=`pwd` make dgnus EMACS=$(ORIG19)
110         cd mh-e; PWD=`pwd` make orig19 ORIG19=$(ORIG19)
111
112 orig19-vm: lpath-nemacs
113         make -f Makefile.bc tm-vm EMACS=$(ORIG19) EMACS_TYPE=orig
114
115 install-orig19: orig19 install-mua-19
116         cd ../mel; PWD=`pwd` make install-orig19 EMACS=$(ORIG19)
117         make -f Makefile.bc install TMDIR=$(TMDIR19) EMACS_TYPE=orig
118         cd gnus; PWD=`pwd` make install-19 EMACS=$(ORIG19) TMDIR19=$(TMDIR19)
119
120 lpath-mule2:
121         ./make-lpath $(MULE2_OPT)
122
123 mule2:  lpath-mule2
124         cd ../mel; PWD=`pwd` make mule2 EMACS=$(MULE2)
125         make -f Makefile.bc all EMACS=$(MULE2) EMACS_TYPE=mule
126         cd gnus; PWD=`pwd` make gnus4 EMACS=$(MULE2)
127 # If you use (ding) GNUS, please comment use following:
128 #       cd gnus; PWD=`pwd` make dgnus EMACS=$(MULE2)
129         cd mh-e; PWD=`pwd` make mule2 MULE2=$(MULE2)
130
131 mule2-vm: lpath-nemacs
132         make -f Makefile.bc tm-vm EMACS=$(MULE2) EMACS_TYPE=mule
133
134 install-mule2:  mule2 install-mua-19
135         cd ../mel; PWD=`pwd` make install-mule2 EMACS=$(MULE2)
136         make -f Makefile.bc install TMDIR=$(TMDIR19) EMACS_TYPE=mule
137         cd gnus; PWD=`pwd` make install-19 EMACS=$(MULE2) TMDIR19=$(TMDIR19)
138
139 install-mua-19:
140         cd mh-e; PWD=`pwd` make install-19 TMDIR19=$(TMDIR19)
141         make -f Makefile.bc install-tm-vm TMDIR=$(TMDIR19)
142
143
144 all:    $(UTILS) $(DVI)
145
146 ol2:    ol2.c
147         $(CC) $(CFLAGS) ol2.c -o ol2
148
149 decode-b:       decode-b.c
150         $(CC) $(CFLAGS) decode-b.c -o decode-b
151
152
153 tex:    ol2
154         cd doc; make tex
155
156 dvi:    ol2
157         cd doc; make dvi
158
159 ps:     ol2
160         cd doc; make ps
161
162
163 install:        $(UTILS) methods
164         $(CP) $(UTILS) $(bindir)
165         $(CP) methods/* $(bindir)
166
167
168 clean:
169         -$(RM) $(GOMI)
170         -cd doc; make clean
171         -cd gnus; make clean
172         -cd mh-e; make clean
173
174
175 tar:
176         cd doc; make tex
177         cd ..; tar cvf $(TARFILE) $(FILES); gzip -9 $(TARFILE)