Function: ede-new-target
ede-new-target is an interactive and byte-compiled function defined in
ede.el.gz.
Signature
(ede-new-target &rest ARGS)
Documentation
Create a new target specific to this type of project file.
Different projects accept different arguments ARGS. Typically you can specify NAME, target TYPE, and AUTOADD, where AUTOADD is a string "y" or "n", which answers the y/n question done interactively.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(defun ede-new-target (&rest args)
"Create a new target specific to this type of project file.
Different projects accept different arguments ARGS.
Typically you can specify NAME, target TYPE, and AUTOADD, where AUTOADD is
a string \"y\" or \"n\", which answers the y/n question done interactively."
(interactive)
(apply #'project-new-target (ede-current-project) args)
(when (and buffer-file-name
(not (file-directory-p buffer-file-name)))
(setq ede-object nil)
(setq ede-object (ede-buffer-object (current-buffer)))
(ede-apply-target-options)))