mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
8 lines
116 B
Makefile
8 lines
116 B
Makefile
jq: *.hs Parser.hs Lexer.hs
|
|
ghc *.hs -o jq
|
|
|
|
Parser.hs: Parser.y
|
|
happy -i Parser.y
|
|
|
|
Lexer.hs: Lexer.x
|
|
alex Lexer.x
|