Imported Upstream version 4.2
[platform/upstream/make.git] / tests / config-flags.pm
1 # This is a -*-perl-*- script
2 #
3 # Set variables that were defined by configure, in case we need them
4 # during the tests.
5
6 %CONFIG_FLAGS = (
7     AM_LDFLAGS   => '-Wl,--export-dynamic',
8     AR           => 'ar',
9     CC           => 'gcc',
10     CFLAGS       => '-g -O2',
11     CPP          => 'gcc -E',
12     CPPFLAGS     => '',
13     GUILE_CFLAGS => '-pthread -I/usr/include/guile/2.0',
14     GUILE_LIBS   => '-lguile-2.0 -lgc',
15     LDFLAGS      => '',
16     LIBS         => '-ldl '
17 );
18
19 1;