-- | For building a command for values that use paths.
module System.Build.CompilePaths(
                                  CompilePaths,
                                  (=>>)
                                ) where

class CompilePaths c where
  -- | Builds a command for a value given a list of file paths.
  (=>>) :: c -> [FilePath] -> String