"make all" command for building a software
I'm about to build a software but the phase is confuse for me. (I'm beginner about fedora) I put the command "make all" in the specific folder and then something was installed. However there are more phase and do I have to follow this phase after make all?
Building the software a. build all all you need is to simply type "make all".
b. build individual modules cd into the appropriate directory to edit and type "make"
c. build a specific agent there are three agents in this package. They are "dut", "ca" and "tc", standing for "Device Under Test", "Control Agent" and "Test Console" respectively.
To build one of them only, you need to edit the file "Makefile.inc" to comment rest of modules out
d. clean modules and object files simply type "make clean" or cd into the module directories,
type "make clean"