Add 2011 to FSF/AIST copyright years.
[emacs.git] / lisp / cedet / ede / proj-aux.el
blob7d469fe09711e6e6adc7f54197b76c78024037f1
1 ;;; ede/proj-aux.el --- EDE Generic Project auxiliary file support
3 ;; Copyright (C) 1998, 1999, 2000, 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
5 ;; Author: Eric M. Ludlam <zappo@gnu.org>
6 ;; Keywords: project, make
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 auxiliary files (README, FAQ, etc) in and EDE Project file.
27 (require 'ede/proj)
28 (require 'ede/pmake)
30 ;;; Code:
31 (defclass ede-proj-target-aux (ede-proj-target)
32 ((sourcetype :initform '(ede-aux-source)))
33 "This target consists of aux files such as READMEs and COPYING.")
35 (defvar ede-aux-source
36 (ede-sourcecode "ede-aux-source-txt"
37 :name "Auxiliary Text"
38 :sourcepattern "^[A-Z]+$\\|\\.txt$")
39 "Miscellaneous fields definition.")
41 (defmethod ede-proj-makefile-sourcevar ((this ede-proj-target-aux))
42 "Return the variable name for THIS's sources."
43 (concat (ede-pmake-varname this) "_AUX"))
45 (provide 'ede/proj-aux)
47 ;; arch-tag: 668e96e0-2b30-474e-ba3c-9fa4fa696922
48 ;;; ede/proj-aux.el ends here