Function: ede-proj-makefile-insert-dist-dependencies

ede-proj-makefile-insert-dist-dependencies is a byte-compiled function defined in pmake.el.gz.

Signature

(ede-proj-makefile-insert-dist-dependencies ARG &rest ARGS)

Implementations

(ede-proj-makefile-insert-dist-dependencies (THIS semantic-ede-proj-target-grammar)) in `semantic/ede-grammar.el'.

Undocumented

(ede-proj-makefile-insert-dist-dependencies (THIS ede-proj-target-makefile-info)) in `ede/proj-info.el'.

Insert any symbols that the DIST rule should depend on. Texinfo files want to insert generated `.info' files. Argument THIS is the target which needs to insert an info file.

(ede-proj-makefile-insert-dist-dependencies (THIS ede-proj-target-elisp-autoloads)) in `ede/proj-elisp.el'.

Insert any symbols that the DIST rule should depend on. Emacs Lisp autoload files ship the generated .el files. Argument THIS is the target which needs to insert an info file.

(ede-proj-makefile-insert-dist-dependencies (THIS ede-proj-target)) in `ede/pmake.el'.

Insert any symbols that the DIST rule should depend on. Argument THIS is the target that should insert stuff.

(ede-proj-makefile-insert-dist-dependencies (THIS ede-proj-project)) in `ede/pmake.el'.

Insert any symbols that the DIST rule should depend on. Argument THIS is the project that should insert stuff.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/pmake.el.gz
(cl-defmethod ede-proj-makefile-insert-dist-dependencies ((this ede-proj-project))
  "Insert any symbols that the DIST rule should depend on.
Argument THIS is the project that should insert stuff."
  (mapc #'ede-proj-makefile-insert-dist-dependencies (oref this targets))
  )