Does "make install", by convention, updates the targets it installs?
Posted
by Pavel Shved
on Stack Overflow
See other posts from Stack Overflow
or by Pavel Shved
Published on 2010-03-26T11:04:08Z
Indexed on
2010/03/26
11:13 UTC
Read the original article
Hit count: 220
You usually invoke the following commands to build a ./configured product:
make
make install
Okay, the product is in the system now. Then you change some source code files and invoke only make install. The question is, does the conventional implementation of install target requires the executables to be recompiled, or just the old ones should be copied to the appropriate system path?
© Stack Overflow or respective owner