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