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

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

Signature

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

Implementations

(ede-proj-makefile-insert-dist-filepatterns (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-filepatterns (THIS ede-proj-target-elisp-autoloads)) in `ede/proj-elisp.el'.

Insert any symbols that the DIST rule should distribute. 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-filepatterns (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.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/pmake.el.gz
(cl-defmethod ede-proj-makefile-insert-dist-filepatterns ((this ede-proj-target))
  "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)
  )