1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
|
;;; ede/proj.el --- EDE Generic Project file driver -*- lexical-binding: t; -*-
;; Copyright (C) 1998-2003, 2007-2025 Free Software Foundation, Inc.
;; Author: Eric M. Ludlam <zappo@gnu.org>
;; Keywords: project, make
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; EDE defines a method for managing a project. EDE-PROJ aims to be a
;; generic project file format based on the EIEIO object stream
;; methods. Changes in the project structure will require Makefile
;; rebuild. The targets provided in ede-proj can be augmented with
;; additional target types inherited directly from `ede-proj-target'.
(require 'ede/proj-comp)
(require 'ede/make)
(declare-function ede-proj-makefile-create "ede/pmake")
(declare-function ede-proj-configure-synchronize "ede/pconf")
(autoload 'ede-proj-target-aux "ede/proj-aux"
"Target class for a group of lisp files." nil nil)
(autoload 'ede-proj-target-elisp "ede/proj-elisp"
"Target class for a group of lisp files." nil nil)
(autoload 'ede-proj-target-elisp-autoloads "ede/proj-elisp"
"Target class for generating autoload files." nil nil)
(autoload 'ede-proj-target-scheme "ede/proj-scheme"
"Target class for a group of lisp files." nil nil)
(autoload 'ede-proj-target-makefile-miscelaneous "ede/proj-misc"
"Target class for a group of miscellaneous with a special makefile." nil nil)
(autoload 'ede-proj-target-makefile-program "ede/proj-prog"
"Target class for building a program." nil nil)
(autoload 'ede-proj-target-makefile-archive "ede/proj-archive"
"Target class for building an archive of object code." nil nil)
(autoload 'ede-proj-target-makefile-shared-object "ede/proj-shared"
"Target class for building a shared object." nil nil)
(autoload 'ede-proj-target-makefile-info "ede/proj-info"
"Target class for info files." nil nil)
(eieio-defclass-autoload 'ede-proj-target-aux '(ede-proj-target)
"ede/proj-aux"
"Target class for a group of lisp files.")
(eieio-defclass-autoload 'ede-proj-target-elisp '(ede-proj-target-makefile)
"ede/proj-elisp"
"Target class for a group of lisp files.")
(eieio-defclass-autoload 'ede-proj-target-elisp-autoloads '(ede-proj-target-elisp)
"ede/proj-elisp"
"Target class for generating autoload files.")
(eieio-defclass-autoload 'ede-proj-target-scheme '(ede-proj-target)
"ede/proj-scheme"
"Target class for a group of lisp files.")
(eieio-defclass-autoload 'ede-proj-target-makefile-miscelaneous '(ede-proj-target-makefile)
"ede/proj-misc"
"Target class for a group of miscellaneous with a special makefile.")
(eieio-defclass-autoload 'ede-proj-target-makefile-program '(ede-proj-target-makefile-objectcode)
"ede/proj-prog"
"Target class for building a program.")
(eieio-defclass-autoload 'ede-proj-target-makefile-archive '(ede-proj-target-makefile-objectcode)
"ede/proj-archive"
"Target class for building an archive of object code.")
(eieio-defclass-autoload 'ede-proj-target-makefile-shared-object '(ede-proj-target-makefile-program)
"ede/proj-shared"
"Target class for building a shared object.")
(eieio-defclass-autoload 'ede-proj-target-makefile-info '(ede-proj-target-makefile)
"ede/proj-info"
"Target class for info files.")
;; Not in ede/ , but part of semantic.
(eieio-defclass-autoload 'semantic-ede-proj-target-grammar '(ede-proj-target-elisp)
"semantic/ede-grammar"
"Target classfor Semantic grammar files.")
;;; Class Definitions:
(defclass ede-proj-target (ede-target)
((auxsource :initarg :auxsource
:initform nil
:type list
:custom (repeat (string :tag "File"))
:label "Auxiliary Source Files"
:group (default source)
:documentation "Auxiliary source files included in this target.
Each of these is considered equivalent to a source file, but it is not
distributed, and each should have a corresponding rule to build it.")
(dirty :initform nil
:type boolean
:documentation "Non-nil when generated files needs updating.")
(compiler :initarg :compiler
:initform nil
:type (or null symbol)
:custom (choice (const :tag "None" nil)
(symbol :tag "Custom Compiler Symbol")
:slotofchoices availablecompilers)
:label "Compiler for building sources"
:group make
:documentation
"The compiler to be used to compile this object.
This should be a symbol, which contains the object defining the compiler.
This enables save/restore to do so by name, permitting the sharing
of these compiler resources, and global customization thereof.")
(linker :initarg :linker
:initform nil
:type (or null symbol)
:custom (choice (const :tag "None" nil)
(symbol :tag "Custom Linker Symbol")
:slotofchoices availablelinkers)
:label "Linker for combining intermediate object files."
:group make
:documentation
"The linker to be used to link compiled sources for this object.
This should be a symbol, which contains the object defining the linker.
This enables save/restore to do so by name, permitting the sharing
of these linker resources, and global customization thereof.")
;; Class allocated slots
(phony :allocation :class
:initform nil
:type boolean
:documentation
"A phony target is one where the build target does not relate to a file.
Such targets are always built, but make knows how to deal with them..")
(availablecompilers :allocation :class
:initform nil
:type (or null list)
:documentation
"A list of `ede-compiler' objects.
These are the compilers the user can choose from when setting the
`compiler' slot.")
(availablelinkers :allocation :class
:initform nil
:type (or null list)
:documentation
"A list of `ede-linker' objects.
These are the linkers the user can choose from when setting the
`linker' slot.")
)
"Abstract class for ede-proj targets.")
(defclass ede-proj-target-makefile (ede-proj-target)
((makefile :initarg :makefile
:initform "Makefile"
:type string
:custom string
:label "Parent Makefile"
:group make
:documentation "File name of generated Makefile.")
(partofall :initarg :partofall
:initform t
:type boolean
:custom boolean
:label "Part of all: target"
:group make
:documentation
"Non-nil means the rule created is part of the all: target.
Setting this to nil creates the rule to build this item, but does not
include it in the all: rule.")
(configuration-variables
:initarg :configuration-variables
:initform nil
:type list
:custom (repeat (cons (string :tag "Configuration")
(repeat
(cons (string :tag "Name")
(string :tag "Value")))))
:label "Environment Variables for configurations"
:group make
:documentation "Makefile variables appended to use in different configurations.
These variables are used in the makefile when a configuration becomes active.
Target variables are always renamed such as foo_CFLAGS, then included into
commands where the variable would usually appear.")
(rules :initarg :rules
:initform nil
:type (list-of ede-makefile-rule)
:custom (repeat (object :objecttype ede-makefile-rule))
:label "Additional Rules"
:group (make)
:documentation
"Arbitrary rules and dependencies needed to make this target.
It is safe to leave this blank.")
)
"Abstract class for Makefile based targets.")
(defvar ede-proj-target-alist
'(("program" . ede-proj-target-makefile-program)
("archive" . ede-proj-target-makefile-archive)
("sharedobject" . ede-proj-target-makefile-shared-object)
("emacs lisp" . ede-proj-target-elisp)
("emacs lisp autoloads" . ede-proj-target-elisp-autoloads)
("info" . ede-proj-target-makefile-info)
("auxiliary" . ede-proj-target-aux)
("scheme" . ede-proj-target-scheme)
("miscellaneous" . ede-proj-target-makefile-miscelaneous)
)
"Alist of names to class types for available project target classes.")
(defun ede-proj-register-target (name class)
"Register a new target class with NAME and class symbol CLASS.
This enables the creation of your target type."
(let ((a (assoc name ede-proj-target-alist)))
(if a
(setcdr a class)
(setq ede-proj-target-alist
(cons (cons name class) ede-proj-target-alist)))))
(defclass ede-proj-project (eieio-persistent ede-project eieio-named)
((extension :initform ".ede")
(file-header-line :initform ";; EDE Project Files are auto generated: Do Not Edit")
(makefile-type :initarg :makefile-type
:initform 'Makefile
:type symbol
:custom (choice (const Makefile)
;(const Makefile.in)
(const Makefile.am)
;(const cook)
)
:documentation "The type of Makefile to generate.
Can be one of 'Makefile, 'Makefile.in, or 'Makefile.am.
If this value is NOT 'Makefile, then that overrides the :makefile slot
in targets.")
(variables :initarg :variables
:initform nil
:type list
:custom (repeat (cons (string :tag "Name")
(string :tag "Value")))
:group (settings)
:documentation "Variables to set in this Makefile.")
(configuration-variables
:initarg :configuration-variables
:initform '("debug" (("DEBUG" . "1")))
:type list
:custom (repeat (cons (string :tag "Configuration")
(repeat
(cons (string :tag "Name")
(string :tag "Value")))))
:group (settings)
:documentation "Makefile variables to use in different configurations.
These variables are used in the makefile when a configuration becomes active.")
(inference-rules :initarg :inference-rules
:initform nil
:custom (repeat
(object :objecttype ede-makefile-rule))
:documentation "Inference rules to add to the makefile.")
(include-file :initarg :include-file
:initform nil
:custom (repeat
(string :tag "Include File"))
:documentation "Additional files to include.
These files can contain additional rules, variables, and customizations.")
(automatic-dependencies
:initarg :automatic-dependencies
:initform t
:type boolean
:custom boolean
:group (default settings)
:documentation
"Non-nil to do implement automatic dependencies in the Makefile.")
(menu :initform
'(
[ "Regenerate Makefiles" ede-proj-regenerate t ]
[ "Upload Distribution" ede-upload-distribution t ]
)
)
(metasubproject
:initarg :metasubproject
:initform nil
:type boolean
:custom boolean
:group (default settings)
:documentation
"Non-nil if this is a metasubproject.
Usually, a subproject is determined by a parent project. If multiple top level
projects are grouped into a large project not maintained by EDE, then you need
to set this to non-nil. The only effect is that the `dist' rule will then avoid
making a tar file.")
)
"The EDE-PROJ project definition class.")
;;; Code:
(defun ede-proj-load (project &optional rootproj)
"Load a project file from PROJECT directory.
If optional ROOTPROJ is provided then ROOTPROJ is the root project
for the tree being read in. If ROOTPROJ is nil, then assume that
the PROJECT being read in is the root project."
(save-excursion
(let ((ret (eieio-persistent-read (concat project "Project.ede")
'ede-proj-project))
(subdirs (directory-files project nil "[^.].*" nil)))
(if (not (object-of-class-p ret 'ede-proj-project))
(error "Corrupt project file"))
(oset ret directory project)
(oset ret rootproject rootproj)
;; Load the project file of each subdirectory containing a
;; loadable Project.ede.
(while subdirs
(let ((sd (file-name-as-directory
(expand-file-name (car subdirs) project))))
(if (and (file-directory-p sd)
(file-exists-p (expand-file-name "Project.ede" sd)))
(oset ret subproj
(cons (ede-proj-load sd (or rootproj ret))
(oref ret subproj))))
(setq subdirs (cdr subdirs))))
ret)))
(defun ede-proj-save (&optional project)
"Write out object PROJECT into its file."
(save-excursion
(if (not project) (setq project (ede-current-project)))
(let ((cdir (oref project directory)))
(unwind-protect
(progn
(slot-makeunbound project :directory)
(eieio-persistent-save project))
;; Restore the directory slot
(oset project directory cdir))) ))
(cl-defmethod ede-commit-local-variables ((proj ede-proj-project))
"Commit change to local variables in PROJ."
(ede-proj-save proj))
(cl-defmethod eieio-done-customizing ((proj ede-proj-project))
"Call this when a user finishes customizing this object.
Argument PROJ is the project to save."
(cl-call-next-method)
(ede-proj-save proj))
(cl-defmethod eieio-done-customizing ((_target ede-proj-target))
"Call this when a user finishes customizing this object.
Argument TARGET is the project we are completing customization on."
(cl-call-next-method)
(ede-proj-save (ede-current-project)))
(cl-defmethod ede-commit-project ((proj ede-proj-project))
"Commit any change to PROJ to its file."
(ede-proj-save proj))
(cl-defmethod ede-buffer-mine ((this ede-proj-project) buffer)
"Return t if object THIS lays claim to the file in BUFFER."
(let ((f (ede-convert-path this (buffer-file-name buffer))))
(or (string= (file-name-nondirectory (oref this file)) f)
(string= (ede-proj-dist-makefile this) f)
(string-match "Makefile\\(\\.\\(in\\|am\\)\\)?$" f)
(string-match "config\\(ure\\.\\(in\\|ac\\)\\|\\.status\\)?$" f)
(string-match "config.h\\(\\.in\\)?" f)
(member f '("AUTHORS" "NEWS" "COPYING" "INSTALL" "README"))
)))
(cl-defmethod ede-buffer-mine ((this ede-proj-target) buffer)
"Return t if object THIS lays claim to the file in BUFFER."
(or (cl-call-next-method)
(ede-target-buffer-in-sourcelist this buffer (oref this auxsource))))
;;; EDE command functions
;;
(defvar ede-proj-target-history nil
"History when querying for a target type.")
(cl-defmethod project-new-target ((this ede-proj-project)
&optional name type autoadd)
"Create a new target in THIS based on the current buffer."
(let* ((name (or name (read-string "Name: " "")))
(type (or type
(completing-read "Type: " ede-proj-target-alist
nil t nil '(ede-proj-target-history . 1))))
(ot nil)
(src (if (and (buffer-file-name)
(if (and autoadd (stringp autoadd))
(string= autoadd "y")
(y-or-n-p (format "Add %s to %s? " (buffer-name) name))))
(buffer-file-name)))
(fcn (cdr (assoc type ede-proj-target-alist)))
)
(when (not fcn)
(error "Unknown target type %s for EDE Project" type))
(setq ot (funcall fcn name :name name
:path (ede-convert-path this default-directory)
:source (if src
(list (file-name-nondirectory src))
nil)))
;; If we added it, set the local buffer's object.
(if src (progn
(setq ede-object ot)
(ede-apply-object-keymap)))
;; Add it to the project object
;;(oset this targets (cons ot (oref this targets)))
;; New form: Add to the end using fancy eieio function.
;; @todone - Some targets probably want to be in the front.
;; How to do that?
;; @ans - See elisp autoloads for answer
(object-add-to-list this 'targets ot t)
;; And save
(ede-proj-save this)))
(cl-defmethod project-new-target-custom ((this ede-proj-project))
"Create a new target in THIS for custom."
(let* ((name (read-string "Name: " ""))
(type (completing-read "Type: " ede-proj-target-alist
nil t nil '(ede-proj-target-history . 1))))
(funcall (cdr (assoc type ede-proj-target-alist)) name :name name
:path (ede-convert-path this default-directory)
:source nil)))
(cl-defmethod project-delete-target ((this ede-proj-target))
"Delete the current target THIS from its parent project."
(let ((p (ede-current-project))
(ts (oref this source)))
;; Loop across all sources. If it exists in a buffer,
;; clear its object.
(while ts
(let* ((default-directory (oref this path))
(b (get-file-buffer (car ts))))
(if b
(with-current-buffer b
(if (eq ede-object this)
(progn
(setq ede-object nil)
(ede-apply-object-keymap))))))
(setq ts (cdr ts)))
;; Remove THIS from its parent.
;; The two vectors should be pointer equivalent.
(oset p targets (delq this (oref p targets)))
(ede-proj-save (ede-current-project))))
(cl-defmethod project-add-file ((this ede-proj-target) file)
"Add to target THIS the current buffer represented as FILE."
(let ((file (ede-convert-path this file))
(src (ede-target-sourcecode this)))
(while (and src (not (ede-want-file-p (car src) file)))
(setq src (cdr src)))
(when src
(setq src (car src))
(cond ((ede-want-file-source-p this file)
(object-add-to-list this 'source file t))
((ede-want-file-auxiliary-p this file)
(object-add-to-list this 'auxsource file t))
(t (error "`project-add-file(ede-target)' source mismatch error")))
(ede-proj-save))))
(cl-defmethod project-remove-file ((target ede-proj-target) file)
"For TARGET, remove FILE.
FILE must be massaged by `ede-convert-path'."
;; Speedy delete should be safe.
(object-remove-from-list target 'source (ede-convert-path target file))
(object-remove-from-list target 'auxsource (ede-convert-path target file))
(ede-proj-save))
(cl-defmethod project-update-version ((_this ede-proj-project))
"The :version of project THIS has changed."
(ede-proj-save))
(cl-defmethod project-make-dist ((this ede-proj-project))
"Build a distribution for the project based on THIS target."
(let ((pm (ede-proj-dist-makefile this))
(df (project-dist-files this)))
(if (and (file-exists-p (car df))
(not (y-or-n-p "Dist file already exists. Rebuild? ")))
(error "Try `ede-update-version' before making a distribution"))
(ede-proj-setup-buildenvironment this)
(if (ede-proj-automake-p this)
(setq pm (expand-file-name "Makefile"
(file-name-directory pm))))
(compile (concat ede-make-command " -f " pm " dist"))))
(cl-defmethod project-dist-files ((this ede-proj-project))
"Return a list of files that constitutes a distribution of THIS project."
(list
;; Note to self, keep this first for the above fn to check against.
(concat (oref this name) "-" (oref this version) ".tar.gz")
))
(cl-defmethod project-compile-project ((proj ede-proj-project) &optional _command)
"Compile the entire current project PROJ.
Argument COMMAND is the command to use when compiling."
(let ((pm (ede-proj-dist-makefile proj))
(default-directory (file-name-directory (oref proj file))))
(ede-proj-setup-buildenvironment proj)
(if (ede-proj-automake-p proj)
(setq pm (expand-file-name "Makefile"
(file-name-directory pm))))
(compile (concat ede-make-command" -f " pm " all"))))
;;; Target type specific compilations/debug
;;
(cl-defmethod project-compile-target ((_obj ede-proj-target) &optional command)
"Compile the current target OBJ.
Argument COMMAND is the command to use for compiling the target."
(project-compile-project (ede-current-project) command))
(cl-defmethod project-compile-target ((obj ede-proj-target-makefile)
&optional _command)
"Compile the current target program OBJ.
Optional argument COMMAND is the s the alternate command to use."
(ede-proj-setup-buildenvironment (ede-current-project))
(compile (concat ede-make-command " -f " (oref obj makefile) " "
(ede-proj-makefile-target-name obj))))
(cl-defmethod project-debug-target ((obj ede-proj-target))
"Run the current project target OBJ in a debugger."
(error "Debug-target not supported by %s" (eieio-object-name obj)))
(cl-defmethod project-run-target ((obj ede-proj-target))
"Run the current project target OBJ."
(error "Run-target not supported by %s" (eieio-object-name obj)))
(cl-defmethod ede-proj-makefile-target-name ((this ede-proj-target))
"Return the name of the main target for THIS target."
(ede-name this))
;;; Compiler and source code generators
;;
(cl-defmethod ede-want-file-auxiliary-p ((this ede-target) file)
"Return non-nil if THIS target wants FILE."
;; By default, all targets reference the source object, and let it decide.
(let ((src (ede-target-sourcecode this)))
(while (and src (not (ede-want-file-auxiliary-p (car src) file)))
(setq src (cdr src)))
src))
(cl-defmethod ede-proj-compilers ((obj ede-proj-target))
"List of compilers being used by OBJ.
If the `compiler' slot is empty, concoct one on a first match found
basis for any given type from the `availablecompilers' slot.
Otherwise, return the `compiler' slot.
Converts all symbols into the objects to be used."
(when (slot-exists-p obj 'compiler)
(let ((comp (oref obj compiler)))
(if comp
;; Now that we have a pre-set compilers to use, convert type symbols
;; into objects for ease of use
(setq comp (if (listp comp)
(mapcar #'symbol-value comp)
(list (symbol-value comp))))
(let* ((acomp (oref obj availablecompilers))
(avail (mapcar #'symbol-value acomp))
(st (oref obj sourcetype))
(sources (oref obj source)))
;; COMP is not specified, so generate a list from the available
;; compilers list.
(while st
(if (ede-want-any-source-files-p (symbol-value (car st)) sources)
(let ((c (ede-proj-find-compiler avail (car st))))
(if c (setq comp (cons c comp)))))
(setq st (cdr st)))
;; Provide a good error msg.
(unless comp
(error "Could not find compiler match for source code extension \"%s\".
You may need to add support for this type of file"
(if sources
(file-name-extension (car sources))
"")))
))
;; Return the discovered compilers.
comp)))
(cl-defmethod ede-proj-linkers ((obj ede-proj-target))
"List of linkers being used by OBJ.
If the `linker' slot is empty, concoct one on a first match found
basis for any given type from the `availablelinkers' slot.
Otherwise, return the `linker' slot.
Converts all symbols into the objects to be used."
(when (slot-exists-p obj 'linker)
(let ((link (oref obj linker)))
(if link
;; Now that we have a pre-set linkers to use, convert type symbols
;; into objects for ease of use
(if (symbolp link)
(setq link (list (symbol-value link)))
(error ":linker is not a symbol. Howd you do that?"))
(let* ((alink (oref obj availablelinkers))
(avail (mapcar #'symbol-value alink))
(st (oref obj sourcetype))
(sources (oref obj source)))
;; LINKER is not specified, so generate a list from the available
;; compilers list.
(while st
(if (ede-want-any-source-files-p (symbol-value (car st)) sources)
(let ((c (ede-proj-find-linker avail (car st))))
(if c (setq link (cons c link)))))
(setq st (cdr st)))
(unless link
;; No linker stands out! Loop over our linkers and pull out
;; the first that has no source type requirement.
(while (and avail (not (eieio-instance-inheritor-slot-boundp (car avail) 'sourcetype)))
(setq avail (cdr avail)))
(setq link (cdr avail)))))
;; Return the discovered linkers.
link)))
;;; Target type specific autogenerating gobbledygook.
;;
(defun ede-proj-makefile-type (&optional proj)
"Makefile type of the current project PROJ."
(oref (or proj (ede-current-project)) makefile-type))
(defun ede-proj-automake-p (&optional proj)
"Return non-nil if the current project PROJ is automake mode."
(eq (ede-proj-makefile-type proj) 'Makefile.am))
(defun ede-proj-autoconf-p (&optional proj)
"Return non-nil if the current project PROJ is automake mode."
(eq (ede-proj-makefile-type proj) 'Makefile.in))
(defun ede-proj-make-p (&optional proj)
"Return non-nil if the current project PROJ is automake mode."
(eq (ede-proj-makefile-type proj) 'Makefile))
(cl-defmethod ede-proj-dist-makefile ((this ede-proj-project))
"Return the name of the Makefile with the DIST target in it for THIS."
(cond ((eq (oref this makefile-type) 'Makefile.am)
(concat (file-name-directory (oref this file))
"Makefile.am"))
((eq (oref this makefile-type) 'Makefile.in)
(expand-file-name "Makefile.in"
(file-name-directory (oref this file))))
((object-assoc "Makefile" 'makefile (oref this targets))
(expand-file-name "Makefile"
(file-name-directory (oref this file))))
(t
(let ((targets (oref this targets)))
(while (and targets
(not (obj-of-class-p
(car targets)
'ede-proj-target-makefile)))
(setq targets (cdr targets)))
(if targets (oref (car targets) makefile)
(expand-file-name "Makefile"
(file-name-directory (oref this file))))))))
(defun ede-proj-regenerate ()
"Regenerate Makefiles for and edeproject project."
(interactive)
(ede-proj-setup-buildenvironment (ede-current-project) t))
(cl-defmethod ede-proj-makefile-create-maybe ((this ede-proj-project) mfilename)
"Create a Makefile for all Makefile targets in THIS if needed.
MFILENAME is the makefile to generate."
;; For now, pass through until dirty is implemented.
(require 'ede/pmake)
(if (or (not (file-exists-p mfilename))
(file-newer-than-file-p (oref this file) mfilename))
(ede-proj-makefile-create this mfilename)))
(cl-defmethod ede-proj-setup-buildenvironment ((this ede-proj-project)
&optional force)
"Setup the build environment for project THIS.
Handles the Makefile, or a Makefile.am configure.ac combination.
Optional argument FORCE will force items to be regenerated."
(if (not force)
(ede-proj-makefile-create-maybe this (ede-proj-dist-makefile this))
(require 'ede/pmake)
(ede-proj-makefile-create this (ede-proj-dist-makefile this)))
;; Rebuild all subprojects
(ede-map-subprojects
this (lambda (sproj) (ede-proj-setup-buildenvironment sproj force)))
;; Autoconf projects need to do other kinds of initializations.
(when (and (ede-proj-automake-p this)
(eq this (ede-toplevel this)))
(require 'ede/pconf)
;; If the user wants to force this, do it some other way?
(ede-proj-configure-synchronize this)
;; Now run automake to fill in the blanks, autoconf, and other
;; auto thingies so that we can just say "make" when done.
)
)
;;; Lower level overloads
;;
(cl-defmethod project-rescan ((this ede-proj-project))
"Rescan the EDE proj project THIS."
(let ((root (or (ede-project-root this) this))
)
;; @TODO - VERIFY THE BELOW WORKS
(ede-project-directory-remove-hash
(file-name-directory (ede-project-root-directory root)))
(ede-delete-project-from-global-list root)
;; NOTE : parent function double-checks that this dir was
;; already in memory once.
(ede-load-project-file (ede-project-root-directory root))
))
(provide 'ede/proj)
;;; ede/proj.el ends here
|