Merge from emacs-24; up to 2012-05-08T15:19:18Z!monnier@iro.umontreal.ca
[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; see the file COPYING. If not, write to
19 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 ;; Boston, MA 02110-1301, USA.
21
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"
28
29 context file
30
31 template ede-empty
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
44
45 AC_INIT({{TEST_FILE}})
46 AM_INIT_AUTOMAKE([{{PROGRAM}}], 0)
47 AM_CONFIG_HEADER(config.h)
48
49 {{comment_prefix}} End the configure script.
50 AC_OUTPUT(Makefile, [date > stamp-h] )
51 ----
52
53
54 ;; end