2000-01-29 20:18:40 +08:00
|
|
|
## Process this file with automake to create Makefile.in.
|
|
|
|
|
|
|
|
## Makefile for Autoconf testsuite.
|
Move the Autoconf independent shell macros into the file
`shell.m4' and the name space `AS_*'.
* acgeneral.m4 (AC_SHELL_IFELSE, _AC_SHELL_TMPDIR, AC_SHELL_UNSET)
(AC_SHELL_MKDIR_P, AC_SHELL_DIRNAME): Rename and move to...
* shell.m4 (AS_IFELSE, AS_TMPDIR, AS_UNSET, AS_MKDIR_P)
(AS_DIRNAME): here, a new file.
Adjust all dependencies.
* tests/base.m4 (m4_wrap): Eve out into...
* tests/shell.m4: here, new file.
* tests/base.m4 (AC_SHELL_MKDIR_P)
(AC_SHELL_DIRNAME & AC_SHELL_DIRNAME_SED): Eve out into...
* tests/m4sugar.m4 (AS_MKDIR_P, AS_DIRNAME & AS_DIRNAME_SED):
here, new file.
Adjust the test suite.
2000-10-26 01:51:10 +08:00
|
|
|
## Copyright 2000 Free Software Foundation, Inc.
|
2000-01-29 20:18:40 +08:00
|
|
|
|
|
|
|
## 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.
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = gnits
|
|
|
|
|
* shell.m4: Rename as...
* m4sh.m4: this.
* tests/m4sugar.m4, tests/shell.m4, tests/torture.m4: Rename as...
* tests/m4sugar.at, tests/m4sh.at, tests/torture.at: these.
* tests/semantics.m4, tests/base.m4, tests/suite.m4: Rename as...
* tests/semantics.at, tests/base.at, tests/suite.at: these.
* tests/tools.m4, tests/update.m4, tests/syntax.m4: Rename as...
* tests/tools.at, tests/update.at, tests/syntax.at: these.
* tests/mktests.sh: Adjust the output file names.
2000-10-26 17:52:34 +08:00
|
|
|
SUITE = suite.at \
|
|
|
|
m4sugar.at m4sh.at \
|
2001-01-22 17:03:38 +08:00
|
|
|
base.at tools.at torture.at compile.at semantics.at \
|
Create actypes.m4.
* acgeneral.m4 (AC_CHECK_SIZEOF, _AC_CHECK_TYPE_NEW)
(AC_CHECK_TYPES, _AC_CHECK_TYPE_OLD)
(_AC_CHECK_TYPE_REPLACEMENT_TYPE_P, _AC_CHECK_TYPE_MAYBE_TYPE_P)
(AC_CHECK_TYPE, AC_CHECK_MEMBER, AC_CHECK_MEMBERS): Move into...
* actypes.m4: here.
* acgeneral.m4 (AC_TYPE_GETGROUPS, AM_TYPE_PTRDIFF_T)
(AC_TYPE_UID_T, AC_TYPE_SIZE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T)
(AC_TYPE_MODE_T, AC_INT_16_BITS, AC_LONG_64_BITS, AC_TYPE_SIGNAL)
(AC_STRUCT_TM, AC_STRUCT_TIMEZONE, AC_STRUCT_ST_BLKSIZE)
(AC_STRUCT_ST_BLOCKS, AC_STRUCT_ST_RDEV): Move into...
* actypes.m4: here.
Adjust the test suite.
2001-01-22 17:04:58 +08:00
|
|
|
acgeneral.at acspecific.at acfunctions.at aclang.at acheaders.at \
|
|
|
|
actypes.at \
|
2001-01-22 17:03:38 +08:00
|
|
|
foreign.at
|
2000-01-29 20:18:40 +08:00
|
|
|
|
|
|
|
# We don't actually distribute the testsuite, since one only
|
|
|
|
# needs m4 to build it, m4 being required anyway to install Autoconf.
|
2000-10-27 22:15:28 +08:00
|
|
|
EXTRA_DIST = README \
|
|
|
|
atgeneral.m4 atspecific.m4 aclocal.m4 \
|
2000-10-05 21:52:41 +08:00
|
|
|
$(SUITE) mktests.sh
|
2000-01-29 20:18:40 +08:00
|
|
|
|
Test that the macros respect the user variable name space.
* acgeneral.m4 (AC_CANONICAL_THING): define, not AC_DEFUN.
Don't AC_PROVIDE, there is no need.
When calling `config.sub`, also || exit 1, to catch failures from
config.sub.
* acspecific.m4 (AC_SYS_LONG_FILE_NAMES): Use ac_val, not val.
(AC_EXEEXT): Use ac_file, not file.
* tests/actest.m4: New file, holding extra Autoconf macros used
during the testing.
(AC_ENV_SAVE): New macro, save the sh variables in a file.
* tests/suite.m4 (AT_TEST_MACRO, Generation of configure.in):
include actest.m4, and call twice AC_ENV_SAVE to compare the
variables before and after the macro.
* tests/Makefile.am (macro.m4): Don't test macros that are
required: they will be tested somewhere else.
2000-02-07 21:25:35 +08:00
|
|
|
check-local: atconfig testsuite
|
2000-01-29 20:18:40 +08:00
|
|
|
$(SHELL) testsuite
|
|
|
|
|
2000-11-23 17:46:48 +08:00
|
|
|
testsuite: $(top_srcdir)/m4sugar.m4 $(top_srcdir)/m4sh.m4 \
|
|
|
|
atgeneral.m4 atspecific.m4 \
|
|
|
|
$(SUITE)
|
2000-11-23 17:45:48 +08:00
|
|
|
$(M4) -I $(srcdir) -I $(top_srcdir) atspecific.m4 suite.at | \
|
2000-02-11 16:59:52 +08:00
|
|
|
sed -e 's/[ ]*$$//' | \
|
|
|
|
sed -e '/^$$/N;/\n$$/D' > $@-tmp
|
2000-01-29 20:18:40 +08:00
|
|
|
chmod +x $@-tmp
|
|
|
|
mv $@-tmp $@
|
|
|
|
|
2000-03-01 16:22:40 +08:00
|
|
|
|
Move all the language dependent macros into aclang.m4.
* aclang.m4: New file.
* autoconf.m4: Include it.
* autoheader.m4: Likewise.
* autoupdate.m4: Likewise.
* Makefile.am: Adjust.
* test/Makefile.am: Likewise.
* acgeneral.m4 (AC_LANG_CASE,AC_LANG_SAVE, _AC_LANG_DISPATCH,
AC_LANG, _AC_LANG_CURRENT, AC_LANG_SOURCE, AC_LANG_PROGRAM,
AC_LANG_CALL, AC_LANG(C), AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C),
AC_LANG_CALL(C), AC_LANG(C++), AC_LANG_SOURCE(C++),
AC_LANG_PROGRAM(C++), AC_LANG_CALL(C++), AC_LANG(FORTRAN77),
AC_LANG_SOURCE(FORTRAN77), AC_LANG_PROGRAM(FORTRAN77),
AC_LANG_CALL(FORTRAN77): Move to...
* aclang.m4: here.
* acspecific.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77,
AC_PROG_CC_WORKS, AC_PROG_CXX_WORKS, AC_PROG_F77_WORKS,
AC_PROG_CC_GNU, AC_PROG_CXX_GNU, AC_PROG_F77_GNU, AC_PROG_CC_G,
AC_PROG_CXX_G, AC_PROG_F77_G, AC_PROG_GCC_TRADITIONAL,
AC_PROG_CC_C_O, AC_PROG_F77_C_O, AC_PROG_CC_STDC, AC_PROG_CPP,
AC_PROG_CXXCPP, AC_REQUIRE_CPP, AC_PROG_LEX, AC_TYPE_MODE_T,
AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE, AC_C_BIGENDIAN,
AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE, AC_C_STRINGIZE,
AC_C_PROTOTYPES, AC_F77_LIBRARY_LDFLAGS, AC_F77_NAME_MANGLING,
AC_F77_WRAPPERS): Move to...
* aclang.m4: here.
2000-03-27 20:26:33 +08:00
|
|
|
# The files which contains macro we check for syntax.
|
2001-01-22 17:03:38 +08:00
|
|
|
MACRO_FILES = $(top_srcdir)/acgeneral.m4 \
|
|
|
|
$(top_srcdir)/acspecific.m4 \
|
|
|
|
$(top_srcdir)/acfunctions.m4 \
|
|
|
|
$(top_srcdir)/aclang.m4 \
|
Create actypes.m4.
* acgeneral.m4 (AC_CHECK_SIZEOF, _AC_CHECK_TYPE_NEW)
(AC_CHECK_TYPES, _AC_CHECK_TYPE_OLD)
(_AC_CHECK_TYPE_REPLACEMENT_TYPE_P, _AC_CHECK_TYPE_MAYBE_TYPE_P)
(AC_CHECK_TYPE, AC_CHECK_MEMBER, AC_CHECK_MEMBERS): Move into...
* actypes.m4: here.
* acgeneral.m4 (AC_TYPE_GETGROUPS, AM_TYPE_PTRDIFF_T)
(AC_TYPE_UID_T, AC_TYPE_SIZE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T)
(AC_TYPE_MODE_T, AC_INT_16_BITS, AC_LONG_64_BITS, AC_TYPE_SIGNAL)
(AC_STRUCT_TM, AC_STRUCT_TIMEZONE, AC_STRUCT_ST_BLKSIZE)
(AC_STRUCT_ST_BLOCKS, AC_STRUCT_ST_RDEV): Move into...
* actypes.m4: here.
Adjust the test suite.
2001-01-22 17:04:58 +08:00
|
|
|
$(top_srcdir)/acheaders.m4 \
|
|
|
|
$(top_srcdir)/actypes.m4
|
Move all the language dependent macros into aclang.m4.
* aclang.m4: New file.
* autoconf.m4: Include it.
* autoheader.m4: Likewise.
* autoupdate.m4: Likewise.
* Makefile.am: Adjust.
* test/Makefile.am: Likewise.
* acgeneral.m4 (AC_LANG_CASE,AC_LANG_SAVE, _AC_LANG_DISPATCH,
AC_LANG, _AC_LANG_CURRENT, AC_LANG_SOURCE, AC_LANG_PROGRAM,
AC_LANG_CALL, AC_LANG(C), AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C),
AC_LANG_CALL(C), AC_LANG(C++), AC_LANG_SOURCE(C++),
AC_LANG_PROGRAM(C++), AC_LANG_CALL(C++), AC_LANG(FORTRAN77),
AC_LANG_SOURCE(FORTRAN77), AC_LANG_PROGRAM(FORTRAN77),
AC_LANG_CALL(FORTRAN77): Move to...
* aclang.m4: here.
* acspecific.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77,
AC_PROG_CC_WORKS, AC_PROG_CXX_WORKS, AC_PROG_F77_WORKS,
AC_PROG_CC_GNU, AC_PROG_CXX_GNU, AC_PROG_F77_GNU, AC_PROG_CC_G,
AC_PROG_CXX_G, AC_PROG_F77_G, AC_PROG_GCC_TRADITIONAL,
AC_PROG_CC_C_O, AC_PROG_F77_C_O, AC_PROG_CC_STDC, AC_PROG_CPP,
AC_PROG_CXXCPP, AC_REQUIRE_CPP, AC_PROG_LEX, AC_TYPE_MODE_T,
AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE, AC_C_BIGENDIAN,
AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE, AC_C_STRINGIZE,
AC_C_PROTOTYPES, AC_F77_LIBRARY_LDFLAGS, AC_F77_NAME_MANGLING,
AC_F77_WRAPPERS): Move to...
* aclang.m4: here.
2000-03-27 20:26:33 +08:00
|
|
|
|
2001-01-22 17:03:38 +08:00
|
|
|
acgeneral.at: mktests.sh $(MACRO_FILES)
|
2000-10-17 15:55:44 +08:00
|
|
|
cd $(srcdir) && ./mktests.sh $(MACRO_FILES)
|
2000-10-05 21:52:41 +08:00
|
|
|
|
2001-01-22 17:03:38 +08:00
|
|
|
acspecific.at: mktests.sh $(MACRO_FILES)
|
|
|
|
cd $(srcdir) && ./mktests.sh $(MACRO_FILES)
|
|
|
|
|
|
|
|
acfunctions.at: mktests.sh $(MACRO_FILES)
|
|
|
|
cd $(srcdir) && ./mktests.sh $(MACRO_FILES)
|
|
|
|
|
|
|
|
aclang.at: mktests.sh $(MACRO_FILES)
|
|
|
|
cd $(srcdir) && ./mktests.sh $(MACRO_FILES)
|
|
|
|
|
|
|
|
acheaders.at: mktests.sh $(MACRO_FILES)
|
2000-10-17 15:55:44 +08:00
|
|
|
cd $(srcdir) && ./mktests.sh $(MACRO_FILES)
|
2000-01-29 20:18:40 +08:00
|
|
|
|
Create actypes.m4.
* acgeneral.m4 (AC_CHECK_SIZEOF, _AC_CHECK_TYPE_NEW)
(AC_CHECK_TYPES, _AC_CHECK_TYPE_OLD)
(_AC_CHECK_TYPE_REPLACEMENT_TYPE_P, _AC_CHECK_TYPE_MAYBE_TYPE_P)
(AC_CHECK_TYPE, AC_CHECK_MEMBER, AC_CHECK_MEMBERS): Move into...
* actypes.m4: here.
* acgeneral.m4 (AC_TYPE_GETGROUPS, AM_TYPE_PTRDIFF_T)
(AC_TYPE_UID_T, AC_TYPE_SIZE_T, AC_TYPE_PID_T, AC_TYPE_OFF_T)
(AC_TYPE_MODE_T, AC_INT_16_BITS, AC_LONG_64_BITS, AC_TYPE_SIGNAL)
(AC_STRUCT_TM, AC_STRUCT_TIMEZONE, AC_STRUCT_ST_BLKSIZE)
(AC_STRUCT_ST_BLOCKS, AC_STRUCT_ST_RDEV): Move into...
* actypes.m4: here.
Adjust the test suite.
2001-01-22 17:04:58 +08:00
|
|
|
actypes.at: mktests.sh $(MACRO_FILES)
|
|
|
|
cd $(srcdir) && ./mktests.sh $(MACRO_FILES)
|
|
|
|
|
2001-01-12 17:39:26 +08:00
|
|
|
CLEANFILES = debug-*.sh macro configure configure.in configure.ac \
|
|
|
|
config.status config.cache config.log config.h.in config.h \
|
|
|
|
stderr stdout empty
|
2000-02-04 22:02:57 +08:00
|
|
|
DISTCLEANFILES = atconfig testsuite
|
2001-01-12 17:39:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
## ------------------ ##
|
|
|
|
## Maintainer rules. ##
|
|
|
|
## ------------------ ##
|
|
|
|
|
|
|
|
## maintainer-check ##
|
|
|
|
|
|
|
|
maintainer-check: maintainer-check-posix maintainer-check-c++
|
|
|
|
|
|
|
|
# The hairy heredoc is more robust than using echo.
|
|
|
|
expr:
|
|
|
|
echo '#! $(SHELL)' >expr
|
|
|
|
echo 'result=`@EXPR@ "$$@"`' >>expr
|
|
|
|
echo 'estatus=$$?' >>expr
|
|
|
|
echo 'cat <<EOF' >>expr
|
|
|
|
echo '$${result:-0}' >>expr
|
|
|
|
echo 'EOF' >>expr
|
|
|
|
echo 'exit $$estatus' >>expr
|
|
|
|
chmod +x expr
|
|
|
|
|
|
|
|
# Try the test suite with more severe environments.
|
|
|
|
maintainer-check-posix: expr
|
|
|
|
POSIXLY_CORRECTLY=yes make check
|
|
|
|
rm expr
|
|
|
|
|
|
|
|
# Try using G++ as a C compiler.
|
|
|
|
maintainer-check-c++:
|
|
|
|
CC=g++ make check
|