Variable: vhdl-makefile-generation-hook
vhdl-makefile-generation-hook is a customizable variable defined in
vhdl-mode.el.gz.
Value
nil
Documentation
Functions to run at the end of Makefile generation.
Allows you to insert user specific parts into a Makefile.
Example:
(lambda nil
(re-search-backward "^# Rule for compiling entire design")
(insert "# My target\\n\\n.MY_TARGET :\\n\\n\\n"))
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-makefile-generation-hook nil
"Functions to run at the end of Makefile generation.
Allows you to insert user specific parts into a Makefile.
Example:
(lambda nil
(re-search-backward \"^# Rule for compiling entire design\")
(insert \"# My target\\n\\n.MY_TARGET :\\n\\n\\n\"))"
:type 'hook
:group 'vhdl-compile)