From: sof Date: Fri, 24 Jan 1997 08:56:57 +0000 (+0000) Subject: [project @ 1997-01-24 08:56:57 by sof] X-Git-Tag: Approximately_1000_patches_recorded~833 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1c37333b30056142c5259226b1b7ff1e3d12e5d1;p=ghc-hetmet.git [project @ 1997-01-24 08:56:57 by sof] Unused for new build system --- diff --git a/ghc/lib/make_extra_deps b/ghc/lib/make_extra_deps deleted file mode 100644 index 7c1f74a..0000000 --- a/ghc/lib/make_extra_deps +++ /dev/null @@ -1,31 +0,0 @@ -#! /usr/local/bin/perl -# see comments in ghc/lib/Jmakefile - -open(MKF, "< Makefile") || die "Can't open Makefile\n"; - -# read down to start of dependencies -while () { - last if /# DO NOT DELETE: Beginning of Haskell dependencies/; -} - -# slurp through dependencies, duplicating them -while () { - last if /# DO NOT DELETE: End of Haskell dependencies/; - chop; - - foreach $k ( '_p', '_t', - '_mc', '_mr', '_mt', '_mp', '_mg', - '_2s', '_1s', '_du', - '_a', '_b', '_c', '_d', '_e', '_f', '_g', '_h', - '_i', '_j', '_k', '_o', '_m', '_n', '_o', '_A', '_B' ) { - $copy = $_; - - # change all .hc and .hi - $copy =~ s/\.hc\b/$k.hc/; - $copy =~ s/\.hi\b/$k.hi/; - - print STDOUT "IfBuild$k(", $copy, ")\n"; - } -} - -close(MKF) || die "Failed in closing Makefile\n";