d)
g++ -c max.cc;
g++ -c min.cc;
// compile directly
g++ max.cc min.cc test.cpp
// make archive
ar q libMinMax.a max.o min.o
g++ test.cpp -L. -lMinMax