Function: project-compile-target

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

Signature

(project-compile-target ARG &rest ARGS)

Implementations

(project-compile-target (OBJ semantic-ede-proj-target-grammar)) in `semantic/ede-grammar.el'.

Compile all sources in a Lisp target OBJ.

(project-compile-target (OBJ project-am-target) &optional COMMAND) in `ede/project-am.el'.

Compile the current target. Argument COMMAND is the command to use for compiling the target.

(project-compile-target (OBJ ede-proj-target-elisp-autoloads)) in `ede/proj-elisp.el'.

Create or update the autoload target.

(project-compile-target (OBJ ede-proj-target-elisp)) in `ede/proj-elisp.el'.

Compile all sources in a Lisp target OBJ. Bonus: Return a cons cell: (COMPILED . UPTODATE).

(project-compile-target (OBJ ede-proj-target-makefile) &optional COMMAND) in `ede/proj.el'.

Compile the current target program OBJ. Optional argument COMMAND is the s the alternate command to use.

(project-compile-target (OBJ ede-proj-target) &optional COMMAND) in `ede/proj.el'.

Compile the current target OBJ. Argument COMMAND is the command to use for compiling the target.

(project-compile-target (OBJ ede-linux-target-c) &optional COMMAND) in `ede/linux.el'.

Compile the current target. Argument COMMAND is the command to use for compiling the target.

(project-compile-target (OBJ ede-cpp-root-target) &optional COMMAND) in `ede/cpp-root.el'.

Compile the current target OBJ. Argument COMMAND is the command to use for compiling the target.

(project-compile-target (OBJ ede-target-with-config-build) &optional COMMAND) in `ede/config.el'.

Compile the current target OBJ. Argument COMMAND is the command to use for compiling the target.

(project-compile-target (OBJ ede-target) &optional COMMAND) in `ede.el'.

Compile the current target OBJ. Argument COMMAND is the command to use for compiling the target.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(cl-defmethod project-compile-target ((obj ede-target) &optional _command)
  "Compile the current target OBJ.
Argument COMMAND is the command to use for compiling the target."
  (error "compile-target not supported by %s" (eieio-object-name obj)))