makefile-imake-font-lock-keywords

makefile-imake-font-lock-keywords is a variable defined in `make-mode.el'.
Its value is shown below.
  • This variable may be risky if used as a file-local variable.

Documentation:
Not documented as a variable.

Value:

(("\\(?:^\\|^export\\|^override\\|:\\|: *override\\) *\\([^ \n ][^:#= \n]*\\)[ ]*\\(?:!=\\|[*:+]?[:?]?=\\)" (1 font-lock-variable-name-face) (2 'makefile-shell prepend t) (3 'font-lock-string-face prepend t)) (makefile-match-action (1 font-lock-type-face nil t) (2 'makefile-shell prepend) (3 font-lock-builtin-face prepend t)) ("[^$]\\$[({]\\([-a-zA-Z0-9_.]+\\|[@%\\)" 1 font-lock-constant-face prepend) ("[^$]\\(\\$[@%*]\\)" 1 'makefile-targets append) ("^\\(?: [ ]*\\)?\\(include\\)\\>[ ]*\\([^: \n#]*\\)" (1 font-lock-keyword-face) (2 font-lock-variable-name-face)) ("^[ ]+$" . makefile-space) ("^ +#" 0 makefile-space t) ("^\\( +\\) " 1 makefile-space) ("^XCOMM.*$" . font-lock-comment-face) ("XVAR\\(?:use\\|def\\)[0-9]" 0 font-lock-keyword-face prepend) ("@@" . font-lock-preprocessor-face) (makefile-match-dependency (1 'makefile-targets prepend) (3 'makefile-shell prepend t)) ("^#[ ]*\\(?:error\\|warning\\)[ ]+\\(.+\\)" 1 font-lock-warning-face prepend) ("^#[ ]*\\(?:import\\|include\\)[ ]*\\(<[^>\"\n]*>?\\)" 1 font-lock-string-face prepend) ("^#[ ]*define[ ]+\\([[:alpha:]_][[:alnum:]_$]*\\)(" (1 font-lock-function-name-face prepend) ((lambda (limit) (re-search-forward "\\(?:\\([[:alpha:]_][[:alnum:]_]*\\)[,]?\\)" (or (save-excursion (re-search-forward ")" limit t)) limit) t)) nil nil (1 font-lock-variable-name-face prepend))) ("^#[ ]*\\(?:elif\\|if\\)\\>" ("\\<\\(defined\\)\\>[ ]*(?\\([[:alpha:]_][[:alnum:]_]*\\)?" nil nil (1 font-lock-builtin-face prepend) (2 font-lock-variable-name-face prepend t))) ("^\\(#[ ]*\\(?:define\\|e\\(?:l\\(?:if\\|se\\)\\|ndif\\|rror\\)\\|file\\|i\\(?:f\\(?:n?def\\)?\\|mport\\|nclude\\)\\|line\\|pragma\\|undef\\|warning\\)\\)\\>[ !]*\\([[:alpha:]_][[:alnum:]_]*\\)?" (1 font-lock-preprocessor-face prepend) (2 font-lock-variable-name-face nil t)))