-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can kati be used for conversion of ordinary makefiles? #165
Comments
Depending on your makefile, it may be possible, yes. The most likely problem that you may run into is that Kati does not support recursive make when combined with the ninja output. Android uses a bunch of arguments to kati:
But you can probably start with something simple, depending on the structure of your build (this assumes you write everything into an out/* directory):
If your source tree is large, I'd recommend trying
Many of the rest are for extra warnings / errors that help bring sanity to large & diverse codebases. If you do move to Kati, there are a number of extensions to the make language as well -- |
I don't see any reference to an input makefile in this command:
Does it mean that ckati does not take input arguments, and instead it crawls my project looking for makefiles? Or does the makefile have to be in the current directory and named |
If I have the makefile for some project, can I use kati to convert the makefile to ninja file and make by ninja. If it can works, it can make 'make' more fast.
If it can, could you write to tell us how we convert?
The text was updated successfully, but these errors were encountered: