diff options
Diffstat (limited to 'lisp/cedet/ede/proj-misc.el')
| -rw-r--r-- | lisp/cedet/ede/proj-misc.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/ede/proj-misc.el b/lisp/cedet/ede/proj-misc.el index badd507d954..c04c9bd78cc 100644 --- a/lisp/cedet/ede/proj-misc.el +++ b/lisp/cedet/ede/proj-misc.el @@ -1,6 +1,6 @@ ;;; ede-proj-misc.el --- EDE Generic Project Emacs Lisp support -;; Copyright (C) 1998-2001, 2008-2013 Free Software Foundation, Inc. +;; Copyright (C) 1998-2001, 2008-2015 Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <zappo@gnu.org> ;; Keywords: project, make @@ -65,11 +65,11 @@ All listed sources are included in the distribution.") ) "Compile code via a sub-makefile.") -(defmethod ede-proj-makefile-sourcevar ((this ede-proj-target-makefile-miscelaneous)) +(cl-defmethod ede-proj-makefile-sourcevar ((this ede-proj-target-makefile-miscelaneous)) "Return the variable name for THIS's sources." (concat (ede-pmake-varname this) "_MISC")) -(defmethod ede-proj-makefile-dependency-files +(cl-defmethod ede-proj-makefile-dependency-files ((this ede-proj-target-makefile-miscelaneous)) "Return a list of files which THIS target depends on." (with-slots (submakefile) this @@ -79,7 +79,7 @@ All listed sources are included in the distribution.") nil) (t (list submakefile))))) -(defmethod ede-proj-makefile-insert-rules ((this ede-proj-target-makefile-miscelaneous)) +(cl-defmethod ede-proj-makefile-insert-rules ((this ede-proj-target-makefile-miscelaneous)) "Create the make rule needed to create an archive for THIS." ;; DO NOT call the next method. We will never have any compilers, ;; or any dependencies, or stuff like this. This rule will let us |
