update.
[elisp/apel.git] / APEL-CFG
1 ;;; APEL-CFG --- user customizations for APEL installation. -*-Emacs-Lisp-*-
2
3 ;;; Commentary:
4
5 ;; Use this file to override variables defined in APEL-MK.
6
7 ;;; Code:
8
9 ;;; "custom" library.
10
11 ;; If you use "new custom" but do not use "subdirs.el" to add "custom"
12 ;; to your load-path, uncomment and edit this.
13 ;; (add-latest-path "custom")
14
15
16 ;;; Install to home directory.
17
18 ;; If you want to install APEL to home directory and you already have
19 ;; the standard hierarchy such as "~/share/emacs/site-lisp" and
20 ;; "~/share/emacs/VERSION/site-lisp", uncomment and edit this.
21 ;; (setq PREFIX "~/")
22
23 ;; Or, you can specify APEL_DIR and EMU_DIR directly.
24 ;; (setq APEL_DIR "~/lib/emacs/lisp/apel")
25 ;; (setq EMU_DIR "~/lib/emacs/lisp/emu")
26
27
28 ;;; Install to site-lisp directories.
29
30 ;; (setq APEL_PREFIX "apel")
31 ;; (setq EMU_PREFIX "emu")
32
33 ;; (setq PREFIX "/usr/local")
34
35 ;; Mule based on Emacs 19.28 and eariler.
36 ;; (setq LISPDIR "/usr/local/share/mule/site-lisp")
37 ;; Mule based on Emacs 19.29 and later.
38 ;; (setq LISPDIR "/usr/local/share/emacs/site-lisp")
39 ;; (setq LISPDIR "/usr/local/share/mule/site-lisp")
40 ;; (setq VERSION_SPECIFIC_LISPDIR "/usr/local/share/emacs/19.34/site-lisp")
41 ;; (setq VERSION_SPECIFIC_LISPDIR "/usr/local/share/mule/19.34/site-lisp")
42
43 ;; XXX: Needs PACKAGEDIR example. FIXME!
44 ;; (setq PACKAGEDIR "")
45
46 ;; If you want to install all of APEL files to VERSION_SPECIFIC_LISPDIR,
47 ;; uncomment this.
48 ;; (setq APEL_DIR (expand-file-name APEL_PREFIX VERSION_SPECIFIC_LISPDIR))
49
50 ;; You can specify APEL_DIR and EMU_DIR directly.
51 ;; (setq APEL_DIR (expand-file-name APEL_PREFIX LISPDIR))
52 ;; (setq EMU_DIR (expand-file-name EMU_PREFIX VERSION_SPECIFIC_LISPDIR))
53
54 ;;; APEL-CFG ends here