[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
In general, a rule looks like this:
targets : prerequisites recipe … |
or like this:
targets : prerequisites ; recipe recipe … |
The targets are file names, separated by spaces. Wildcard characters may be used (see section Using Wildcard Characters in File Names) and a name of the form ‘a(m)’ represents member m in archive file a (see section Archive Members as Targets). Usually there is only one target per rule, but occasionally there is a reason to have more (see section Multiple Targets in a Rule).
The recipe lines start with a tab character (or the first
character in the value of the .RECIPEPREFIX
variable;
see section Other Special Variables). The first recipe line may appear on the line
after the prerequisites, with a tab character, or may appear on the
same line, with a semicolon. Either way, the effect is the same.
There are other differences in the syntax of recipes.
See section Writing Recipes in Rules.
Because dollar signs are used to start make
variable
references, if you really want a dollar sign in a target or
prerequisite you must write two of them, ‘$$’ (see section How to Use Variables). If you have enabled secondary
expansion (see section Secondary Expansion) and you want a literal dollar
sign in the prerequisites list, you must actually write four
dollar signs (‘$$$$’).
You may split a long line by inserting a backslash followed by a
newline, but this is not required, as make
places no limit on
the length of a line in a makefile.
A rule tells make
two things: when the targets are out of date,
and how to update them when necessary.
The criterion for being out of date is specified in terms of the
prerequisites, which consist of file names separated by spaces.
(Wildcards and archive members (see section Using make
to Update Archive Files) are allowed here too.)
A target is out of date if it does not exist or if it is older than any
of the prerequisites (by comparison of last-modification times). The
idea is that the contents of the target file are computed based on
information in the prerequisites, so if any of the prerequisites changes,
the contents of the existing target file are no longer necessarily
valid.
How to update is specified by a recipe. This is one or more lines to be executed by the shell (normally ‘sh’), but with some extra features (see section Writing Recipes in Rules).
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] |
This document was generated by Davide Tacchella on November 3, 2010 using texi2html 1.82.