1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.cds-adv-prog/ex2.4/build.txt

13 lines
155 B
Plaintext

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