update.
[elisp/emh.git] / EMH-CFG
1 ;;; -*-Emacs-Lisp-*-
2 ;;;
3 ;;; $Id: EMH-CFG,v 0.3 1997-11-15 15:22:38 morioka Exp $
4 ;;;
5
6 (defvar default-load-path load-path)
7
8 (cond ((boundp 'LISPDIR)
9        (add-to-list 'default-load-path LISPDIR)
10        (add-to-list 'load-path LISPDIR)
11        (add-to-list 'load-path (expand-file-name "apel" LISPDIR))
12        )
13       (t
14        (add-to-list 'load-path
15                     (expand-file-name "../../site-lisp/apel" data-directory))
16        ))
17
18 (require 'install)
19
20 (add-path "mel")
21 (add-path "semi")
22 (add-path ".")
23
24
25 ;;; @ Please specify prefix of install directory.
26 ;;;
27
28 ;; Please specify install path prefix.
29 ;; If it is omitted, shared directory (maybe /usr/local is used).
30 (defvar PREFIX install-prefix)
31 ;;(setq PREFIX "~/")
32
33 ;; Please specify prefix for ``emh'' [optional]
34 (setq EMH_PREFIX "semi")
35
36 \f
37
38 ;;; @ optional settings
39 ;;;
40
41 ;; It is generated by automatically. Please set variable `PREFIX'.
42 ;; If you don't like default directory tree, please set it.
43 (defvar LISPDIR (install-detect-elisp-directory PREFIX))
44 ;; (setq install-default-elisp-directory "~/lib/emacs/lisp")
45
46 (setq EMH_DIR (expand-file-name EMH_PREFIX LISPDIR))
47
48 ;;; EMH-CFG ends here