blob: abf6933b564a83110b6a805a995420c774910c61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
module Rules.Clean (clean, cleanSourceTree, cleanRules) where
import qualified System.Directory as IO
import Base
clean :: Action ()
clean = do
putBuild "| Removing Hadrian files..."
cleanSourceTree
path <- buildRoot
putBuild $ "| Remove directory " ++ path ++ " (after build completes)"
runAfter $ IO.removeDirectoryRecursive path -- since we can't delete the Shake database while Shake is running
putSuccess "| Done. "
cleanSourceTree :: Action ()
cleanSourceTree = do
path <- buildRoot
forM_ [Stage0 ..] $ removeDirectory . (path -/-) . stageString
removeDirectory "sdistprep"
cleanFsUtils
-- Clean all temporary fs files copied by configure into the source folder
cleanFsUtils :: Action ()
cleanFsUtils = do
let dirs = [ "utils/lndir/"
, "utils/unlit/"
, "rts/"
, "libraries/base/include/"
, "libraries/base/cbits/"
]
liftIO $ forM_ dirs (flip removeFiles ["fs.*"])
cleanRules :: Rules ()
cleanRules = "clean" ~> clean
|