Hello Joakim, * Joakim Tjernlund wrote on Wed, Nov 30, 2011 at 08:11:31AM PST: > Question: "make install" always install all targets, even if some of then > haven't been rebuilt > since last install. Is it possible to have some dependency sensitive install > so only rebuilt > targets are reinstalled?
You want 'install -C'. Recent install-sh also supports -C. On GNU/Linux: make install INSTALL='install -C' elsewhere: make install INSTALL='/path/to/install-sh -C' (untested) Cheers, Ralf