tm 7.69.
[elisp/tm.git] / mh-e / Makefile
1 #
2 # $Id: Makefile,v 6.3 1996/01/18 10:31:49 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 EMACS   = mule
12 FLAGS   = -batch -q -no-site-file -l mk-tmh
13
14
15 # Please specfy Emacs Lisp install directory:
16 #       TMDIR18 = for Emacs 18.* (NEMACS, NEpoch or MULE 1)
17 #       TMDIR19 = for Emacs 19.* (FSF original, XEmacs or MULE 2)
18
19 # TMDIR18 = /usr/local/lib/emacs/local.lisp/tm
20 # TMDIR19 = /usr/local/lib/mule/site-lisp
21
22 TMDIR18 = $(HOME)/lib/emacs18/lisp
23 TMDIR19 = $(HOME)/lib/emacs19/lisp
24
25
26 FILES   = tm/mh-e/*.el tm/mh-e/Makefile tm/mh-e/mk-tmh tm/mh-e/*.ol
27 TARFILE = tm-mh-e7.63.1.tar
28
29
30 elc:
31         $(EMACS) $(FLAGS) -f compile-tm-mh-e
32
33 install-18:
34         $(EMACS) $(FLAGS) -f install-tm-mh-e $(TMDIR18)
35
36 install-19:
37         $(EMACS) $(FLAGS) -f install-tm-mh-e $(TMDIR19)
38
39
40 clean:
41         -rm *.elc
42
43
44 tar:
45         cd ../..; tar cvf $(TARFILE) $(FILES); gzip -9 $(TARFILE)