module Development.Shake.C ( staticLib -- , objectFile -- , dynLib ) where import Development.Shake staticLib :: [FilePath] -> FilePattern -> Rules () staticLib objFiles stalib = stalib %> \out -> command mempty "ar" ("rcs" : out : objFiles)