mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-04 08:47:11 +00:00
9c4ee53115
* lisp/cedet/ede/proj-archive.el, lisp/cedet/ede/proj-aux.el: * lisp/cedet/ede/proj-elisp.el, lisp/cedet/ede/proj-info.el: * lisp/cedet/ede/proj-misc.el, lisp/cedet/ede/proj-obj.el: * lisp/cedet/ede/proj-shared.el, lisp/cedet/ede/simple.el: * lisp/cedet/ede/source.el, lisp/cedet/semantic/: * lisp/cedet/semantic/analyze.el, lisp/cedet/semantic/complete.el: * lisp/cedet/semantic/db-javascript.el: * lisp/cedet/semantic/db-ref.el, lisp/cedet/semantic/debug.el: * lisp/cedet/semantic/ede-grammar.el: * lisp/cedet/semantic/mru-bookmark.el, lisp/cedet/semantic/scope.el: * lisp/cedet/semantic/texi.el, lisp/cedet/semantic/bovine/: * lisp/cedet/semantic/bovine/c.el: * lisp/cedet/semantic/bovine/debug.el, lisp/cedet/srecode/: * lisp/cedet/srecode/extract.el, lisp/cedet/srecode/map.el: * lisp/cedet/srecode/srt-mode.el: Remove obsolete name args to constructors.
64 lines
2.2 KiB
EmacsLisp
64 lines
2.2 KiB
EmacsLisp
;;; ede/proj-archive.el --- EDE Generic Project archive support
|
|
|
|
;; Copyright (C) 1998-2001, 2009-2018 Free Software Foundation, Inc.
|
|
|
|
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
|
;; Keywords: project, make
|
|
|
|
;; 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:
|
|
;;
|
|
;; Handle object code archives in and EDE Project file.
|
|
|
|
(require 'ede/pmake)
|
|
(require 'ede/proj-obj)
|
|
|
|
;;; Code:
|
|
|
|
(defclass ede-proj-target-makefile-archive
|
|
(ede-proj-target-makefile-objectcode)
|
|
((availablelinkers :initform '(ede-archive-linker)))
|
|
"This target generates an object code archive.")
|
|
|
|
(defvar ede-archive-linker
|
|
(ede-linker
|
|
:name "ar"
|
|
:variables '(("AR" . "ar")
|
|
("AR_CMD" . "$(AR) cr"))
|
|
:commands '("$(AR_CMD) lib$@.a $^")
|
|
:autoconf '(("AC_CHECK_PROGS" . "RANLIB, ranlib"))
|
|
:objectextention "")
|
|
"Linker object for creating an archive.")
|
|
|
|
(cl-defmethod ede-proj-makefile-insert-source-variables :before
|
|
((this ede-proj-target-makefile-archive) &optional moresource)
|
|
"Insert bin_PROGRAMS variables needed by target THIS.
|
|
We aren't actually inserting SOURCE details, but this is used by the
|
|
Makefile.am generator, so use it to add this important bin program."
|
|
(ede-pmake-insert-variable-shared
|
|
(concat "lib" (ede-name this) "_a_LIBRARIES")
|
|
(insert (concat "lib" (ede-name this) ".a"))))
|
|
|
|
(cl-defmethod ede-proj-makefile-garbage-patterns
|
|
((this ede-proj-target-makefile-archive))
|
|
"Add archive name to the garbage patterns.
|
|
This makes sure that the archive is removed with `make clean'."
|
|
(let ((garb (cl-call-next-method)))
|
|
(append garb (list (concat "lib" (ede-name this) ".a")))))
|
|
|
|
(provide 'ede/proj-archive)
|
|
|
|
;;; ede/proj-archive.el ends here
|