New files.
authortomo <tomo>
Tue, 4 Jun 2002 03:19:38 +0000 (03:19 +0000)
committertomo <tomo>
Tue, 4 Jun 2002 03:19:38 +0000 (03:19 +0000)
Makefile [new file with mode: 0644]
lemi-path.el [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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 (file)
index 0000000..865b310
--- /dev/null
@@ -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))