LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   Questions on the Make command (https://www.linuxquestions.org/questions/linux-general-1/questions-on-the-make-command-356521/)

oasisbhrnw99 08-24-2005 10:50 AM

Questions on the Make command
 
I know what make, and make install do, but I am confused as to what the following commands do:

make dep
make dist
make all

Any help is appreciated, thanks.

Robert

jtshaw 08-24-2005 12:12 PM

the "make" program simply executes a script (aka a Makefile). The Makefile ultimately determines what the targets mean (dep, all, ect. are targets).

Typically, make dep will build any dependencies involved in the project. The all target designates that everything should be built, and the dist probably means to build a binary distribution of the software.

However, the only way to be sure exactly what a target does is to read the Makefile and find out.


All times are GMT -5. The time now is 03:18 AM.