Typically, you invoke the following commands to create product ./configured:
./configure
make make install
Ok, now the product is in the system. Then you change some source code files and only call make install. The question is, does the usual implementation of the goal require installthat the executable files be recompiled, or only the old ones should be copied to the corresponding system path?
make install
install
It depends on what you are used to, of course. Here is the GNU convention :
, .. , .
: make install .
make , .
make
make helloworld. , install, helloworld /usr/bin.
helloworld
/usr/bin
, helloworld, , helloworld , . Thous, make install, make ( ).
, make install ( all), , .
all
. all , . , , . , , make install root.
This means that technically the step make make; make installis redundant.
make; make install
Source: https://habr.com/ru/post/1738643/More articles:Add information via stored procedure and PHP? - phpIs singleton thread structure safe? - c #VTD-XML data analysis performance (critical speed factor). Feedback / Comment Request - javaEclipse buildtime и классы времени выполнения для легкого выполнения тестовых примеров junit - classpathHow to combine mp3 with jpg / png / - javaNormalizing (webdav) unicode paths - filesystemsC ++ masking passwords - c ++How to add code that Waf always executes before exiting? - pythonFunctional way to get matrix from text - arraysнайти уникальные матрицы из более крупной матрицы - scalaAll Articles