New files.
[chise/tomoyo-tools.git] / TOMOYO-CFG
1 ;;; -*-Emacs-Lisp-*-
2
3 ;; TOMOYO-CFG: installation setting about TOMOYO.
4
5 ;;; Code:
6
7 (require 'install)
8
9
10 ;;; @ Please specify prefix of install directory.
11 ;;;
12
13 ;; Please specify TOMOYO prefix [optional]
14 (setq TOMOYO_PREFIX "tomoyo-tools")
15
16
17 \f
18
19 ;;; @ optional settings
20 ;;;
21
22 (defvar PACKAGEDIR
23   (if (boundp 'early-packages)
24       (let ((dirs (append (if early-package-load-path
25                               early-packages)
26                           (if late-package-load-path
27                               late-packages)
28                           (if last-package-load-path
29                               last-packages)))
30             dir)
31         (while (not (file-exists-p
32                      (setq dir (car dirs))))
33           (setq dirs (cdr dirs)))
34         dir)))
35
36 ;;; TOMOYO-CFG ends here