Safe Haskell | None |
---|---|
Language | Haskell2010 |
- parseMakefile :: IO (Either String Makefile)
- parseAsMakefile :: FilePath -> IO (Either String Makefile)
- parseMakefileContents :: Text -> Either String Makefile
- makefile :: Parser Makefile
- entry :: Parser Entry
- assignment :: Parser Entry
- rule :: Parser Entry
- command :: Parser Command
- target :: Parser Target
- dependency :: Parser Dependency
- lazyVar :: Parser Text
- immVar :: Parser Text
- comment :: Parser Text
Documentation
parseMakefile :: IO (Either String Makefile) Source #
Parse makefile.
Tries to open and parse a file name Makefile
in the current directory.
parseAsMakefile :: FilePath -> IO (Either String Makefile) Source #
Parse the specified file as a makefile.
assignment :: Parser Entry Source #
Parser of variable assignment (see Assignment
). Note that leading and
trailing whitespaces will be stripped both from the variable name and
assigned value.
Note that this tries to follow GNU make's (crazy) behavior when it comes to variable names and assignment operators.
>>>
Atto.parseOnly assignment "foo = bar "
Right (Assignment RecursiveAssign "foo" "bar")
>>>
Atto.parseOnly assignment "foo := bar "
Right (Assignment SimpleAssign "foo" "bar")
>>>
Atto.parseOnly assignment "foo ::= bar "
Right (Assignment SimplePosixAssign "foo" "bar")
>>>
Atto.parseOnly assignment "foo?= bar "
Right (Assignment ConditionalAssign "foo" "bar")
>>>
Atto.parseOnly assignment "foo??= bar "
Right (Assignment ConditionalAssign "foo?" "bar")
>>>
Atto.parseOnly assignment "foo!?!= bar "
Right (Assignment ShellAssign "foo!?" "bar")
dependency :: Parser Dependency Source #
Parser for a (rule) dependency
lazyVar :: Parser Text Source #
Parser for variable name in declaration (lazy set, var = x
)
>>>
Atto.parseOnly lazyVar "CFLAGS=-c -Wall"
Right "CFLAGS"