* etc/MACHINES: Misc small edits.
[bpt/emacs.git] / etc / srecode / ede-autoconf.srt
CommitLineData
4d73ec07
GM
1;;; ede/templates/autoconf.srt --- Templates for autoconf used by EDE
2
ba318903 3;; Copyright (C) 2010, 2012-2014 Free Software Foundation, Inc.
4d73ec07 4
62a81506 5;; Author: Eric M. Ludlam <eric@siege-engine.com>
62a81506 6
4d73ec07
GM
7;; This file is part of GNU Emacs.
8
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.
13
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.
62a81506
CY
18
19;; You should have received a copy of the GNU General Public License
4d73ec07 20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
62a81506
CY
21
22set mode "autoconf-mode"
23set escape_start "{{"
24set escape_end "}}"
25set comment_start "#"
26set comment_prefix "#"
27set application "ede"
28
29context file
30
e8cc7880 31template ede-empty :project
62a81506
CY
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
e8cc7880 45AC_INIT({{PROJECT_NAME}}, {{PROJECT_VERSION}})
62a81506
CY
46AM_INIT_AUTOMAKE([{{PROGRAM}}], 0)
47AM_CONFIG_HEADER(config.h)
48
49{{comment_prefix}} End the configure script.
50AC_OUTPUT(Makefile, [date > stamp-h] )
51----
52
53
54;; end