summaryrefslogtreecommitdiff
path: root/m4/options.m4
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-12-31 00:16:37 +0000
committerTom Tromey <tromey@redhat.com>2001-12-31 00:16:37 +0000
commit511b20a513aeaca791bc5e16913a966e14f9a6b6 (patch)
tree9f29fb4e1db88e7958a592a1dc8a77439a0b892c /m4/options.m4
parent87e61e0f6a0ef3ab7e8806778a3f020a085aefc2 (diff)
downloadautomake-511b20a513aeaca791bc5e16913a966e14f9a6b6.tar.gz
For PR automake/215:
* configure.in: Use AM_AUTOMAKE_OPTIONS. * Makefile.am (AUTOMAKE_OPTIONS): Removed. * automake.texi (Macros): Document AM_AUTOMAKE_OPTIONS. (Options): Mention AM_AUTOMAKE_OPTIONS. * automake.in (global_options): New global. (global_options_line): Likewise. (scan_autoconf_traces): Trace AM_AUTOMAKE_OPTIONS. (scan_one_autoconf_file): Likewise. (process_option_list): New function. (handle_options): Use it. Also, handle global options. * m4/Makefile.am (m4data_DATA): Added options.m4. * m4/options.m4: New file.
Diffstat (limited to 'm4/options.m4')
-rw-r--r--m4/options.m427
1 files changed, 27 insertions, 0 deletions
diff --git a/m4/options.m4 b/m4/options.m4
new file mode 100644
index 000000000..412c5bd81
--- /dev/null
+++ b/m4/options.m4
@@ -0,0 +1,27 @@
+# Do all the work for Automake. -*- Autoconf -*-
+
+# Copyright 2001 Free Software Foundation, Inc.
+
+# 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; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
+# serial 1
+
+# AM_AUTOMAKE_OPTIONS([OPTIONS])
+# ------------------------------
+# Set some automake options globally.
+AC_DEFUN([AM_AUTOMAKE_OPTIONS],
+[dnl nothing
+])