mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-30 11:01:45 +08:00
466fd1b23f
* 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.
62 lines
2.1 KiB
Makefile
62 lines
2.1 KiB
Makefile
## Process this file with automake to create Makefile.in.
|
|
|
|
## Makefile for Autoconf testsuite.
|
|
## Copyright (C) 2000 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.
|
|
|
|
AUTOMAKE_OPTIONS = gnits
|
|
|
|
SUITE = syntax.m4 semantics.m4
|
|
|
|
# We don't actually distribute the testsuite, since one only
|
|
# needs m4 to build it, m4 being required anyway to install Autoconf.
|
|
EXTRA_DIST = atgeneral.m4 suite.m4 macros.m4 actest.m4 $(SUITE)
|
|
|
|
PERL = perl
|
|
|
|
all-local: atconfig testsuite
|
|
|
|
check-local: atconfig testsuite
|
|
$(SHELL) testsuite
|
|
|
|
testsuite: atgeneral.m4 suite.m4 macros.m4 $(SUITE)
|
|
m4 -I $(srcdir) atgeneral.m4 suite.m4 | cat -s > $@-tmp
|
|
chmod +x $@-tmp
|
|
mv $@-tmp $@
|
|
|
|
macros.m4: $(top_srcdir)/acspecific.m4 $(srcdir)/Makefile.am
|
|
cat $(top_srcdir)/acgeneral.m4 $(top_srcdir)/acspecific.m4 | \
|
|
sed -ne 's/^AC_DEFUN(\[*\([^],]*\).*/\1/p' | \
|
|
sort >defuns
|
|
# Get the list of macros that are required: there is little interest
|
|
# in testing them since they will be run but the guy who requires
|
|
# them.
|
|
cat $(top_srcdir)/acgeneral.m4 $(top_srcdir)/acspecific.m4 | \
|
|
sed -ne 's/dnl.*//;s/.*AC_REQUIRE(\[*\([a-zA-Z0-9_]*\).*$$/\1/p' | \
|
|
sort | uniq >requires
|
|
for macro in `cat defuns`; do \
|
|
if fgrep "$$macro" requires >/dev/null 2>&1; then :; else \
|
|
echo "TEST_MACRO([$$macro])" >>$@-t; \
|
|
fi; \
|
|
done
|
|
rm defuns requires
|
|
mv $@-t $@
|
|
|
|
CLEANFILES = debug-*.sh macro configure configure.in config.status \
|
|
config.cache config.log config.h.in config.h
|
|
DISTCLEANFILES = atconfig testsuite
|