;;; -*- Emacs-Lisp -*-
;; for byte-compile MHC

;;Code
(require 'bytecomp)

(let ((load-path (cons default-directory load-path))
      (compile-file-list '("./mhc-date.el"
			   "./mhc-misc.el"
			   "./mhc-schedule.el"
			   "./mhc-guess.el"
			   "./mhc.el")))
  (message "Compiling -----")
  (mapcar 'byte-compile-file compile-file-list))

;;; ends here
