Function: makefile-makepp-mode

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

Signature

(makefile-makepp-mode)

Documentation

An adapted makefile-mode that knows about makepp.

In addition to any hooks its parent mode might have run, this mode runs the hook makefile-makepp-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-makepp-mode makefile-mode "Makeppfile"
  "An adapted `makefile-mode' that knows about makepp."
  (setq-local makefile-rule-action-regex makefile-makepp-rule-action-regex)
  (setq font-lock-defaults
	`(makefile-makepp-font-lock-keywords ,@(cdr font-lock-defaults))
	imenu-generic-expression
	`(("Functions" "^[ \t]*\\(?:make\\)?sub[ \t]+\\([A-Za-z0-9_]+\\)" 1)
	  ,@imenu-generic-expression)))