Variable: makefile-runtime-macros-list

makefile-runtime-macros-list is a customizable variable defined in make-mode.el.gz.

Value

(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$"))

Documentation

List of macros that are resolved by make at runtime.

If you insert a macro reference using makefile-insert-macro-ref, the name of the macro is checked against this list. If it can be found its name will not be enclosed in { } or ( ).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defcustom makefile-runtime-macros-list
  '(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$"))
  "List of macros that are resolved by make at runtime.
If you insert a macro reference using `makefile-insert-macro-ref', the name
of the macro is checked against this list.  If it can be found its name will
not be enclosed in { } or ( )."
  :type '(repeat (list string)))