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

((this semantic-ede-proj-target-grammar)) in `semantic/ede-grammar.el'.

Insert dist dependencies, or intermediate targets. This makes sure that all grammar Lisp files are created before the dist runs, so they are always up to date. Argument THIS is the target that should insert stuff.

((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.

((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.

((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.

((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))
  )