-- | Values that reference a list of file paths. module System.Build.OutputReferenceGet( OutputReferenceGet, getReference ) where class OutputReferenceGet r where -- | Return the file paths referenced by the given value. getReference :: r -> [FilePath]