-
-
Notifications
You must be signed in to change notification settings - Fork 238
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
Don't touch all files to recompile everything on Makefile changes #822
Comments
This ticket is about the "recompile everything when the Makefile changes" in case that's not clear. It currently has to touch all source files to accomplish that and that's not optimal. I'll edit the title. |
There's a makedep/depend step that generates a .d file with those dependencies. |
thanks , see it now. I removed unrelated posts. feel free to do the same to clean the issue |
Involves changes in |
It should be possible to have a single temporary file as a dependency to all others and use that to force the rebuild of everything, rather than touch everything. Perhaps the .app file can be used for this? If it's touched to 000 it should rebuild all of it. To be experimented with.
The text was updated successfully, but these errors were encountered: