tm 7.99.
[elisp/tm.git] / TM-ELS
1 ;;; -*-Emacs-Lisp-*-
2 ;;;
3 ;;; $Id: TM-ELS,v 7.5 1996/12/10 08:29:42 morioka Exp $
4 ;;;
5
6 (setq tm-modules-to-compile
7       '(signature
8         tm-def
9         tm-ew-d tm-parse tm-view tm-text tm-play tm-partial
10         tm-latex tm-html tm-tar tm-file
11         tm-ew-e tm-edit
12         tm-setup))
13
14 (setq tm-modules-not-to-compile '(sc-setup))
15
16 (mapcar (function
17          (lambda (cell)
18            (let ((c-module (car cell))
19                  (i-modules (cdr cell))
20                  )
21              (if (module-installed-p c-module)
22                  (setq tm-modules-to-compile
23                        (nconc tm-modules-to-compile i-modules))
24                (setq tm-modules-not-to-compile
25                      (nconc tm-modules-not-to-compile i-modules))
26                )
27              )))
28         '((ange-ftp     tm-ftp)
29           (mailcrypt    tm-pgp tm-edit-mc)
30           (bbdb         tm-bbdb)
31           (tinypgpa     tm-edit-tipgp)
32           ))
33
34 (if (and (file-exists-p "tm-evs.el")
35          (or (boundp 'MULE)
36              (boundp 'NEMACS))
37          )
38     (setq tm-modules-to-compile (nconc tm-modules-to-compile '(tm-evs)))
39   )
40
41 (if (or (string-match "XEmacs" emacs-version)
42         (featurep 'mule))
43     (setq tm-modules-to-compile (nconc tm-modules-to-compile '(tm-image)))
44   )
45
46 (setq tm-modules (append tm-modules-to-compile
47                          tm-modules-not-to-compile))
48
49 ;;; TM-ELS ends here