While writing make files to compile kernel modules we might come across the error make: Nothing to be done for `default'. The common c...Read more »

The Magician Of Linux
While writing make files to compile kernel modules we might come across the error make: Nothing to be done for `default'. The common c...Read more »
Conditions can be added in makefiles using "if" conditions, to ensure the commands get executed only under certain conditions. ...Read more »
Prev: make is smart We can use variables in makefile to prevent typing the same strings over and over and also make the file more easy to u...Read more »
Prev: Multiple independent targets Till now to compile a c program we have passed the command to the makefile to compile a given c code. Bu...Read more »
Prev: Multiple dependent targets The make command when executed with out any arguments always tries to create the first target. But in on...Read more »
Makefiles: Introduction Makefiles are the files used by the utility make. make helps in compiling a source code into an executable or autom...Read more »