From 93e677f64e39c2398c630d2ddff00b1bff0bf401 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Tue, 11 Apr 2006 13:53:34 +0000 Subject: [PATCH] Omit lndir on Windows, as it used to be --- utils/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/utils/Makefile b/utils/Makefile index 9416d77..b4a7ba1 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -8,7 +8,7 @@ else ifeq "$(BootingFromHc)" "YES" SUBDIRS = mkdependC mkdirhier runstdtest genapply genprimopcode ghc-pkg unlit else -SUBDIRS = mkdependC mkdirhier runstdtest ghc-pkg hasktags hp2ps hsc2hs lndir \ +SUBDIRS = mkdependC mkdirhier runstdtest ghc-pkg hasktags hp2ps hsc2hs \ parallel prof unlit genprimopcode genapply runghc endif endif @@ -17,6 +17,12 @@ ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" SUBDIRS += touchy endif +ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" +# lndir doesn't build on Windows +SUBDIRS += lndir +endif + + # Utils that we don't build by default: # nofib-analyse -- 1.7.10.4