2006-11-28 05:35:37 +08:00
|
|
|
# Make Autoconf commands.
|
2001-08-01 23:11:04 +08:00
|
|
|
|
2007-01-05 00:43:06 +08:00
|
|
|
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free
|
2006-11-28 05:35:37 +08:00
|
|
|
# Software Foundation, Inc.
|
2004-01-05 16:18:24 +08:00
|
|
|
|
2007-07-21 07:11:49 +08:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2006-11-28 05:35:37 +08:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-21 07:11:49 +08:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2001-08-01 23:11:04 +08:00
|
|
|
|
2006-11-28 05:35:37 +08:00
|
|
|
# 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.
|
2001-08-01 23:11:04 +08:00
|
|
|
|
2006-11-28 05:35:37 +08:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-21 07:11:49 +08:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2001-08-01 23:11:04 +08:00
|
|
|
|
2002-10-25 23:12:59 +08:00
|
|
|
include ../lib/freeze.mk
|
|
|
|
|
2001-08-01 23:11:04 +08:00
|
|
|
bin_SCRIPTS = autom4te \
|
2003-05-23 21:09:28 +08:00
|
|
|
autoconf autoheader autoreconf ifnames autoscan autoupdate
|
2001-08-01 23:11:04 +08:00
|
|
|
|
2004-12-10 05:14:45 +08:00
|
|
|
EXTRA_DIST = autoconf.as autoheader.in autoreconf.in autoupdate.in ifnames.in \
|
|
|
|
autoscan.in autom4te.in
|
2001-08-01 23:11:04 +08:00
|
|
|
|
|
|
|
# Files that should be removed, but which Automake does not know.
|
2004-12-11 07:56:45 +08:00
|
|
|
MOSTLYCLEANFILES = $(bin_SCRIPTS) autoconf.in *.tmp
|
2001-08-01 23:11:04 +08:00
|
|
|
|
2007-01-05 00:43:06 +08:00
|
|
|
# Get the release year from ../ChangeLog.
|
|
|
|
RELEASE_YEAR = \
|
|
|
|
`sed 's/^\([0-9][0-9][0-9][0-9]\).*/\1/;q' $(top_srcdir)/ChangeLog`
|
2001-08-01 23:11:04 +08:00
|
|
|
|
|
|
|
## ------------- ##
|
|
|
|
## The scripts. ##
|
|
|
|
## ------------- ##
|
|
|
|
|
|
|
|
edit = sed \
|
2005-03-23 09:01:58 +08:00
|
|
|
-e 's|@SHELL[@]|$(SHELL)|g' \
|
|
|
|
-e 's|@PERL[@]|$(PERL)|g' \
|
|
|
|
-e 's|@bindir[@]|$(bindir)|g' \
|
|
|
|
-e 's|@datadir[@]|$(pkgdatadir)|g' \
|
|
|
|
-e 's|@prefix[@]|$(prefix)|g' \
|
|
|
|
-e 's|@autoconf-name[@]|'`echo autoconf | sed '$(transform)'`'|g' \
|
|
|
|
-e 's|@autoheader-name[@]|'`echo autoheader | sed '$(transform)'`'|g' \
|
|
|
|
-e 's|@autom4te-name[@]|'`echo autom4te | sed '$(transform)'`'|g' \
|
|
|
|
-e 's|@M4[@]|$(M4)|g' \
|
2006-09-20 10:44:51 +08:00
|
|
|
-e 's|@M4_DEBUGFILE[@]|$(M4_DEBUGFILE)|g' \
|
2005-03-23 09:01:58 +08:00
|
|
|
-e 's|@AWK[@]|$(AWK)|g' \
|
2007-01-05 00:43:06 +08:00
|
|
|
-e 's|@RELEASE_YEAR[@]|'$(RELEASE_YEAR)'|g' \
|
2005-03-23 09:01:58 +08:00
|
|
|
-e 's|@VERSION[@]|$(VERSION)|g' \
|
|
|
|
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
|
|
|
|
-e 's|@configure_input[@]|Generated from $@.in; do not edit by hand.|g'
|
2001-08-01 23:11:04 +08:00
|
|
|
|
2007-05-26 06:52:12 +08:00
|
|
|
$(top_builddir)/bin/autom4te: autom4te
|
|
|
|
|
2002-04-10 23:58:19 +08:00
|
|
|
# autoconf is written in M4sh.
|
2006-06-17 16:08:19 +08:00
|
|
|
# FIXME: this target should depend on the frozen files below lib/m4sugar,
|
|
|
|
# otherwise autom4te may pick up a frozen m4sh.m4f from an earlier
|
|
|
|
# installation below the same $(prefix); work around this with --melt.
|
2004-12-10 05:14:45 +08:00
|
|
|
autoconf.in: $(srcdir)/autoconf.as $(m4sh_m4f_dependencies)
|
2006-06-17 16:08:19 +08:00
|
|
|
$(MY_AUTOM4TE) --language M4sh --cache '' --melt $(srcdir)/autoconf.as -o $@
|
2002-04-10 23:58:19 +08:00
|
|
|
|
2005-05-24 14:14:27 +08:00
|
|
|
## All the scripts depend on Makefile so that they are rebuilt when the
|
|
|
|
## prefix etc. changes. It took quite a while to have the rule correct,
|
|
|
|
## don't break it!
|
2003-09-25 17:30:34 +08:00
|
|
|
## Use chmod -w to prevent people from editing the wrong file by accident.
|
2005-05-24 14:14:27 +08:00
|
|
|
$(bin_SCRIPTS): Makefile
|
2004-12-11 07:56:45 +08:00
|
|
|
rm -f $@ $@.tmp
|
'echo' has some portability problems, when given a first argument
with a leading '-', or when given any argument containing '\'.
Avoid using 'echo' in these cases.
* bin/Makefile.am $(bin_SCRIPTS): Rewrite to avoid 'echo' entirely.
* lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Likewise.
* lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
* lib/autotest/general.m4 (AT_INIT): Likewise.
* bin/autoconf.as: Use AS_ECHO rather than plain echo, when the
argument might be unportable.
* lib/autoconf/c.m4 (AC_PROG_CC_C_O): Likewise.
* lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Likewise.
* lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT):
(_AC_FC_LIBRARY_LDFLAGS): Likewise.
* lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Likewise.
* lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE, _AC_INIT_PREPARE):
(_AC_ARG_VAR_VALIDATE, AC_ARG_PROGRAM, _AC_MSG_LOG_CONFTEST):
(AC_RUN_LOG, _AC_RUN_IFELSE, _AC_LIBOBJS_NORMALIZE): Likewise.
* lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
* lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Likewise.
* lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
(AC_PROG_MAKE_SET): Likewise.
* lib/autoconf/status.m4 (_AC_SRCDIRS, _AC_OUTPUT_HEADER):
(_AC_OUTPUT_SUBDIRS, _AC_OUTPUT_CONFIG_STATUS): Likewise.
* lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT, AT_INIT):
(AT_CLEANUP, _AT_DECIDE_TRACEABLE, _AT_CHECK): Likewise.
* lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE, _AS_ECHO_UNQUOTED):
(_AS_BASENAME_SED, _AS_DIRNAME_SED, AS_MKDIR_P, AS_TMPDIR, AS_UNAME):
(AS_TR_SH, AS_TR_CPP, AS_VAR_GET): Likewise.
* bin/autoconf.as: Redo verbose flag implementation, as the old
scheme wouldn't work with AS_ECHO.
* lib/autotest/general.m4 (AT_INIT): Likewise.
* lib/autoconf/general.m4 (AC_MSG_RESULT, AC_MSG_RESULT_UNQUOTED):
Don't use ECHO_T, since ECHO_N is now reliable.
* lib/autotest/general.m4 (AT_INIT): Likewise.
* lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use sed "$script"
rather than using a here-document to put the script into a file.
(_AC_DO_ECHO): Hoist the eval out of the echo, so that we can
use AS_ECHO.
* lib/m4sugar/m4sh.m4 (AS_VAR_GET): Likewise.
* lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Use
AS_ECHO_N rather than ECHO_N and ECHO_C. This doesn't fix any
bug, but we might as well stop using ECHO_N and ECHO_C internally.
* lib/autotest/general.m4 (AT_SETUP): Likewise.
* lib/m4sugar/m4sh.m4 (_AS_ECHO_N): Likewise.
* lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
(_AC_OUTPUT_MAIN_LOOP): Rework echo so that it has just one
operand, as AS_ECHO requires. Avoid double file name expansion.
* lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke _AS_ECHO_PREPARE.
Don't set as_nl, since _AS_ECHO_PREPARE does that now.
(_AS_PREPARE): Comment that _AS_ECHO_N_PREPARE is just for user code.
(AS_ECHO, AS_ECHO_N, _AS_ECHO_PREPARE): New macros.
* tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
Double-quote strings that would otherwise contain M4 comments.
* tests/m4sh.at (AS_ECHO and AS_ECHO_N): New test.
2006-11-18 05:04:54 +08:00
|
|
|
srcdir=''; \
|
|
|
|
test -f ./$@.in || srcdir=$(srcdir)/; \
|
|
|
|
$(edit) $${srcdir}$@.in >$@.tmp
|
2004-12-11 07:56:45 +08:00
|
|
|
chmod +x $@.tmp
|
|
|
|
chmod a-w $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
2005-05-24 14:14:27 +08:00
|
|
|
autoconf: autoconf.in
|
2004-12-11 07:56:45 +08:00
|
|
|
autoheader: $(srcdir)/autoheader.in
|
|
|
|
autom4te: $(srcdir)/autom4te.in
|
|
|
|
autoreconf: $(srcdir)/autoreconf.in
|
|
|
|
autoscan: $(srcdir)/autoscan.in
|
|
|
|
autoupdate: $(srcdir)/autoupdate.in
|
|
|
|
ifnames: $(srcdir)/ifnames.in
|
2001-08-17 20:06:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
## --------------- ##
|
|
|
|
## Building TAGS. ##
|
|
|
|
## --------------- ##
|
|
|
|
|
|
|
|
TAGS_DEPENDENCIES = $(EXTRA_DIST)
|
|
|
|
|
2001-09-24 01:16:43 +08:00
|
|
|
letters = abcdefghijklmnopqrstuvwxyz
|
|
|
|
LETTERS = ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
|
|
|
DIGITS = 0123456789
|
|
|
|
WORD_REGEXP = [$(LETTERS)$(letters)_][$(LETTERS)$(letters)$(DIGITS)_]*
|
2001-08-17 20:06:44 +08:00
|
|
|
ETAGS_PERL = --lang=perl \
|
2002-09-28 22:09:42 +08:00
|
|
|
autoheader.in autoreconf.in autoupdate.in autoscan.in autom4te.in \
|
|
|
|
ifnames.in
|
2001-09-24 01:16:43 +08:00
|
|
|
ETAGS_SH = --lang=none --regex='/\($(WORD_REGEXP)\)=/\1/' \
|
2002-09-28 22:09:42 +08:00
|
|
|
autoconf.in
|
2001-08-17 20:06:44 +08:00
|
|
|
|
|
|
|
ETAGS_ARGS = $(ETAGS_PERL) $(ETAGS_SH)
|