diff options
author | Chong Yidong <cyd@gnu.org> | 2012-10-02 02:10:29 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-10-02 02:10:29 +0800 |
commit | 62a81506f802e4824b718cc30321ee3a0057cdf7 (patch) | |
tree | d681d7b767b1c3f7e4aee24ce39f6bef0d7f1f7e /etc/srecode/ede-autoconf.srt | |
parent | b3317662acc0157406c20c8e14c43b7126eaa8a0 (diff) | |
download | emacs-62a81506f802e4824b718cc30321ee3a0057cdf7.tar.gz |
Update CEDET from upstream.
Diffstat (limited to 'etc/srecode/ede-autoconf.srt')
-rw-r--r-- | etc/srecode/ede-autoconf.srt | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/etc/srecode/ede-autoconf.srt b/etc/srecode/ede-autoconf.srt new file mode 100644 index 00000000000..daefd532dff --- /dev/null +++ b/etc/srecode/ede-autoconf.srt @@ -0,0 +1,54 @@ +;; ede/templates/autoconf.srt --- Templates for autoconf used by EDE. +;; +;; Copyright (C) 2010 Eric M. Ludlam +;; +;; Author: Eric M. Ludlam <eric@siege-engine.com> +;; +;; This program is free software; you can redistribute it and/or +;; modify it under the terms of the GNU General Public License as +;; published by the Free Software Foundation; either version 2, or (at +;; your option) any later version. + +;; This program is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program; see the file COPYING. If not, write to +;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +;; Boston, MA 02110-1301, USA. + +set mode "autoconf-mode" +set escape_start "{{" +set escape_end "}}" +set comment_start "#" +set comment_prefix "#" +set application "ede" + +context file + +template ede-empty +"Start a new EDE generated configure.in/ac file." +---- +{{comment_prefix}} Automatically Generated/Maintained {{FILE}} by EDE. +{{comment_prefix}} +{{comment_prefix}} YOU MAY MODIFY THIS FILE +{{comment_prefix}} Hand made changes in some sections will be preserved +{{comment_prefix}} by EDE when this file is updated. +{{comment_prefix}} +{{comment_prefix}} EDE is the Emacs Development Environment. +{{comment_prefix}} http://cedet.sourceforge.net/ede.shtml +{{comment_prefix}} +{{comment_prefix}} Process this file with autoconf to produce a configure script + +AC_INIT({{TEST_FILE}}) +AM_INIT_AUTOMAKE([{{PROGRAM}}], 0) +AM_CONFIG_HEADER(config.h) + +{{comment_prefix}} End the configure script. +AC_OUTPUT(Makefile, [date > stamp-h] ) +---- + + +;; end |