I downloaded the wget program from http://ftp.gnu.org/gnu/wget/, and installed it using ./configure; make; sudo make install. Now, suppose I change the source code that was downloaded. What command exactly would I need to run in order for the changes to apply?
I downloaded the wget program from http://ftp.gnu.org/gnu/wget/ , and installed it using ./configure; make;
Share
The same three.
./configurefor configuration for current system and code,maketo rebuild the program, andsudo make installto install the modified version.