Introduction to make
Last modified
- Read Overview of make
- Read
An Introduction to Makefiles
through and including
How
make
Processes a Makefile
Self Study
-
What criteria does
make
use to determine if a particular file needs to be re-built? -
Why doesn’t
make
just recompile all files in a project every time? -
Can you think of any applications of
make
for projects that may not follow the conventional “compile source code into a working binary” workflow? -
Write out a pseudo-code progam that would process a simple
Makefile
consisting of only rules (i.e. only the parts covered in the reading, no variable assignment or other features).