summaryrefslogtreecommitdiff
path: root/bin/DependencyGenerator/NMakeDependencyWriter.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/DependencyGenerator/NMakeDependencyWriter.pm')
-rw-r--r--bin/DependencyGenerator/NMakeDependencyWriter.pm53
1 files changed, 0 insertions, 53 deletions
diff --git a/bin/DependencyGenerator/NMakeDependencyWriter.pm b/bin/DependencyGenerator/NMakeDependencyWriter.pm
deleted file mode 100644
index 903406562ac..00000000000
--- a/bin/DependencyGenerator/NMakeDependencyWriter.pm
+++ /dev/null
@@ -1,53 +0,0 @@
-package NMakeDependencyWriter;
-
-# ************************************************************
-# Description : Generates NMake dependencies.
-# Author : Chad Elliott
-# Create Date : 2/10/2002
-# ************************************************************
-
-# ************************************************************
-# Pragmas
-# ************************************************************
-
-use strict;
-use DependencyWriter;
-
-use vars qw(@ISA);
-@ISA = qw(DependencyWriter);
-
-# ************************************************************
-# Subroutine Section
-# ************************************************************
-
-sub process {
- my($sources) = $_[1];
- my($files) = $_[2];
- my($total) = 0;
-
- $$sources[0] =~ s/\//\\/g;
- $$sources[0] =~ s/\\\\/\\/g;
- my($dep) = "$$sources[0] :\\\n";
-
- ## Sort the dependencies to make them reproducible
- foreach my $file (sort @$files) {
- $file =~ s/\//\\/g;
- $file =~ s/\\\\/\\/g;
- if ($file ne $$sources[0]) {
- $dep .= "\t\"$file\"\\\n";
- ++$total;
- }
- }
-
- if ($total == 0) {
- $dep = '';
- }
- else {
- $dep .= "\n\n";
- }
-
- return $dep;
-}
-
-
-1;