Function: vhdl-makefile-name

vhdl-makefile-name is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-makefile-name)

Documentation

Return the Makefile name of the current project or the current compiler if no project is defined.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-makefile-name ()
  "Return the Makefile name of the current project or the current compiler if
no project is defined."
  (let ((project-alist (vhdl-aget vhdl-project-alist vhdl-project))
	(compiler-alist (vhdl-aget vhdl-compiler-alist vhdl-compiler)))
    (vhdl-replace-string
     (cons "\\(.*\\)\n\\(.*\\)"
	   (or (nth 8 project-alist) (nth 8 compiler-alist)))
     (concat (nth 9 compiler-alist) "\n" (nth 6 project-alist)))))