Variable: makefile-makepp-rule-action-regex
makefile-makepp-rule-action-regex is a variable defined in
make-mode.el.gz.
Value
"^ [ ]*\\(\\(?:\\(?:noecho\\|ignore[-_]error\\|[-@]+\\)[ ]*\\)*\\)\\(\\(&\\S +\\)?\\(?:.*\\\\\n\\)*.*\\)"
Documentation
Regex used to highlight makepp rule action lines in font lock mode.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defconst makefile-makepp-rule-action-regex
;; Don't care about initial tab, but I don't know how to font-lock correctly without.
"^\t[ \t]*\\(\\(?:\\(?:noecho\\|ignore[-_]error\\|[-@]+\\)[ \t]*\\)*\\)\\(\\(&\\S +\\)?\\(?:.*\\\\\n\\)*.*\\)"
"Regex used to highlight makepp rule action lines in font lock mode.")