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

(project-new-target (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.

(project-new-target (THIS ede-proj-project) &optional NAME TYPE AUTOADD) in `ede/proj.el'.

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

(project-new-target (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)))