diff options
author | simonpj@microsoft.com <unknown> | 2006-04-11 13:53:34 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2006-04-11 13:53:34 +0000 |
commit | 93e677f64e39c2398c630d2ddff00b1bff0bf401 (patch) | |
tree | 860d9a2bb6f9cd3b540d463861a311beb2dc703d /utils/Makefile | |
parent | 92e1b7accd21ea69c9890b266ec719ab54aef4eb (diff) | |
download | haskell-93e677f64e39c2398c630d2ddff00b1bff0bf401.tar.gz |
Omit lndir on Windows, as it used to be
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile index 9416d7728b..b4a7ba1c0f 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 |