Function: makefile-imake-mode

makefile-imake-mode is an autoloaded, interactive and byte-compiled function defined in make-mode.el.gz.

Signature

(makefile-imake-mode)

Documentation

An adapted makefile-mode that knows about imake.

In addition to any hooks its parent mode might have run, this mode runs the hook makefile-imake-mode-hook, as the final or penultimate step during initialization.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
;;;###autoload
(define-derived-mode makefile-imake-mode makefile-mode "Imakefile"
  "An adapted `makefile-mode' that knows about imake."
  :syntax-table makefile-imake-mode-syntax-table
  (setq-local syntax-propertize-function nil)
  (setq font-lock-defaults
        `(makefile-imake-font-lock-keywords ,@(cdr font-lock-defaults))))