2019-10-04 00:12:32 +08:00
|
|
|
#!/usr/bin/env perl
|
2001-08-02 05:00:25 +08:00
|
|
|
#
|
2007-02-15 06:25:02 +08:00
|
|
|
# Copyright by The HDF Group.
|
2003-04-01 01:39:53 +08:00
|
|
|
# Copyright by the Board of Trustees of the University of Illinois.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
2017-04-18 03:32:16 +08:00
|
|
|
# the COPYING file, which can be found at the root of the source code
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2017-04-18 03:32:16 +08:00
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
2001-08-02 05:00:25 +08:00
|
|
|
#
|
2019-10-04 00:12:32 +08:00
|
|
|
use warnings;
|
|
|
|
|
2001-08-02 05:00:25 +08:00
|
|
|
my $depend_file;
|
|
|
|
my $new_depend_file;
|
|
|
|
my $srcdir;
|
|
|
|
my $top_srcdir;
|
|
|
|
my $top_builddir;
|
|
|
|
|
|
|
|
while ($_ = shift @ARGV) {
|
2003-07-30 03:23:54 +08:00
|
|
|
if (/^--top_srcdir=([^ \t\n]*)/) {
|
2001-08-02 05:00:25 +08:00
|
|
|
$top_srcdir = $1;
|
2003-07-29 05:36:38 +08:00
|
|
|
$top_srcdir =~ s/\+/\\\+/g;
|
2001-08-03 01:26:52 +08:00
|
|
|
$top_srcdir =~ s/\./\\\./g;
|
2001-08-02 05:00:25 +08:00
|
|
|
} elsif (/^--top_builddir=([^ \t\n]*)/) {
|
|
|
|
$top_builddir = $1;
|
2003-07-29 05:36:38 +08:00
|
|
|
$top_builddir =~ s/\+/\\\+/g;
|
2001-08-03 01:26:52 +08:00
|
|
|
$top_builddir =~ s/\./\\\./g;
|
2001-08-02 05:00:25 +08:00
|
|
|
} else {
|
|
|
|
$depend_file = $_;
|
|
|
|
$new_depend_file = "$_.new";
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
open(DEPEND, "<$depend_file") || die "cannot open file $depend_file: $!\n";
|
|
|
|
open(NEW, ">$new_depend_file") || die "cannot open file $new_depend_file: $!\n";
|
|
|
|
|
|
|
|
while (<DEPEND>) {
|
2003-04-29 02:39:41 +08:00
|
|
|
s/\.o(\b)/\.lo$1/g;
|
2001-08-02 05:00:25 +08:00
|
|
|
s/ $top_srcdir/ \$\(top_srcdir\)/g;
|
|
|
|
s/ $top_builddir/ \$\(top_builddir\)/g;
|
|
|
|
print NEW $_;
|
|
|
|
}
|
|
|
|
|
2003-10-08 05:10:53 +08:00
|
|
|
close(DEPEND);
|
|
|
|
close(NEW);
|
|
|
|
|
2001-08-02 05:00:25 +08:00
|
|
|
`mv $new_depend_file $depend_file`;
|