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