Function: ede-proj-makefile-insert-subproj-rules

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

Signature

(ede-proj-makefile-insert-subproj-rules ARG &rest ARGS)

Implementations

((this ede-proj-project)) in `ede/pmake.el'.

Insert a rule for the project THIS which should be a subproject.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/pmake.el.gz
;;; RULES
;;
(cl-defmethod ede-proj-makefile-insert-subproj-rules ((this ede-proj-project))
  "Insert a rule for the project THIS which should be a subproject."
  (insert ".PHONY:" (ede-name this))
  (newline)
  (insert (ede-name this) ":")
  (newline)
  (insert "\t$(MAKE) -C " (directory-file-name (ede-subproject-relative-path this)))
  (newline)
  (newline)
  )