What are the three steps of the compilation process
What happens during preprocessing
What happens during assembly code creation (compiling)
What happens during machine code creation
What happens during linking
What are the gcc commands for assembling and linking
gcc -c generates object files
gcc -o to link .o files (machine code)
What are the first two lines of a makefile
1st line indicates dependencies, all object files that need to be compiled
2st line builds executable by linking the necessary .o files