mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2025-02-12 07:07:39 +00:00
19 lines
477 B
Perl
19 lines
477 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 => '-Wl,--export-dynamic',
|
|
AR => 'ar',
|
|
CC => 'gcc',
|
|
CFLAGS => '-g -O2',
|
|
CPP => 'gcc -E',
|
|
CPPFLAGS => '',
|
|
GUILE_CFLAGS => '-pthread -I/usr/include/guile/2.0',
|
|
GUILE_LIBS => '-lguile-2.0 -lgc',
|
|
LDFLAGS => '',
|
|
LIBS => '-ldl '
|
|
);
|
|
|
|
1;
|