;;; -*- Emacs-Lisp -*-
;; for byte-compile html-helper-mode

;;; Code
(require 'bytecomp)

(let ((load-path (cons default-directory load-path))
      (compile-file-list '("./tempo.el"
			   "./html-helper-mode.el")))
  (message "Compiling -----")
  (mapcar 'byte-compile-file compile-file-list))

;;; ends here