Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / etc / srecode / ede-autoconf.srt
blob13e86148fe936c4fbc7fc7205dc946d5ed684daa
1 ;;; ede/templates/autoconf.srt --- Templates for autoconf used by EDE
3 ;; Copyright (C) 2010, 2012-2014 Free Software Foundation, Inc.
5 ;; Author: Eric M. Ludlam <eric@siege-engine.com>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22 set mode "autoconf-mode"
23 set escape_start "{{"
24 set escape_end "}}"
25 set comment_start "#"
26 set comment_prefix "#"
27 set application "ede"
29 context file
31 template ede-empty :project
32 "Start a new EDE generated configure.in/ac file."
33 ----
34 {{comment_prefix}} Automatically Generated/Maintained {{FILE}} by EDE.
35 {{comment_prefix}}
36 {{comment_prefix}} YOU MAY MODIFY THIS FILE
37 {{comment_prefix}} Hand made changes in some sections will be preserved
38 {{comment_prefix}} by EDE when this file is updated.
39 {{comment_prefix}}
40 {{comment_prefix}} EDE is the Emacs Development Environment.
41 {{comment_prefix}} http://cedet.sourceforge.net/ede.shtml
42 {{comment_prefix}}
43 {{comment_prefix}} Process this file with autoconf to produce a configure script
45 AC_INIT({{PROJECT_NAME}}, {{PROJECT_VERSION}})
46 AM_INIT_AUTOMAKE([{{PROGRAM}}], 0)
47 AM_CONFIG_HEADER(config.h)
49 {{comment_prefix}} End the configure script.
50 AC_OUTPUT(Makefile, [date > stamp-h] )
51 ----
54 ;; end