;;; -*-Emacs-Lisp-*- ;;; ;;; $Id: EMH-MK,v 0.1 1997-05-15 06:47:02 morioka Exp $ ;;; (defun config-emh () (let (prefix lisp-dir) (and (setq prefix (car command-line-args-left)) (or (string-equal "NONE" prefix) (defvar PREFIX prefix) )) (setq command-line-args-left (cdr command-line-args-left)) (and (setq lisp-dir (car command-line-args-left)) (or (string-equal "NONE" lisp-dir) (defvar LISPDIR lisp-dir) )) (load-file "EMH-CFG") (load-file "EMH-ELS") (princ (format "PREFIX=%s LISPDIR=%s\n" PREFIX LISPDIR)) )) (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