Variable: vhdl-makefile-default-targets

vhdl-makefile-default-targets is a customizable variable defined in vhdl-mode.el.gz.

Value

("all" "clean" "library")

Documentation

List of default target names in Makefiles.

Automatically generated Makefiles include three default targets to compile the entire design, clean the entire design and to create the design library. This option allows you to change the names of these targets to avoid conflicts with other user Makefiles.

This variable was added, or its default value changed, in Emacs 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-makefile-default-targets '("all" "clean" "library")
  "List of default target names in Makefiles.
Automatically generated Makefiles include three default targets to compile
the entire design, clean the entire design and to create the design library.
This option allows you to change the names of these targets to avoid conflicts
with other user Makefiles."
  :type '(list (string :tag "Compile entire design")
	       (string :tag "Clean entire design  ")
	       (string :tag "Create design library"))
  :version "24.3"
  :group 'vhdl-compile)