2012-01-27 12:22:36 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2012-01-23 04:18:40 +00:00
|
|
|
module Flag where
|
|
|
|
|
|
|
|
import Types
|
2012-02-14 07:09:53 +00:00
|
|
|
import qualified Gap
|
2012-01-23 04:18:40 +00:00
|
|
|
|
|
|
|
listFlags :: Options -> IO String
|
2012-02-14 07:09:53 +00:00
|
|
|
listFlags opt = return $ convert opt [ "-f" ++ prefix ++ option
|
|
|
|
| option <- Gap.fOptions
|
|
|
|
, prefix <- ["","no-"]
|
|
|
|
]
|