Thinking in C and *nix (CSC 282 2015S) : Outlines

Outline 09: Automating Work with Make


Held: Thursday, 2 April 2015

Back to Outline 08 - Using Macros for Logging. On to Outline 10 - Improved Make.

Summary

We consider some details of make, a useful tool for automating the steps used to build programs on *nix systems.

Related Pages

Overview

Administrivia

An introduction to Make

*target*: *required-file-1* *required-file-2* ...
        *instruction-1*
        *instruction-2*
        ...

Example: C Programming

Good Make Practice: Standard Targets

C Example

Simplifying Makefiles with Variables

C Example