2001-08-02 05:00:25 +08:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
#
|
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
|
|
|
|
# the files COPYING and Copyright.html. COPYING can be found at the root
|
|
|
|
# of the source code distribution tree; Copyright.html can be found at the
|
|
|
|
# root level of an installed copy of the electronic HDF5 document set and
|
|
|
|
# is linked from the top-level documents page. It can also be found at
|
|
|
|
# http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
# access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
|
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`;
|