Function: project-am-load
project-am-load is a byte-compiled function defined in
project-am.el.gz.
Signature
(project-am-load DIRECTORY &optional ROOTPROJ)
Documentation
Read an automakefile DIRECTORY into our data structure.
If a given set of projects has already been loaded, then do nothing but return the project for the directory given. Optional ROOTPROJ is the root EDE project.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/project-am.el.gz
;;; Project loading and saving
;;
(defun project-am-load (directory &optional _rootproj)
"Read an automakefile DIRECTORY into our data structure.
If a given set of projects has already been loaded, then do nothing
but return the project for the directory given.
Optional ROOTPROJ is the root EDE project."
;; Just jump into creating the project from the Makefiles.
(project-am-load-makefile directory))