You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Makefile is often used as a generic build tool. In fact, Macaron itself uses Makefile to generate artifacts. We already have support for a number of build tools.
To support Makefile
we need to add a parser for Makefile to extract shell commands, similar to our bashparser.
add a new module for make similar to other build tools.
The text was updated successfully, but these errors were encountered:
I poked around a little, and here are a few references. First off, It would be tricky to write a grammar for make, since the grammar is extremely context-dependent. (thread, similar questions here or especially here).
Having said that, I found the following attempts to come up with a Makefile grammar:
Makefile is often used as a generic build tool. In fact, Macaron itself uses
Makefile
to generate artifacts. We already have support for a number of build tools.To support
Makefile
Makefile
to extract shell commands, similar to our bashparser.make
similar to other build tools.The text was updated successfully, but these errors were encountered: