Function: project-new-target

project-new-target is a byte-compiled function defined in ede.el.gz.

Signature

(project-new-target ARG &rest ARGS)

Implementations

((proj project-am-makefile) &optional name type) in `ede/project-am.el'.

Create a new target named NAME. Argument TYPE is the type of target to insert. This is a string matching something in `project-am-type-alist' or type class symbol. Despite the fact that this is a method, it depends on the current buffer being in order to provide a smart default target type.

((this ede-proj-project) &optional name type autoadd) in `ede/proj.el'.

Create a new target in THIS based on the current buffer.

((proj ede-project) &rest args) in `ede.el'.

Create a new target. It is up to the project PROJ to get the name.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(cl-defmethod project-new-target ((proj ede-project) &rest _args)
  "Create a new target.  It is up to the project PROJ to get the name."
  (error "new-target not supported by %s" (eieio-object-name proj)))