tm 6.70
[elisp/tm.git] / Makefile
1 #
2 # $Id: Makefile,v 6.17 1995/07/17 17:10:21 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
47 TM_FILES = tm/README.eng tm/rel-*.ol tm/Changes* \
48                 tm/Makefile tm/Makefile.bc \
49                 tm/make-lpath tm/inst-el tm/inst-elc \
50                 tm/tm-view.el tm/tiny-mime.el \
51                 tm/tm-mule.el tm/tm-nemacs.el tm/tm-orig.el tm/tm-misc.el \
52                 tm/tm-ftp.el tm/tm-latex.el tm/tm-partial.el \
53                 tm/tm-rich.el tm/richtext.el tm/tinyrich.el \
54                 tm/tm-comp.el \
55                 tm/tm-setup.el tm/mime-setup.el \
56                 tm/signature.el tm/sc-setup.el tm/gnushook.el \
57                 tm/*.c tm/methods \
58                 tm/doc/Makefile tm/doc/*.pln tm/doc/*.ol tm/doc/*.tex \
59                 tm/doc/*.texi
60
61 TM_MUA_FILES =  tm/tm-rmail.el tm/tm-vm.el \
62                 tm/gnus/Makefile tm/gnus/*-path tm/gnus/mk-tgnus \
63                 tm/gnus/*.el \
64                 tm/mh-e/Makefile tm/mh-e/Makefile.bc tm/mh-e/code-jp.ol \
65                 tm/mh-e/*.el
66
67 MEL_FILES = mel/*.el mel/Makefile* mel/inst* mel/make-lpath
68
69 TL_FILES = tl/README.eng \
70                 tl/Makefile tl/Makefile.bc tl/loadpath \
71                 tl/*.el tl/doc/*.texi
72
73 FILES   = $(TM_FILES) $(TM_MUA_FILES) $(MEL_FILES) $(TL_FILES)
74         
75 TARFILE = tm6.70.tar
76
77
78 lpath-nemacs:
79         ./make-lpath $(NEMACS_OPT)
80
81 nemacs: lpath-nemacs
82         cd ../mel; PWD=`pwd` make nemacs EMACS=$(NEMACS)
83         make -f Makefile.bc all EMACS=$(NEMACS) EMACS_TYPE=nemacs
84         cd gnus; PWD=`pwd` make gnus3 EMACS=$(NEMACS)
85         cd mh-e; PWD=`pwd` \
86                 make nemacs NEMACS=$(NEMACS) NEMACS_MH_E=$(NEMACS_MH_E)
87
88 nemacs-vm: lpath-nemacs
89         make -f Makefile.bc tm-vm EMACS=$(NEMACS) EMACS_TYPE=nemacs
90
91 install-nemacs: nemacs install-mua-18
92         cd ../mel; PWD=`pwd` make install-nemacs EMACS=$(NEMACS)
93         make -f Makefile.bc install TMDIR=$(TMDIR18) EMACS_TYPE=nemacs
94         cd gnus; PWD=`pwd` make install-18 EMACS=$(NEMACS) TMDIR18=$(TMDIR18)
95
96 lpath-mule1:
97         ./make-lpath $(MULE1_OPT)
98
99 mule1:  lpath-mule1
100         cd ../mel; PWD=`pwd` make mule1 EMACS=$(MULE1)
101         make -f Makefile.bc all EMACS=$(MULE1) EMACS_TYPE=mule
102         cd gnus; PWD=`pwd` make gnus3 EMACS=$(MULE1)
103         cd mh-e; PWD=`pwd` \
104                 make mule1 MULE1=$(MULE1) NEMACS_MH_E=$(MULE1_MH_E)
105
106 mule1-vm: lpath-nemacs
107         make -f Makefile.bc tm-vm EMACS=$(MULE1) EMACS_TYPE=mule
108
109 install-mule1:  mule1 install-mua-18
110         cd ../mel; PWD=`pwd` make install-mule1 EMACS=$(MULE1)
111         make -f Makefile.bc install TMDIR=$(TMDIR18) EMACS_TYPE=mule
112         cd gnus; PWD=`pwd` make install-18 EMACS=$(MULE1) TMDIR18=$(TMDIR18)
113
114 install-mua-18:
115         cd mh-e; PWD=`pwd` make install-18 TMDIR18=$(TMDIR18)
116         make -f Makefile.bc install-tm-vm TMDIR=$(TMDIR18)
117
118
119 lpath-orig19:
120         ./make-lpath $(ORIG19_OPT)
121
122 orig19: lpath-orig19
123         cd ../mel; PWD=`pwd` make orig19 EMACS=$(ORIG19)
124         make -f Makefile.bc all EMACS=$(ORIG19) EMACS_TYPE=orig
125         cd gnus; PWD=`pwd` make gnus4 EMACS=$(ORIG19)
126 # If you use (ding) GNUS, please comment use following:
127 #       cd gnus; PWD=`pwd` make dgnus EMACS=$(ORIG19)
128         cd mh-e; PWD=`pwd` make orig19 ORIG19=$(ORIG19)
129
130 orig19-vm: lpath-nemacs
131         make -f Makefile.bc tm-vm EMACS=$(ORIG19) EMACS_TYPE=orig
132
133 install-orig19: orig19 install-mua-19
134         cd ../mel; PWD=`pwd` make install-orig19 EMACS=$(ORIG19)
135         make -f Makefile.bc install TMDIR=$(TMDIR19) EMACS_TYPE=orig
136         cd gnus; PWD=`pwd` make install-19 EMACS=$(ORIG19) TMDIR19=$(TMDIR19)
137
138 lpath-mule2:
139         ./make-lpath $(MULE2_OPT)
140
141 mule2:  lpath-mule2
142         cd ../mel; PWD=`pwd` make mule2 EMACS=$(MULE2)
143         make -f Makefile.bc all EMACS=$(MULE2) EMACS_TYPE=mule
144         cd gnus; PWD=`pwd` make gnus4 EMACS=$(MULE2)
145 # If you use (ding) GNUS, please comment use following:
146 #       cd gnus; PWD=`pwd` make dgnus EMACS=$(MULE2)
147         cd mh-e; PWD=`pwd` make mule2 MULE2=$(MULE2)
148
149 mule2-vm: lpath-nemacs
150         make -f Makefile.bc tm-vm EMACS=$(MULE2) EMACS_TYPE=mule
151
152 install-mule2:  mule2 install-mua-19
153         cd ../mel; PWD=`pwd` make install-mule2 EMACS=$(MULE2)
154         make -f Makefile.bc install TMDIR=$(TMDIR19) EMACS_TYPE=mule
155         cd gnus; PWD=`pwd` make install-19 EMACS=$(MULE2) TMDIR19=$(TMDIR19)
156
157 install-mua-19:
158         cd mh-e; PWD=`pwd` make install-19 TMDIR19=$(TMDIR19)
159         make -f Makefile.bc install-tm-vm TMDIR=$(TMDIR19)
160
161
162 all:    $(UTILS) $(DVI)
163
164 ol2:    ol2.c
165         $(CC) $(CFLAGS) ol2.c -o ol2
166
167 decode-b:       decode-b.c
168         $(CC) $(CFLAGS) decode-b.c -o decode-b
169
170
171 tex:    ol2
172         cd doc; make tex
173
174 dvi:    ol2
175         cd doc; make dvi
176
177 ps:     ol2
178         cd doc; make ps
179
180
181 install:        $(UTILS) methods
182         $(CP) $(UTILS) $(bindir)
183         $(CP) methods/* $(bindir)
184
185
186 clean:
187         -$(RM) $(GOMI)
188         -cd doc; make clean
189         -cd gnus; make clean
190         -cd mh-e; make clean
191
192
193 tar:
194         cd doc; make tex
195         cd ..; tar cvf $(TARFILE) $(FILES); gzip -9 $(TARFILE)