Results 1 to 3 of 3
hi,
what the different comand "make" and "make && make install"??
plzz help...
- 05-14-2009 #1Just Joined!
- Join Date
- May 2009
- Posts
- 12
different command 'make'
hi,
what the different comand "make" and "make && make install"??
plzz helpLast edited by loba09; 05-14-2009 at 03:52 PM. Reason: wrong type
- 05-14-2009 #2
Make is the command that compiles and builds a program. Each module is compiled and then they are linked together to form an executable program. Make install copies the program and any other installable files (such as documentation, icons, etc) to the directories where they should go.
The double ampersand && means: do make first and, if it completes without error, do make install. It's just a slightly quicker alternative to doing make first and make install afterwards."I'm just a little old lady; don't try to dazzle me with jargon!"
- 05-22-2009 #3
Hazel has pretty much answered this, but I wanted to add that 'make' on its own does the same job as 'make all'. In both cases of 'make' and 'make install' make is accepting a desired option to perform.


Reply With Quote
