Nabe 0.2.
[elisp/nabe.git] / NABE-CFG
1 ;;; -*-Emacs-Lisp-*-
2 ;;;
3 ;;; $Id: NABE-CFG,v 0.4 1997/02/28 04:14:50 tmorioka Exp morioka $
4 ;;;
5
6 (setq load-path (append
7                  (mapcar (function
8                           (lambda (path)
9                             (expand-file-name path (getenv "PWD"))
10                             ))
11                          '("." "../apel" "../emu")
12                          )
13                  load-path))
14
15 (require 'install)
16
17
18 ;;; @ Please specify prefix of install directory.
19 ;;;
20
21 ;; Please specify install path prefix.
22 ;; If it is omitted, shared directory (maybe /usr/local is used).
23 (defvar PREFIX install-prefix)
24 ;;(setq PREFIX "~/")
25
26 ;; Please specify prefix for ``nabe'' [optional]
27 (setq NABE_PREFIX "nabe")
28
29 \f
30
31 ;;; @ optional settings
32 ;;;
33
34 ;; It is generated by automatically. Please set variable `PREFIX'.
35 ;; If you don't like default directory tree, please set it.
36 (defvar LISPDIR (install-detect-elisp-directory PREFIX))
37 ;; (setq install-default-elisp-directory "~/lib/emacs/lisp")
38
39 (setq NABE_DIR (expand-file-name NABE_PREFIX LISPDIR))
40
41 ;;; NABE-CFG ends here