From: tomo Date: Tue, 4 Jun 2002 03:19:38 +0000 (+0000) Subject: New files. X-Git-Tag: Emacs-21_2-LEMI-1_14-0~2 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df18bae821b2fd5d2be8bf9aee240f91c77bd497;p=elisp%2Flemi.git New files. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d27eb07 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +# +# Makefile for LEIM +# + +EMACS = emacs +FLAGS = -batch -q -no-site-file -l lemi-path.el +RM = /bin/rm -f + +GARBAGES = */*.elc + +elc: + $(EMACS) $(FLAGS) -f batch-byte-compile */*.el + +clean: + -$(RM) $(GARBAGES) diff --git a/lemi-path.el b/lemi-path.el new file mode 100644 index 0000000..865b310 --- /dev/null +++ b/lemi-path.el @@ -0,0 +1,6 @@ +(add-to-list 'load-path (expand-file-name ".")) +(add-to-list 'load-path (expand-file-name "poe")) +(add-to-list 'load-path (expand-file-name "emacs-lisp")) +(add-to-list 'load-path (expand-file-name "mail")) +(add-to-list 'load-path (expand-file-name "mime")) +(princ (format "load-path = %S\n" load-path))