Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / cedet / ede / proj-scheme.el
blob20e8835539518d2d74492820be4fa717f889619a
1 ;;; ede/proj-scheme.el --- EDE Generic Project scheme (guile) support
3 ;; Copyright (C) 1998-2000, 2009-2014 Free Software Foundation, Inc.
5 ;; Author: Eric M. Ludlam <zappo@gnu.org>
6 ;; Keywords: project, make, scheme
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Handle scheme (Guile) in and EDE Project file.
26 ;; This is a specialized do nothing class.
28 (require 'ede/proj)
29 (require 'ede/autoconf-edit)
31 ;;; Code:
32 (defclass ede-proj-target-scheme (ede-proj-target)
33 ((menu :initform nil)
34 (keybindings :initform nil)
35 (interpreter :initarg :interpreter
36 :initform "guile"
37 :type string
38 :custom string
39 :documentation "The preferred interpreter for this code.")
41 "This target consists of scheme files.")
43 (defmethod ede-proj-tweak-autoconf ((this ede-proj-target-scheme))
44 "Tweak the configure file (current buffer) to accommodate THIS."
45 (autoconf-insert-new-macro "AM_INIT_GUILE_MODULE"))
47 (provide 'ede/proj-scheme)
49 ;;; ede/proj-scheme.el ends here