1999-03-09 01:31:26 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2004-04-18 14:21:17 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-03-09 01:31:26 +00:00
|
|
|
#
|
2004-04-18 14:21:17 +00:00
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
1999-03-09 01:31:26 +00:00
|
|
|
#
|
|
|
|
# The Original Code is this file as it was released upon March 8, 1999.
|
|
|
|
#
|
2004-04-18 14:21:17 +00:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
1999-11-06 03:40:37 +00:00
|
|
|
#
|
2004-04-18 14:21:17 +00:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1999-03-09 01:31:26 +00:00
|
|
|
|
|
|
|
# mddepend.pl - Reads in dependencies generated my -MD flag. Prints list
|
|
|
|
# of objects that need to be rebuilt. These can then be added to the
|
|
|
|
# PHONY target. Using this script copes with the problem of header
|
|
|
|
# files that have been removed from the build.
|
|
|
|
#
|
|
|
|
# Usage:
|
1999-05-18 22:42:44 +00:00
|
|
|
# mddepend.pl <output_file> <dependency_files...>
|
1999-03-09 01:31:26 +00:00
|
|
|
#
|
|
|
|
# Send comments, improvements, bugs to Steve Lamm (slamm@netscape.com).
|
|
|
|
|
2008-02-13 08:40:39 +00:00
|
|
|
use strict;
|
2000-03-14 03:22:44 +00:00
|
|
|
|
2008-02-13 08:40:39 +00:00
|
|
|
use constant DEBUG => 0;
|
|
|
|
|
|
|
|
my $outfile = shift @ARGV;
|
2003-11-17 06:38:05 +00:00
|
|
|
my $silent = $ENV{MAKEFLAGS} =~ /^\w*s|\s-s/;
|
1999-05-18 00:26:10 +00:00
|
|
|
|
2008-02-13 08:40:39 +00:00
|
|
|
my $line = '';
|
|
|
|
my %alldeps;
|
1999-03-09 01:31:26 +00:00
|
|
|
# Parse dependency files
|
2008-02-13 08:40:39 +00:00
|
|
|
while (<>) {
|
|
|
|
s/\r?\n$//; # Handle both unix and DOS line endings
|
|
|
|
$line .= $_;
|
1999-05-18 22:42:44 +00:00
|
|
|
if ($line =~ /\\$/) {
|
2008-02-13 08:40:39 +00:00
|
|
|
chop $line;
|
|
|
|
next;
|
1999-03-09 01:31:26 +00:00
|
|
|
}
|
2008-02-13 08:40:39 +00:00
|
|
|
|
2009-03-09 14:55:41 +00:00
|
|
|
$line =~ s|\\|/|g;
|
|
|
|
|
2008-02-13 08:40:39 +00:00
|
|
|
my ($obj,$rest) = split /\s*:\s+/, $line, 2;
|
|
|
|
$line = '';
|
|
|
|
next if !$obj || !$rest;
|
|
|
|
|
|
|
|
my @deps = split /\s+/, $rest;
|
|
|
|
push @{$alldeps{$obj}}, @deps;
|
|
|
|
if (DEBUG >= 2) {
|
2009-10-23 17:00:19 +00:00
|
|
|
foreach my $dep (@deps) { print STDERR "add $obj $dep\n"; }
|
1999-03-09 01:31:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test dependencies
|
2008-02-13 08:40:39 +00:00
|
|
|
my %modtimes; # cache
|
|
|
|
my @objs; # force rebuild on these
|
|
|
|
OBJ_LOOP: foreach my $obj (keys %alldeps) {
|
|
|
|
my $mtime = (stat $obj)[9] or next;
|
1999-03-09 01:31:26 +00:00
|
|
|
|
2008-02-13 08:40:39 +00:00
|
|
|
my %not_in_cache;
|
|
|
|
my $deps = $alldeps{$obj};
|
|
|
|
foreach my $dep_file (@{$deps}) {
|
|
|
|
my $dep_mtime = $modtimes{$dep_file};
|
|
|
|
if (not defined $dep_mtime) {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "Skipping $dep_file for $obj, will stat() later\n" if DEBUG >= 2;
|
2008-02-13 08:40:39 +00:00
|
|
|
$not_in_cache{$dep_file} = 1;
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "Found $dep_file in cache\n" if DEBUG >= 2;
|
1999-03-09 01:31:26 +00:00
|
|
|
|
2008-02-13 08:40:39 +00:00
|
|
|
if ($dep_mtime > $mtime) {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "$dep_file($dep_mtime) newer than $obj($mtime)\n" if DEBUG;
|
1999-03-09 01:31:26 +00:00
|
|
|
}
|
2008-02-13 08:40:39 +00:00
|
|
|
elsif ($dep_mtime == -1) {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "Couldn't stat $dep_file for $obj\n" if DEBUG;
|
1999-03-09 01:31:26 +00:00
|
|
|
}
|
2008-02-13 08:40:39 +00:00
|
|
|
else {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "$dep_file($dep_mtime) older than $obj($mtime)\n" if DEBUG >= 2;
|
2008-02-13 08:40:39 +00:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
push @objs, $obj; # dependency is missing or newer
|
|
|
|
next OBJ_LOOP; # skip checking the rest of the dependencies
|
1999-03-09 01:31:26 +00:00
|
|
|
}
|
2008-02-13 08:40:39 +00:00
|
|
|
|
|
|
|
foreach my $dep_file (keys %not_in_cache) {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "STAT $dep_file for $obj\n" if DEBUG >= 2;
|
2008-02-13 08:40:39 +00:00
|
|
|
my $dep_mtime = $modtimes{$dep_file} = (stat $dep_file)[9] || -1;
|
|
|
|
|
|
|
|
if ($dep_mtime > $mtime) {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "$dep_file($dep_mtime) newer than $obj($mtime)\n" if DEBUG;
|
2008-02-13 08:40:39 +00:00
|
|
|
}
|
|
|
|
elsif ($dep_mtime == -1) {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "Couldn't stat $dep_file for $obj\n" if DEBUG;
|
2008-02-13 08:40:39 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-10-23 17:00:19 +00:00
|
|
|
print STDERR "$dep_file($dep_mtime) older than $obj($mtime)\n" if DEBUG >= 2;
|
2008-02-13 08:40:39 +00:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
push @objs, $obj; # dependency is missing or newer
|
|
|
|
next OBJ_LOOP; # skip checking the rest of the dependencies
|
|
|
|
}
|
|
|
|
|
|
|
|
# If we get here it means nothing needs to be done for $obj
|
1999-03-09 01:31:26 +00:00
|
|
|
}
|
1999-05-18 00:26:10 +00:00
|
|
|
|
|
|
|
# Output objects to rebuild (if needed).
|
2009-10-23 17:00:19 +00:00
|
|
|
if ($outfile eq '-') {
|
|
|
|
if (@objs) {
|
|
|
|
print "@objs: FORCE\n";
|
|
|
|
}
|
|
|
|
} elsif (@objs) {
|
2008-02-13 08:40:39 +00:00
|
|
|
my $old_output;
|
|
|
|
my $new_output = "@objs: FORCE\n";
|
1999-05-18 00:26:10 +00:00
|
|
|
|
|
|
|
# Read in the current dependencies file.
|
1999-05-18 22:42:44 +00:00
|
|
|
open(OLD, "<$outfile")
|
|
|
|
and $old_output = <OLD>;
|
1999-05-18 00:26:10 +00:00
|
|
|
close(OLD);
|
|
|
|
|
|
|
|
# Only write out the dependencies if they are different.
|
|
|
|
if ($new_output ne $old_output) {
|
2005-03-14 15:57:26 +00:00
|
|
|
open(OUT, ">$outfile") and print OUT "$new_output";
|
2003-11-17 06:38:05 +00:00
|
|
|
print "Updating dependencies file, $outfile\n" unless $silent;
|
2008-02-13 08:40:39 +00:00
|
|
|
if (DEBUG) {
|
1999-05-18 22:42:44 +00:00
|
|
|
print "new: $new_output\n";
|
|
|
|
print "was: $old_output\n" if $old_output ne '';
|
1999-05-18 03:46:20 +00:00
|
|
|
}
|
1999-05-18 00:26:10 +00:00
|
|
|
}
|
|
|
|
} elsif (-s $outfile) {
|
1999-05-18 22:42:44 +00:00
|
|
|
# Remove the old dependencies because all objects are up to date.
|
2003-11-17 06:38:05 +00:00
|
|
|
print "Removing old dependencies file, $outfile\n" unless $silent;
|
1999-05-18 22:42:44 +00:00
|
|
|
|
2008-02-13 08:40:39 +00:00
|
|
|
if (DEBUG) {
|
|
|
|
my $old_output;
|
1999-05-18 22:42:44 +00:00
|
|
|
open(OLD, "<$outfile")
|
|
|
|
and $old_output = <OLD>;
|
1999-05-18 03:46:20 +00:00
|
|
|
close(OLD);
|
1999-05-18 22:42:44 +00:00
|
|
|
print "was: $old_output\n";
|
1999-05-18 03:46:20 +00:00
|
|
|
}
|
|
|
|
|
1999-05-18 00:26:10 +00:00
|
|
|
unlink $outfile;
|
|
|
|
}
|