shake-ext-2.3.0.0: src/Development/Shake/C.hs
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)