Use URLs, not Boston addresses, in copyright notices.
[bpt/emacs.git] / etc / srecode / ede-autoconf.srt
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
18 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 set mode "autoconf-mode"
21 set escape_start "{{"
22 set escape_end "}}"
23 set comment_start "#"
24 set comment_prefix "#"
25 set application "ede"
26
27 context file
28
29 template 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
43 AC_INIT({{TEST_FILE}})
44 AM_INIT_AUTOMAKE([{{PROGRAM}}], 0)
45 AM_CONFIG_HEADER(config.h)
46
47 {{comment_prefix}} End the configure script.
48 AC_OUTPUT(Makefile, [date > stamp-h] )
49 ----
50
51
52 ;; end