PrepAway - Latest Free Exam Questions & Answers

What command can you run to compile the code?

While installing from source code you don’t see the configuration script. What command can you run to compile the code?

PrepAway - Latest Free Exam Questions & Answers

A.
make configure

B.
install

C.
install makefile

D.
make

Explanation:
The purpose of the make utility is to determine automatically which pieces of a large program need to be recompiled, and issue the commands to recompile them.
example C programs, since they are most common, but you can use make with any programming language whose compiler can be run with a shell command. In
fact, make is not limited to programs. You can use it to describe any task where some files must be updated automatically from others whenever the others
change. To prepare to use make, you must write a file called the makefile that describes the relationships among files in your program, and the states the
commands for updating each file. In a program,typically the executable file is updated from object files, which are in turn made by compiling source files. So, make
command compile the source code.


Leave a Reply