--- /dev/null
+;;; -*-Emacs-Lisp-*-
+;;;
+;;; $Id: EMH-MK,v 0.0 1997-03-18 16:34:00 morioka Exp $
+;;;
+
+(defun config-emh ()
+ (let (prefix)
+ (setq prefix (car command-line-args-left))
+ (and prefix
+ (not (string-equal "NONE" prefix))
+ (progn
+ (defvar PREFIX prefix)
+ (setq command-line-args-left (cdr command-line-args-left))
+ ))
+ (load-file "EMH-CFG")
+ (load-file "EMH-ELS")
+ (princ (format "PREFIX=%s\n" PREFIX))
+ ))
+
+(defun compile-emh ()
+ (config-emh)
+ (compile-elisp-modules emh-modules ".")
+ )
+
+(defun install-emh ()
+ (config-emh)
+ (install-elisp-modules emh-modules "./" EMH_DIR)
+ )
+
+;;; EMH-MK ends here