Shell

Static Libraries

Static Libraries

How to Create and Use a Static Library What is a Static Library? A static library is an archive (.a) that groups together multiple object files (.o). The code from this archive is copied at link time.

Read More
Makefiles

Makefiles

Make is used to manage executables and program compilation, and it is very effective for large projects because it recompiles only what has changed.

Read More