Handle the static libraries linked to using EXTRALIBS.
This commit is contained in:
parent
8ed3bbf2d2
commit
d0882ef46d
|
@ -165,8 +165,9 @@ MAKEFILE_IN: foreach my $makefile_in_file (@makefile_in_files) {
|
||||||
} elsif (/^TESTDLL\s*=\s*(\S+)\s*$/) {
|
} elsif (/^TESTDLL\s*=\s*(\S+)\s*$/) {
|
||||||
$testdll = $1;
|
$testdll = $1;
|
||||||
} elsif (/^IMPORTS\s*=\s*/) {
|
} elsif (/^IMPORTS\s*=\s*/) {
|
||||||
@imports = split /\s+/s, $';
|
push @imports, grep !/^ntdll$/, split /\s+/s, $';
|
||||||
@imports = grep !/^ntdll$/, @imports;
|
} elsif (/^EXTRALIBS\s*=\s*/) {
|
||||||
|
push @imports, map { /^-l(dxerr8|dxerr9|dxguid|strmiids|uuid)$/ ? $1 : () } split /\s+/s, $';
|
||||||
} elsif (/^CTESTS\s*=\s*/) {
|
} elsif (/^CTESTS\s*=\s*/) {
|
||||||
my @files = split /\s+/s, $';
|
my @files = split /\s+/s, $';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue