Function: ede-proj-makefile-automake-insert-subdirs

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

Signature

(ede-proj-makefile-automake-insert-subdirs ARG &rest ARGS)

Implementations

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

Insert a SUBDIRS variable for Automake.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/pmake.el.gz
(cl-defmethod ede-proj-makefile-automake-insert-subdirs ((this ede-proj-project))
  "Insert a SUBDIRS variable for Automake."
  (proj-comp-insert-variable-once "SUBDIRS"
    (ede-map-subprojects
     this (lambda (sproj)
	    (insert " " (ede-subproject-relative-path sproj))
	    ))))