In relatively big projects which are using plain old make
, even building the project when nothing has changed takes a few tens of seconds. Especially with many executions of make -C
, which have the new process overhead.
The obvious solution to this problem is a build tool based on inotify
-like feature of the OS. It would look out when a certain file is changed, and based on that list it would compile this file alone.
Is there such machinery out there? Bonus points for open source projects.