diff options
author | simonmar <unknown> | 2001-04-24 13:48:01 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-04-24 13:48:01 +0000 |
commit | 1e61a47aa3b81be8cf6e5b30e041e552d226b409 (patch) | |
tree | 65a263fcefd8bbb89d65f1a326b58fc91ec7bc64 /distrib/hc-build | |
parent | c4822c8eb75c847e14ac71d3660fd8c939799e72 (diff) | |
download | haskell-1e61a47aa3b81be8cf6e5b30e041e552d226b409.tar.gz |
[project @ 2001-04-24 13:48:01 by simonmar]
remove some unnecessary hacks (eg. building in ghc/utils/unlit early).
Diffstat (limited to 'distrib/hc-build')
-rw-r--r-- | distrib/hc-build | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/distrib/hc-build b/distrib/hc-build index c96d4ab8a8..3f1824a22c 100644 --- a/distrib/hc-build +++ b/distrib/hc-build @@ -38,7 +38,6 @@ touch ghc/compiler/main/ParsePkgConf.hs echo "*** Building hsc..." ./configure --enable-hc-boot $configopts $MAKE -C glafp-utils boot all -$MAKE -C ghc/utils/unlit boot all $MAKE -C ghc boot $MAKE -C hslibs boot all $MAKE -C ghc all @@ -46,9 +45,9 @@ $MAKE -C ghc all echo "*** Building libraries..." ./configure -# clean in ghc/lib, but avoid removing hsc2hs-generated .hs files -$MAKE -C ghc/lib clean HSC_SRCS="" -$MAKE -C ghc/lib boot all - -$MAKE -C hslibs clean boot all -$MAKE -C ghc/utils clean boot all +$MAKE -C ghc/lib clean boot +$MAKE -C ghc/lib all +$MAKE -C hslibs clean boot +$MAKE -C hslibs all +$MAKE -C ghc/utils clean boot +$MAKE -C ghc/utils all |