56 Chapter 3
Linker Tasks
Using the Compiler to Link
$f77 -c func.f Produce .o for func.f.
$ls func.o
func.o Verify that func.o was created.
$f77 main.f func.o Compile main.f with func.o
$a.out Run it to verify it worked.