shake-0.10.4: Examples/Test/Makefile.hs
module Examples.Test.Makefile(main) where
import Development.Shake(action, liftIO)
import Development.Shake.FilePath
import qualified Start as Makefile
import System.Environment
import System.Directory
import Examples.Util
import Control.Monad
import Data.List
import Data.Maybe
main = shaken test $ \args obj ->
action $ liftIO $ do
unless (["@@"] `isPrefixOf` args) $
error "The 'makefile' example should only be used in test mode, to test using a makefile use the 'make' example."
withArgs [fromMaybe x $ stripPrefix "@" x | x <- drop 1 args] Makefile.main
test build obj = do
let copyTo from to = do
xs <- getDirectoryContents from
createDirectoryIfMissing True (obj to)
forM_ xs $ \x ->
when (not $ all (== '.') x) $
copyFile (from </> x) (obj to </> x)
copyTo "Examples/MakeTutor" "MakeTutor"
build ["@@","--directory=" ++ obj "MakeTutor","--no-report"]
build ["@@","--directory=" ++ obj "MakeTutor","--no-report"]
build ["@@","--directory=" ++ obj "MakeTutor","@clean","--no-report"]