mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-25 04:35:44 +00:00
107ab16bf6
* tests/config-flags.pm.in: A new file containing variable assignments for the test suite; these variables are set by configure to contain the values detected there for compilers, flags, etc. * tests/run_make_tests.pl: Require the config-flags.pm file * tests/scripts/features/load, tests/scripts/features/loadapi: Use the configure-provided values when building the shared test library. * configure.ac: Replace tests/config-flags.pm.in * Makefile.am: Make sure tests/config-flags.pm is up to date
18 lines
442 B
Perl
18 lines
442 B
Perl
# This is a -*-perl-*- script
|
|
#
|
|
# Set variables that were defined by configure, in case we need them
|
|
# during the tests.
|
|
|
|
%CONFIG_FLAGS = (
|
|
AM_LDFLAGS => '@AM_LDFLAGS@',
|
|
CC => '@CC@',
|
|
CFLAGS => '@CFLAGS@',
|
|
CPP => '@CPP@',
|
|
CPPFLAGS => '@CPPFLAGS@',
|
|
GUILE_CFLAGS => '@GUILE_CFLAGS@',
|
|
GUILE_LIBS => '@GUILE_LIBS@',
|
|
LDFLAGS => '@LDFLAGS@',
|
|
LIBS => '@LIBS@'
|
|
);
|
|
|
|
1;
|