summaryrefslogtreecommitdiff
path: root/bin/DependencyGenerator/GNUDependencyWriter.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/DependencyGenerator/GNUDependencyWriter.pm')
-rw-r--r--bin/DependencyGenerator/GNUDependencyWriter.pm33
1 files changed, 0 insertions, 33 deletions
diff --git a/bin/DependencyGenerator/GNUDependencyWriter.pm b/bin/DependencyGenerator/GNUDependencyWriter.pm
deleted file mode 100644
index a0f526befb9..00000000000
--- a/bin/DependencyGenerator/GNUDependencyWriter.pm
+++ /dev/null
@@ -1,33 +0,0 @@
-package GNUDependencyWriter;
-
-# ************************************************************
-# Description : Generates GNU Makefile 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($objects) = $_[1];
- my($files) = $_[2];
-
- ## Sort the dependencies to make them reproducible
- return '$(sort '. join(' ', @{$objects}). "): \\\n "
- . join(" \\\n ", sort @$files) . "\n";
-}
-
-
-1;