[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Incremental build options
From: |
Edward Welbourne |
Subject: |
Re: Incremental build options |
Date: |
Thu, 14 Dec 2017 14:14:19 +0000 |
Dhananjaiah Gurram (14 December 2017 10:09)
> We are using tasking compiler and working on incremental build for my
> makefile.
>
> I am trying from last one week to know incremental build options.
>
> Could you please send me the options for incremental build.
Incremental is what make does by default.
You don't need to pass it any special options to get that.
It rebuilds things that are missing or depend on newer things.
After a build, what it has built is newer than what it depends on.
So, when next you build, it'll only rebuild targets that depend on
something that's changed since your last build.
Eddy.