LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   make and make bzimage (https://www.linuxquestions.org/questions/linux-newbie-8/make-and-make-bzimage-790975/)

_Linux_Learner 02-23-2010 05:30 AM

make and make bzimage
 
Hi all

Please explain me the difference between make and make bzImage commands as both are used to build source code.

regards
_Linux_Learner

shpenat 02-23-2010 05:38 AM

Code:

make
is used to drive compilation of source code. It reads makefile created by ./configure program

Code:

make bzimage
is make with bzimage argument. It is somewhat similar with
Code:

make clean
. It means you dont want to run whole makefile, but only its part. Parameter bzimage was used in 2.4 series of kernel for kernel compilation and was followed by make modules to to compile modules separately. Newer 2.6 kernels uses only make to do both tasks in one run.


All times are GMT -5. The time now is 05:19 PM.