Add support for "::=" simple assignment operator.
[make.git] / doc / make.texi
blobe0de04d5ef11febc2d52fa31d3e56c061f998b68
1 \input texinfo                @c -*- Texinfo -*-
2 @c %**start of header
3 @setfilename make.info
5 @include version.texi
6 @set EDITION 0.72
7 @set RCSID $Id: make.texi,v 1.78 2012/01/30 00:21:58 psmith Exp $
9 @settitle GNU @code{make}
10 @setchapternewpage odd
11 @c Combine the variable and function indices:
12 @syncodeindex vr fn
13 @c Combine the program and concept indices:
14 @syncodeindex pg cp
15 @c FSF publishers: format makebook.texi instead of using this file directly.
16 @c ISBN confirmed by Jasimin Huang <jasimin@fsf.org> on 25 Mar 2009
17 @set ISBN 1-882114-83-3
18 @c %**end of header
20 @copying
21 This file documents the GNU @code{make} utility, which determines
22 automatically which pieces of a large program need to be recompiled,
23 and issues the commands to recompile them.
25 This is Edition @value{EDITION}, last updated @value{UPDATED},
26 of @cite{The GNU Make Manual}, for GNU @code{make} version @value{VERSION}.
28 Copyright @copyright{} 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
29 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007,
30 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
32 @quotation
33 Permission is granted to copy, distribute and/or modify this document
34 under the terms of the GNU Free Documentation License, Version 1.3 or
35 any later version published by the Free Software Foundation; with no
36 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
37 and with the Back-Cover Texts as in (a) below.  A copy of the
38 license is included in the section entitled ``GNU Free Documentation
39 License.''
41 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
42 modify this GNU manual.  Buying copies from the FSF supports it in
43 developing GNU and promoting software freedom.''
44 @end quotation
45 @end copying
47 @c finalout
49 @c ISPELL CHECK: done, 10 June 1993 --roland
50 @c ISPELL CHECK: done, 2000-06-25 --Martin Buchholz
53 @dircategory Software development
54 @direntry
55 * Make: (make).            Remake files automatically.
56 @end direntry
58 @iftex
59 @shorttitlepage GNU Make
60 @end iftex
61 @titlepage
62 @title GNU Make
63 @subtitle A Program for Directing Recompilation
64 @subtitle GNU @code{make} Version @value{VERSION}
65 @subtitle @value{UPDATED-MONTH}
66 @author Richard M. Stallman, Roland McGrath, Paul D. Smith
67 @page
68 @vskip 0pt plus 1filll
69 @insertcopying
70 @sp 2
71 Published by the Free Software Foundation @*
72 51 Franklin St. -- Fifth Floor @*
73 Boston, MA 02110-1301 USA @*
74 ISBN @value{ISBN} @*
75 @sp 2
76 Cover art by Etienne Suvasa.
77 @end titlepage
79 @summarycontents
80 @contents
82 @ifnottex
83 @node Top, Overview, (dir), (dir)
84 @top GNU @code{make}
86 @insertcopying
87 @end ifnottex
89 @menu
90 * Overview::                    Overview of @code{make}.
91 * Introduction::                An introduction to @code{make}.
92 * Makefiles::                   Makefiles tell @code{make} what to do.
93 * Rules::                       Rules describe when a file must be remade.
94 * Recipes::                     Recipes say how to remake a file.
95 * Using Variables::             You can use variables to avoid repetition.
96 * Conditionals::                Use or ignore parts of the makefile based
97                                   on the values of variables.
98 * Functions::                   Many powerful ways to manipulate text.
99 * Invoking make: Running.       How to invoke @code{make} on the command line.
100 * Implicit Rules::              Use implicit rules to treat many files alike,
101                                   based on their file names.
102 * Archives::                    How @code{make} can update library archives.
103 * Features::                    Features GNU @code{make} has over other @code{make}s.
104 * Missing::                     What GNU @code{make} lacks from other @code{make}s.
105 * Makefile Conventions::        Conventions for writing makefiles for
106                                   GNU programs.
107 * Quick Reference::             A quick reference for experienced users.
108 * Error Messages::              A list of common errors generated by @code{make}.
109 * Complex Makefile::            A real example of a straightforward,
110                                   but nontrivial, makefile.
112 * GNU Free Documentation License::  License for copying this manual.
113 * Concept Index::               Index of Concepts.
114 * Name Index::                  Index of Functions, Variables, & Directives.
116 @detailmenu
117  --- The Detailed Node Listing ---
119 Overview of @code{make}
121 * Preparing::                   Preparing and running @code{make}.
122 * Reading::                     On reading this text.
123 * Bugs::                        Problems and bugs.
125 An Introduction to Makefiles
127 * Rule Introduction::           What a rule looks like.
128 * Simple Makefile::             A simple makefile.
129 * How Make Works::              How @code{make} processes this makefile.
130 * Variables Simplify::          Variables make makefiles simpler.
131 * make Deduces::                Letting @code{make} deduce the recipes.
132 * Combine By Prerequisite::     Another style of makefile.
133 * Cleanup::                     Rules for cleaning the directory.
135 Writing Makefiles
137 * Makefile Contents::           What makefiles contain.
138 * Makefile Names::              How to name your makefile.
139 * Include::                     How one makefile can use another makefile.
140 * MAKEFILES Variable::          The environment can specify extra makefiles.
141 * Remaking Makefiles::          How makefiles get remade.
142 * Overriding Makefiles::        How to override part of one makefile
143                                   with another makefile.
144 * Reading Makefiles::           How makefiles are parsed.
145 * Secondary Expansion::         How and when secondary expansion is performed.
147 Writing Rules
149 * Rule Example::                An example explained.
150 * Rule Syntax::                 General syntax explained.
151 * Prerequisite Types::          There are two types of prerequisites.
152 * Wildcards::                   Using wildcard characters such as `*'.
153 * Directory Search::            Searching other directories for source files.
154 * Phony Targets::               Using a target that is not a real file's name.
155 * Force Targets::               You can use a target without a recipe
156                                   or prerequisites to mark other targets
157                                   as phony.
158 * Empty Targets::               When only the date matters and the
159                                   files are empty.
160 * Special Targets::             Targets with special built-in meanings.
161 * Multiple Targets::            When to make use of several targets in a rule.
162 * Multiple Rules::              How to use several rules with the same target.
163 * Static Pattern::              Static pattern rules apply to multiple targets
164                                   and can vary the prerequisites according to
165                                   the target name.
166 * Double-Colon::                How to use a special kind of rule to allow
167                                   several independent rules for one target.
168 * Automatic Prerequisites::     How to automatically generate rules giving
169                                   prerequisites from source files themselves.
171 Using Wildcard Characters in File Names
173 * Wildcard Examples::           Several examples.
174 * Wildcard Pitfall::            Problems to avoid.
175 * Wildcard Function::           How to cause wildcard expansion where
176                                   it does not normally take place.
178 Searching Directories for Prerequisites
180 * General Search::              Specifying a search path that applies
181                                   to every prerequisite.
182 * Selective Search::            Specifying a search path
183                                   for a specified class of names.
184 * Search Algorithm::            When and how search paths are applied.
185 * Recipes/Search::              How to write recipes that work together
186                                   with search paths.
187 * Implicit/Search::             How search paths affect implicit rules.
188 * Libraries/Search::            Directory search for link libraries.
190 Static Pattern Rules
192 * Static Usage::                The syntax of static pattern rules.
193 * Static versus Implicit::      When are they better than implicit rules?
195 Writing Recipes in Rules
197 * Recipe Syntax::               Recipe syntax features and pitfalls.
198 * Echoing::                     How to control when recipes are echoed.
199 * Execution::                   How recipes are executed.
200 * Parallel::                    How recipes can be executed in parallel.
201 * Errors::                      What happens after a recipe execution error.
202 * Interrupts::                  What happens when a recipe is interrupted.
203 * Recursion::                   Invoking @code{make} from makefiles.
204 * Canned Recipes::              Defining canned recipes.
205 * Empty Recipes::               Defining useful, do-nothing recipes.
207 Recipe Syntax
209 * Splitting Lines::             Breaking long recipe lines for readability.
210 * Variables in Recipes::        Using @code{make} variables in recipes.
212 Recipe Execution
214 * One Shell::                   One shell for all lines in a recipe.
215 * Choosing the Shell::          How @code{make} chooses the shell used
216                                   to run recipes.
218 Recursive Use of @code{make}
220 * MAKE Variable::               The special effects of using @samp{$(MAKE)}.
221 * Variables/Recursion::         How to communicate variables to a sub-@code{make}.
222 * Options/Recursion::           How to communicate options to a sub-@code{make}.
223 * -w Option::                   How the @samp{-w} or @samp{--print-directory} option
224                                   helps debug use of recursive @code{make} commands.
226 How to Use Variables
228 * Reference::                   How to use the value of a variable.
229 * Flavors::                     Variables come in two flavors.
230 * Advanced::                    Advanced features for referencing a variable.
231 * Values::                      All the ways variables get their values.
232 * Setting::                     How to set a variable in the makefile.
233 * Appending::                   How to append more text to the old value
234                                   of a variable.
235 * Override Directive::          How to set a variable in the makefile even if
236                                   the user has set it with a command argument.
237 * Multi-Line::                  An alternate way to set a variable
238                                   to a multi-line string.
239 * Undefine Directive::          How to undefine a variable so that it appears
240                                   as if it was never set.
241 * Environment::                 Variable values can come from the environment.
242 * Target-specific::             Variable values can be defined on a per-target
243                                   basis.
244 * Pattern-specific::            Target-specific variable values can be applied
245                                   to a group of targets that match a pattern.
246 * Suppressing Inheritance::     Suppress inheritance of variables.
247 * Special Variables::           Variables with special meaning or behavior.
249 Advanced Features for Reference to Variables
251 * Substitution Refs::           Referencing a variable with
252                                   substitutions on the value.
253 * Computed Names::              Computing the name of the variable to refer to.
255 Conditional Parts of Makefiles
257 * Conditional Example::         Example of a conditional
258 * Conditional Syntax::          The syntax of conditionals.
259 * Testing Flags::               Conditionals that test flags.
261 Functions for Transforming Text
263 * Syntax of Functions::         How to write a function call.
264 * Text Functions::              General-purpose text manipulation functions.
265 * File Name Functions::         Functions for manipulating file names.
266 * Conditional Functions::       Functions that implement conditions.
267 * Foreach Function::            Repeat some text with controlled variation.
268 * File Function::               Write text to a file.
269 * Call Function::               Expand a user-defined function.
270 * Value Function::              Return the un-expanded value of a variable.
271 * Eval Function::               Evaluate the arguments as makefile syntax.
272 * Origin Function::             Find where a variable got its value.
273 * Flavor Function::             Find out the flavor of a variable.
274 * Make Control Functions::      Functions that control how make runs.
275 * Shell Function::              Substitute the output of a shell command.
276 * Guile Function::              Call the GNU Guile embedded scripting language.
278 The @code{guile} Function
280 * Guile Types::                 Converting Guile types to @code{make} strings.
281 * Guile Interface::             Invoking @code{make} functions from Guile.
282 * Guile Example::               Example using Guile in @code{make}.
284 How to Run @code{make}
286 * Makefile Arguments::          How to specify which makefile to use.
287 * Goals::                       How to use goal arguments to specify which
288                                   parts of the makefile to use.
289 * Instead of Execution::        How to use mode flags to specify what
290                                   kind of thing to do with the recipes
291                                   in the makefile other than simply
292                                   execute them.
293 * Avoiding Compilation::        How to avoid recompiling certain files.
294 * Overriding::                  How to override a variable to specify
295                                   an alternate compiler and other things.
296 * Testing::                     How to proceed past some errors, to
297                                   test compilation.
298 * Options Summary::             Summary of Options
300 Using Implicit Rules
302 * Using Implicit::              How to use an existing implicit rule
303                                   to get the recipes for updating a file.
304 * Catalogue of Rules::          A list of built-in implicit rules.
305 * Implicit Variables::          How to change what predefined rules do.
306 * Chained Rules::               How to use a chain of implicit rules.
307 * Pattern Rules::               How to define new implicit rules.
308 * Last Resort::                 How to define a recipe for rules which
309                                   cannot find any.
310 * Suffix Rules::                The old-fashioned style of implicit rule.
311 * Implicit Rule Search::        The precise algorithm for applying
312                                   implicit rules.
314 Defining and Redefining Pattern Rules
316 * Pattern Intro::               An introduction to pattern rules.
317 * Pattern Examples::            Examples of pattern rules.
318 * Automatic Variables::         How to use automatic variables in the
319                                   recipe of implicit rules.
320 * Pattern Match::               How patterns match.
321 * Match-Anything Rules::        Precautions you should take prior to
322                                   defining rules that can match any
323                                   target file whatever.
324 * Canceling Rules::             How to override or cancel built-in rules.
326 Using @code{make} to Update Archive Files
328 * Archive Members::             Archive members as targets.
329 * Archive Update::              The implicit rule for archive member targets.
330 * Archive Pitfalls::            Dangers to watch out for when using archives.
331 * Archive Suffix Rules::        You can write a special kind of suffix rule
332                                   for updating archives.
334 Implicit Rule for Archive Member Targets
336 * Archive Symbols::             How to update archive symbol directories.
338 @end detailmenu
339 @end menu
341 @node Overview, Introduction, Top, Top
342 @comment  node-name,  next,  previous,  up
343 @chapter Overview of @code{make}
345 The @code{make} utility automatically determines which pieces of a large
346 program need to be recompiled, and issues commands to recompile them.
347 This manual describes GNU @code{make}, which was implemented by Richard
348 Stallman and Roland McGrath.  Development since Version 3.76 has been
349 handled by Paul D. Smith.
351 GNU @code{make} conforms to section 6.2 of @cite{IEEE Standard
352 1003.2-1992} (POSIX.2).
353 @cindex POSIX
354 @cindex IEEE Standard 1003.2
355 @cindex standards conformance
357 Our examples show C programs, since they are most common, but you can use
358 @code{make} with any programming language whose compiler can be run with a
359 shell command.  Indeed, @code{make} is not limited to programs.  You can
360 use it to describe any task where some files must be updated automatically
361 from others whenever the others change.
363 @menu
364 * Preparing::                   Preparing and running @code{make}.
365 * Reading::                     On reading this text.
366 * Bugs::                        Problems and bugs.
367 @end menu
369 @node Preparing, Reading, Overview, Overview
370 @ifnottex
371 @heading Preparing and Running Make
372 @end ifnottex
374 To prepare to use @code{make}, you must write a file called
375 the @dfn{makefile} that describes the relationships among files
376 in your program and provides commands for updating each file.
377 In a program, typically, the executable file is updated from object
378 files, which are in turn made by compiling source files.@refill
380 Once a suitable makefile exists, each time you change some source files,
381 this simple shell command:
383 @example
384 make
385 @end example
387 @noindent
388 suffices to perform all necessary recompilations.  The @code{make} program
389 uses the makefile data base and the last-modification times of the files to
390 decide which of the files need to be updated.  For each of those files, it
391 issues the recipes recorded in the data base.
393 You can provide command line arguments to @code{make} to control which
394 files should be recompiled, or how.  @xref{Running, ,How to Run
395 @code{make}}.
397 @node Reading, Bugs, Preparing, Overview
398 @section How to Read This Manual
400 If you are new to @code{make}, or are looking for a general
401 introduction, read the first few sections of each chapter, skipping the
402 later sections.  In each chapter, the first few sections contain
403 introductory or general information and the later sections contain
404 specialized or technical information.
405 @ifnottex
406 The exception is the second chapter, @ref{Introduction, ,An
407 Introduction to Makefiles}, all of which is introductory.
408 @end ifnottex
409 @iftex
410 The exception is @ref{Introduction, ,An Introduction to Makefiles},
411 all of which is introductory.
412 @end iftex
414 If you are familiar with other @code{make} programs, see @ref{Features,
415 ,Features of GNU @code{make}}, which lists the enhancements GNU
416 @code{make} has, and @ref{Missing, ,Incompatibilities and Missing
417 Features}, which explains the few things GNU @code{make} lacks that
418 others have.
420 For a quick summary, see @ref{Options Summary}, @ref{Quick Reference},
421 and @ref{Special Targets}.
423 @node Bugs,  , Reading, Overview
424 @section Problems and Bugs
425 @cindex reporting bugs
426 @cindex bugs, reporting
427 @cindex problems and bugs, reporting
429 If you have problems with GNU @code{make} or think you've found a bug,
430 please report it to the developers; we cannot promise to do anything but
431 we might well want to fix it.
433 Before reporting a bug, make sure you've actually found a real bug.
434 Carefully reread the documentation and see if it really says you can do
435 what you're trying to do.  If it's not clear whether you should be able
436 to do something or not, report that too; it's a bug in the
437 documentation!
439 Before reporting a bug or trying to fix it yourself, try to isolate it
440 to the smallest possible makefile that reproduces the problem.  Then
441 send us the makefile and the exact results @code{make} gave you,
442 including any error or warning messages.  Please don't paraphrase
443 these messages: it's best to cut and paste them into your report.
444 When generating this small makefile, be sure to not use any non-free
445 or unusual tools in your recipes: you can almost always emulate what
446 such a tool would do with simple shell commands.  Finally, be sure to
447 explain what you expected to occur; this will help us decide whether
448 the problem was really in the documentation.
450 Once you have a precise problem you can report it in one of two ways.
451 Either send electronic mail to:
453 @example
454     bug-make@@gnu.org
455 @end example
457 @noindent
458 or use our Web-based project management tool, at:
460 @example
461     http://savannah.gnu.org/projects/make/
462 @end example
464 @noindent
465 In addition to the information above, please be careful to include the
466 version number of @code{make} you are using.  You can get this
467 information with the command @samp{make --version}.  Be sure also to
468 include the type of machine and operating system you are using.  One
469 way to obtain this information is by looking at the final lines of
470 output from the command @samp{make --help}.
472 @node Introduction, Makefiles, Overview, Top
473 @comment  node-name,  next,  previous,  up
474 @chapter An Introduction to Makefiles
476 You need a file called a @dfn{makefile} to tell @code{make} what to do.
477 Most often, the makefile tells @code{make} how to compile and link a
478 program.
479 @cindex makefile
481 In this chapter, we will discuss a simple makefile that describes how to
482 compile and link a text editor which consists of eight C source files
483 and three header files.  The makefile can also tell @code{make} how to
484 run miscellaneous commands when explicitly asked (for example, to remove
485 certain files as a clean-up operation).  To see a more complex example
486 of a makefile, see @ref{Complex Makefile}.
488 When @code{make} recompiles the editor, each changed C source file
489 must be recompiled.  If a header file has changed, each C source file
490 that includes the header file must be recompiled to be safe.  Each
491 compilation produces an object file corresponding to the source file.
492 Finally, if any source file has been recompiled, all the object files,
493 whether newly made or saved from previous compilations, must be linked
494 together to produce the new executable editor.
495 @cindex recompilation
496 @cindex editor
498 @menu
499 * Rule Introduction::           What a rule looks like.
500 * Simple Makefile::             A simple makefile.
501 * How Make Works::              How @code{make} processes this makefile.
502 * Variables Simplify::          Variables make makefiles simpler.
503 * make Deduces::                Letting @code{make} deduce the recipes.
504 * Combine By Prerequisite::     Another style of makefile.
505 * Cleanup::                     Rules for cleaning the directory.
506 @end menu
508 @node Rule Introduction, Simple Makefile, Introduction, Introduction
509 @comment  node-name,  next,  previous,  up
510 @section What a Rule Looks Like
511 @cindex rule, introduction to
512 @cindex makefile rule parts
513 @cindex parts of makefile rule
515 A simple makefile consists of ``rules'' with the following shape:
517 @cindex targets, introduction to
518 @cindex prerequisites, introduction to
519 @cindex recipes, introduction to
520 @example
521 @group
522 @var{target} @dots{} : @var{prerequisites} @dots{}
523         @var{recipe}
524         @dots{}
525         @dots{}
526 @end group
527 @end example
529 A @dfn{target} is usually the name of a file that is generated by a
530 program; examples of targets are executable or object files.  A target
531 can also be the name of an action to carry out, such as @samp{clean}
532 (@pxref{Phony Targets}).
534 A @dfn{prerequisite} is a file that is used as input to create the
535 target.  A target often depends on several files.
537 @cindex tabs in rules
538 A @dfn{recipe} is an action that @code{make} carries out.  A recipe
539 may have more than one command, either on the same line or each on its
540 own line.  @strong{Please note:} you need to put a tab character at
541 the beginning of every recipe line!  This is an obscurity that catches
542 the unwary.  If you prefer to prefix your recipes with a character
543 other than tab, you can set the @code{.RECIPEPREFIX} variable to an
544 alternate character (@pxref{Special Variables}).
546 Usually a recipe is in a rule with prerequisites and serves to create a
547 target file if any of the prerequisites change.  However, the rule that
548 specifies a recipe for the target need not have prerequisites.  For
549 example, the rule containing the delete command associated with the
550 target @samp{clean} does not have prerequisites.
552 A @dfn{rule}, then, explains how and when to remake certain files
553 which are the targets of the particular rule.  @code{make} carries out
554 the recipe on the prerequisites to create or update the target.  A
555 rule can also explain how and when to carry out an action.
556 @xref{Rules, , Writing Rules}.
558 A makefile may contain other text besides rules, but a simple makefile
559 need only contain rules.  Rules may look somewhat more complicated
560 than shown in this template, but all fit the pattern more or less.
562 @node Simple Makefile, How Make Works, Rule Introduction, Introduction
563 @section A Simple Makefile
564 @cindex simple makefile
565 @cindex makefile, simple
567 Here is a straightforward makefile that describes the way an
568 executable file called @code{edit} depends on eight object files
569 which, in turn, depend on eight C source and three header files.
571 In this example, all the C files include @file{defs.h}, but only those
572 defining editing commands include @file{command.h}, and only low
573 level files that change the editor buffer include @file{buffer.h}.
575 @example
576 @group
577 edit : main.o kbd.o command.o display.o \
578        insert.o search.o files.o utils.o
579         cc -o edit main.o kbd.o command.o display.o \
580                    insert.o search.o files.o utils.o
582 main.o : main.c defs.h
583         cc -c main.c
584 kbd.o : kbd.c defs.h command.h
585         cc -c kbd.c
586 command.o : command.c defs.h command.h
587         cc -c command.c
588 display.o : display.c defs.h buffer.h
589         cc -c display.c
590 insert.o : insert.c defs.h buffer.h
591         cc -c insert.c
592 search.o : search.c defs.h buffer.h
593         cc -c search.c
594 files.o : files.c defs.h buffer.h command.h
595         cc -c files.c
596 utils.o : utils.c defs.h
597         cc -c utils.c
598 clean :
599         rm edit main.o kbd.o command.o display.o \
600            insert.o search.o files.o utils.o
601 @end group
602 @end example
604 @noindent
605 We split each long line into two lines using backslash-newline; this is
606 like using one long line, but is easier to read.
607 @cindex continuation lines
608 @cindex @code{\} (backslash), for continuation lines
609 @cindex backslash (@code{\}), for continuation lines
610 @cindex quoting newline, in makefile
611 @cindex newline, quoting, in makefile
613 To use this makefile to create the executable file called @file{edit},
614 type:
616 @example
617 make
618 @end example
620 To use this makefile to delete the executable file and all the object
621 files from the directory, type:
623 @example
624 make clean
625 @end example
627 In the example makefile, the targets include the executable file
628 @samp{edit}, and the object files @samp{main.o} and @samp{kbd.o}.  The
629 prerequisites are files such as @samp{main.c} and @samp{defs.h}.
630 In fact, each @samp{.o} file is both a target and a prerequisite.
631 Recipes include @w{@samp{cc -c main.c}} and @w{@samp{cc -c kbd.c}}.
633 When a target is a file, it needs to be recompiled or relinked if any
634 of its prerequisites change.  In addition, any prerequisites that are
635 themselves automatically generated should be updated first.  In this
636 example, @file{edit} depends on each of the eight object files; the
637 object file @file{main.o} depends on the source file @file{main.c} and
638 on the header file @file{defs.h}.
640 A recipe may follow each line that contains a target and
641 prerequisites.  These recipes say how to update the target file.  A
642 tab character (or whatever character is specified by the
643 @code{.RECIPEPREFIX} variable; @pxref{Special Variables}) must come at
644 the beginning of every line in the recipe to distinguish recipes from
645 other lines in the makefile.  (Bear in mind that @code{make} does not
646 know anything about how the recipes work.  It is up to you to supply
647 recipes that will update the target file properly.  All @code{make}
648 does is execute the recipe you have specified when the target file
649 needs to be updated.)@refill
650 @cindex recipe
652 The target @samp{clean} is not a file, but merely the name of an
653 action.  Since you normally do not want to carry out the actions in
654 this rule, @samp{clean} is not a prerequisite of any other rule.
655 Consequently, @code{make} never does anything with it unless you tell
656 it specifically.  Note that this rule not only is not a prerequisite,
657 it also does not have any prerequisites, so the only purpose of the
658 rule is to run the specified recipe.  Targets that do not refer to
659 files but are just actions are called @dfn{phony targets}.
660 @xref{Phony Targets}, for information about this kind of target.
661 @xref{Errors, , Errors in Recipes}, to see how to cause @code{make}
662 to ignore errors from @code{rm} or any other command.
663 @cindex @code{clean} target
664 @cindex @code{rm} (shell command)
666 @node How Make Works, Variables Simplify, Simple Makefile, Introduction
667 @comment  node-name,  next,  previous,  up
668 @section How @code{make} Processes a Makefile
669 @cindex processing a makefile
670 @cindex makefile, how @code{make} processes
672 By default, @code{make} starts with the first target (not targets whose
673 names start with @samp{.}).  This is called the @dfn{default goal}.
674 (@dfn{Goals} are the targets that @code{make} strives ultimately to
675 update.    You can override this behavior using the command line
676 (@pxref{Goals, , Arguments to Specify the Goals}) or with the
677 @code{.DEFAULT_GOAL} special variable (@pxref{Special Variables, ,
678 Other Special Variables}).
679 @cindex default goal
680 @cindex goal, default
681 @cindex goal
683 In the simple example of the previous section, the default goal is to
684 update the executable program @file{edit}; therefore, we put that rule
685 first.
687 Thus, when you give the command:
689 @example
690 make
691 @end example
693 @noindent
694 @code{make} reads the makefile in the current directory and begins by
695 processing the first rule.  In the example, this rule is for relinking
696 @file{edit}; but before @code{make} can fully process this rule, it
697 must process the rules for the files that @file{edit} depends on,
698 which in this case are the object files.  Each of these files is
699 processed according to its own rule.  These rules say to update each
700 @samp{.o} file by compiling its source file.  The recompilation must
701 be done if the source file, or any of the header files named as
702 prerequisites, is more recent than the object file, or if the object
703 file does not exist.
705 The other rules are processed because their targets appear as
706 prerequisites of the goal.  If some other rule is not depended on by the
707 goal (or anything it depends on, etc.), that rule is not processed,
708 unless you tell @code{make} to do so (with a command such as
709 @w{@code{make clean}}).
711 Before recompiling an object file, @code{make} considers updating its
712 prerequisites, the source file and header files.  This makefile does not
713 specify anything to be done for them---the @samp{.c} and @samp{.h} files
714 are not the targets of any rules---so @code{make} does nothing for these
715 files.  But @code{make} would update automatically generated C programs,
716 such as those made by Bison or Yacc, by their own rules at this time.
718 After recompiling whichever object files need it, @code{make} decides
719 whether to relink @file{edit}.  This must be done if the file
720 @file{edit} does not exist, or if any of the object files are newer than
721 it.  If an object file was just recompiled, it is now newer than
722 @file{edit}, so @file{edit} is relinked.
723 @cindex relinking
725 Thus, if we change the file @file{insert.c} and run @code{make},
726 @code{make} will compile that file to update @file{insert.o}, and then
727 link @file{edit}.  If we change the file @file{command.h} and run
728 @code{make}, @code{make} will recompile the object files @file{kbd.o},
729 @file{command.o} and @file{files.o} and then link the file @file{edit}.
731 @node Variables Simplify, make Deduces, How Make Works, Introduction
732 @section Variables Make Makefiles Simpler
733 @cindex variables
734 @cindex simplifying with variables
736 In our example, we had to list all the object files twice in the rule for
737 @file{edit} (repeated here):
739 @example
740 @group
741 edit : main.o kbd.o command.o display.o \
742               insert.o search.o files.o utils.o
743         cc -o edit main.o kbd.o command.o display.o \
744                    insert.o search.o files.o utils.o
745 @end group
746 @end example
748 @cindex @code{objects}
749 Such duplication is error-prone; if a new object file is added to the
750 system, we might add it to one list and forget the other.  We can eliminate
751 the risk and simplify the makefile by using a variable.  @dfn{Variables}
752 allow a text string to be defined once and substituted in multiple places
753 later (@pxref{Using Variables, ,How to Use Variables}).
755 @cindex @code{OBJECTS}
756 @cindex @code{objs}
757 @cindex @code{OBJS}
758 @cindex @code{obj}
759 @cindex @code{OBJ}
760 It is standard practice for every makefile to have a variable named
761 @code{objects}, @code{OBJECTS}, @code{objs}, @code{OBJS}, @code{obj},
762 or @code{OBJ} which is a list of all object file names.  We would
763 define such a variable @code{objects} with a line like this in the
764 makefile:@refill
766 @example
767 @group
768 objects = main.o kbd.o command.o display.o \
769           insert.o search.o files.o utils.o
770 @end group
771 @end example
773 @noindent
774 Then, each place we want to put a list of the object file names, we can
775 substitute the variable's value by writing @samp{$(objects)}
776 (@pxref{Using Variables, ,How to Use Variables}).
778 Here is how the complete simple makefile looks when you use a variable
779 for the object files:
781 @example
782 @group
783 objects = main.o kbd.o command.o display.o \
784           insert.o search.o files.o utils.o
786 edit : $(objects)
787         cc -o edit $(objects)
788 main.o : main.c defs.h
789         cc -c main.c
790 kbd.o : kbd.c defs.h command.h
791         cc -c kbd.c
792 command.o : command.c defs.h command.h
793         cc -c command.c
794 display.o : display.c defs.h buffer.h
795         cc -c display.c
796 insert.o : insert.c defs.h buffer.h
797         cc -c insert.c
798 search.o : search.c defs.h buffer.h
799         cc -c search.c
800 files.o : files.c defs.h buffer.h command.h
801         cc -c files.c
802 utils.o : utils.c defs.h
803         cc -c utils.c
804 clean :
805         rm edit $(objects)
806 @end group
807 @end example
809 @node make Deduces, Combine By Prerequisite, Variables Simplify, Introduction
810 @section Letting @code{make} Deduce the Recipes
811 @cindex deducing recipes (implicit rules)
812 @cindex implicit rule, introduction to
813 @cindex rule, implicit, introduction to
815 It is not necessary to spell out the recipes for compiling the individual
816 C source files, because @code{make} can figure them out: it has an
817 @dfn{implicit rule} for updating a @samp{.o} file from a correspondingly
818 named @samp{.c} file using a @samp{cc -c} command.  For example, it will
819 use the recipe @samp{cc -c main.c -o main.o} to compile @file{main.c} into
820 @file{main.o}.  We can therefore omit the recipes from the rules for the
821 object files.  @xref{Implicit Rules, ,Using Implicit Rules}.@refill
823 When a @samp{.c} file is used automatically in this way, it is also
824 automatically added to the list of prerequisites.  We can therefore omit
825 the @samp{.c} files from the prerequisites, provided we omit the recipe.
827 Here is the entire example, with both of these changes, and a variable
828 @code{objects} as suggested above:
830 @example
831 @group
832 objects = main.o kbd.o command.o display.o \
833           insert.o search.o files.o utils.o
835 edit : $(objects)
836         cc -o edit $(objects)
838 main.o : defs.h
839 kbd.o : defs.h command.h
840 command.o : defs.h command.h
841 display.o : defs.h buffer.h
842 insert.o : defs.h buffer.h
843 search.o : defs.h buffer.h
844 files.o : defs.h buffer.h command.h
845 utils.o : defs.h
847 .PHONY : clean
848 clean :
849         rm edit $(objects)
850 @end group
851 @end example
853 @noindent
854 This is how we would write the makefile in actual practice.  (The
855 complications associated with @samp{clean} are described elsewhere.
856 See @ref{Phony Targets}, and @ref{Errors, ,Errors in Recipes}.)
858 Because implicit rules are so convenient, they are important.  You
859 will see them used frequently.@refill
861 @node Combine By Prerequisite, Cleanup, make Deduces, Introduction
862 @section Another Style of Makefile
863 @cindex combining rules by prerequisite
865 When the objects of a makefile are created only by implicit rules, an
866 alternative style of makefile is possible.  In this style of makefile,
867 you group entries by their prerequisites instead of by their targets.
868 Here is what one looks like:
870 @example
871 @group
872 objects = main.o kbd.o command.o display.o \
873           insert.o search.o files.o utils.o
875 edit : $(objects)
876         cc -o edit $(objects)
878 $(objects) : defs.h
879 kbd.o command.o files.o : command.h
880 display.o insert.o search.o files.o : buffer.h
881 @end group
882 @end example
884 @noindent
885 Here @file{defs.h} is given as a prerequisite of all the object files;
886 @file{command.h} and @file{buffer.h} are prerequisites of the specific
887 object files listed for them.
889 Whether this is better is a matter of taste: it is more compact, but some
890 people dislike it because they find it clearer to put all the information
891 about each target in one place.
893 @node Cleanup,  , Combine By Prerequisite, Introduction
894 @section Rules for Cleaning the Directory
895 @cindex cleaning up
896 @cindex removing, to clean up
898 Compiling a program is not the only thing you might want to write rules
899 for.  Makefiles commonly tell how to do a few other things besides
900 compiling a program: for example, how to delete all the object files
901 and executables so that the directory is @samp{clean}.
903 @cindex @code{clean} target
904 Here is how we
905 could write a @code{make} rule for cleaning our example editor:
907 @example
908 @group
909 clean:
910         rm edit $(objects)
911 @end group
912 @end example
914 In practice, we might want to write the rule in a somewhat more
915 complicated manner to handle unanticipated situations.  We would do this:
917 @example
918 @group
919 .PHONY : clean
920 clean :
921         -rm edit $(objects)
922 @end group
923 @end example
925 @noindent
926 This prevents @code{make} from getting confused by an actual file
927 called @file{clean} and causes it to continue in spite of errors from
928 @code{rm}.  (See @ref{Phony Targets}, and @ref{Errors, ,Errors in
929 Recipes}.)
931 @noindent
932 A rule such as this should not be placed at the beginning of the
933 makefile, because we do not want it to run by default!  Thus, in the
934 example makefile, we want the rule for @code{edit}, which recompiles
935 the editor, to remain the default goal.
937 Since @code{clean} is not a prerequisite of @code{edit}, this rule will not
938 run at all if we give the command @samp{make} with no arguments.  In
939 order to make the rule run, we have to type @samp{make clean}.
940 @xref{Running, ,How to Run @code{make}}.
942 @node Makefiles, Rules, Introduction, Top
943 @chapter Writing Makefiles
945 @cindex makefile, how to write
946 The information that tells @code{make} how to recompile a system comes from
947 reading a data base called the @dfn{makefile}.
949 @menu
950 * Makefile Contents::           What makefiles contain.
951 * Makefile Names::              How to name your makefile.
952 * Include::                     How one makefile can use another makefile.
953 * MAKEFILES Variable::          The environment can specify extra makefiles.
954 * Remaking Makefiles::          How makefiles get remade.
955 * Overriding Makefiles::        How to override part of one makefile
956                                   with another makefile.
957 * Reading Makefiles::           How makefiles are parsed.
958 * Secondary Expansion::         How and when secondary expansion is performed.
959 @end menu
961 @node Makefile Contents, Makefile Names, Makefiles, Makefiles
962 @section What Makefiles Contain
964 Makefiles contain five kinds of things: @dfn{explicit rules},
965 @dfn{implicit rules}, @dfn{variable definitions}, @dfn{directives},
966 and @dfn{comments}.  Rules, variables, and directives are described at
967 length in later chapters.@refill
969 @itemize @bullet
970 @cindex rule, explicit, definition of
971 @cindex explicit rule, definition of
972 @item
973 An @dfn{explicit rule} says when and how to remake one or more files,
974 called the rule's @dfn{targets}.  It lists the other files that the
975 targets depend on, called the @dfn{prerequisites} of the target, and
976 may also give a recipe to use to create or update the targets.
977 @xref{Rules, ,Writing Rules}.
979 @cindex rule, implicit, definition of
980 @cindex implicit rule, definition of
981 @item
982 An @dfn{implicit rule} says when and how to remake a class of files
983 based on their names.  It describes how a target may depend on a file
984 with a name similar to the target and gives a recipe to create or
985 update such a target.  @xref{Implicit Rules, ,Using Implicit Rules}.
987 @cindex variable definition
988 @item
989 A @dfn{variable definition} is a line that specifies a text string
990 value for a variable that can be substituted into the text later.  The
991 simple makefile example shows a variable definition for @code{objects}
992 as a list of all object files (@pxref{Variables Simplify, , Variables
993 Make Makefiles Simpler}).
995 @cindex directive
996 @item
997 A @dfn{directive} is an instruction for @code{make} to do something
998 special while reading the makefile.  These include:
1000 @itemize @bullet
1001 @item
1002 Reading another makefile (@pxref{Include, ,Including Other Makefiles}).
1004 @item
1005 Deciding (based on the values of variables) whether to use or
1006 ignore a part of the makefile (@pxref{Conditionals, ,Conditional Parts of Makefiles}).
1008 @item
1009 Defining a variable from a verbatim string containing multiple lines
1010 (@pxref{Multi-Line, ,Defining Multi-Line Variables}).
1011 @end itemize
1013 @cindex comments, in makefile
1014 @cindex @code{#} (comments), in makefile
1015 @item
1016 @samp{#} in a line of a makefile starts a @dfn{comment}.  It and the
1017 rest of the line are ignored, except that a trailing backslash not
1018 escaped by another backslash will continue the comment across multiple
1019 lines.  A line containing just a comment (with perhaps spaces before
1020 it) is effectively blank, and is ignored.  If you want a literal
1021 @code{#}, escape it with a backslash (e.g., @code{\#}).  Comments may
1022 appear on any line in the makefile, although they are treated
1023 specially in certain situations.
1025 You cannot use comments within variable references or function calls:
1026 any instance of @code{#} will be treated literally (rather than as the
1027 start of a comment) inside a variable reference or function call.
1029 Comments within a recipe are passed to the shell, just as with any
1030 other recipe text.  The shell decides how to interpret it: whether or
1031 not this is a comment is up to the shell.
1033 Within a @code{define} directive, comments are not ignored during the
1034 definition of the variable, but rather kept intact in the value of the
1035 variable.  When the variable is expanded they will either be treated
1036 as @code{make} comments or as recipe text, depending on the context in
1037 which the variable is evaluated.
1038 @end itemize
1040 @node Makefile Names, Include, Makefile Contents, Makefiles
1041 @section What Name to Give Your Makefile
1042 @cindex makefile name
1043 @cindex name of makefile
1044 @cindex default makefile name
1045 @cindex file name of makefile
1047 @c following paragraph rewritten to avoid overfull hbox
1048 By default, when @code{make} looks for the makefile, it tries the
1049 following names, in order: @file{GNUmakefile}, @file{makefile}
1050 and @file{Makefile}.@refill
1051 @findex Makefile
1052 @findex GNUmakefile
1053 @findex makefile
1055 @cindex @code{README}
1056 Normally you should call your makefile either @file{makefile} or
1057 @file{Makefile}.  (We recommend @file{Makefile} because it appears
1058 prominently near the beginning of a directory listing, right near other
1059 important files such as @file{README}.)  The first name checked,
1060 @file{GNUmakefile}, is not recommended for most makefiles.  You should
1061 use this name if you have a makefile that is specific to GNU
1062 @code{make}, and will not be understood by other versions of
1063 @code{make}.  Other @code{make} programs look for @file{makefile} and
1064 @file{Makefile}, but not @file{GNUmakefile}.
1066 If @code{make} finds none of these names, it does not use any makefile.
1067 Then you must specify a goal with a command argument, and @code{make}
1068 will attempt to figure out how to remake it using only its built-in
1069 implicit rules.  @xref{Implicit Rules, ,Using Implicit Rules}.
1071 @cindex @code{-f}
1072 @cindex @code{--file}
1073 @cindex @code{--makefile}
1074 If you want to use a nonstandard name for your makefile, you can specify
1075 the makefile name with the @samp{-f} or @samp{--file} option.  The
1076 arguments @w{@samp{-f @var{name}}} or @w{@samp{--file=@var{name}}} tell
1077 @code{make} to read the file @var{name} as the makefile.  If you use
1078 more than one @samp{-f} or @samp{--file} option, you can specify several
1079 makefiles.  All the makefiles are effectively concatenated in the order
1080 specified.  The default makefile names @file{GNUmakefile},
1081 @file{makefile} and @file{Makefile} are not checked automatically if you
1082 specify @samp{-f} or @samp{--file}.@refill
1083 @cindex specifying makefile name
1084 @cindex makefile name, how to specify
1085 @cindex name of makefile, how to specify
1086 @cindex file name of makefile, how to specify
1088 @node Include, MAKEFILES Variable, Makefile Names, Makefiles
1089 @section Including Other Makefiles
1090 @cindex including other makefiles
1091 @cindex makefile, including
1093 @findex include
1094 The @code{include} directive tells @code{make} to suspend reading the
1095 current makefile and read one or more other makefiles before continuing.
1096 The directive is a line in the makefile that looks like this:
1098 @example
1099 include @var{filenames}@dots{}
1100 @end example
1102 @noindent
1103 @var{filenames} can contain shell file name patterns.  If
1104 @var{filenames} is empty, nothing is included and no error is printed.
1105 @cindex shell file name pattern (in @code{include})
1106 @cindex shell wildcards (in @code{include})
1107 @cindex wildcard, in @code{include}
1109 Extra spaces are allowed and ignored at the beginning of the line, but
1110 the first character must not be a tab (or the value of
1111 @code{.RECIPEPREFIX})---if the line begins with a tab, it will be
1112 considered a recipe line.  Whitespace is required between
1113 @code{include} and the file names, and between file names; extra
1114 whitespace is ignored there and at the end of the directive.  A
1115 comment starting with @samp{#} is allowed at the end of the line.  If
1116 the file names contain any variable or function references, they are
1117 expanded.  @xref{Using Variables, ,How to Use Variables}.
1119 For example, if you have three @file{.mk} files, @file{a.mk},
1120 @file{b.mk}, and @file{c.mk}, and @code{$(bar)} expands to
1121 @code{bish bash}, then the following expression
1123 @example
1124 include foo *.mk $(bar)
1125 @end example
1127 is equivalent to
1129 @example
1130 include foo a.mk b.mk c.mk bish bash
1131 @end example
1133 When @code{make} processes an @code{include} directive, it suspends
1134 reading of the containing makefile and reads from each listed file in
1135 turn.  When that is finished, @code{make} resumes reading the
1136 makefile in which the directive appears.
1138 One occasion for using @code{include} directives is when several programs,
1139 handled by individual makefiles in various directories, need to use a
1140 common set of variable definitions
1141 (@pxref{Setting, ,Setting Variables}) or pattern rules
1142 (@pxref{Pattern Rules, ,Defining and Redefining Pattern Rules}).
1144 Another such occasion is when you want to generate prerequisites from
1145 source files automatically; the prerequisites can be put in a file that
1146 is included by the main makefile.  This practice is generally cleaner
1147 than that of somehow appending the prerequisites to the end of the main
1148 makefile as has been traditionally done with other versions of
1149 @code{make}.  @xref{Automatic Prerequisites}.
1150 @cindex prerequisites, automatic generation
1151 @cindex automatic generation of prerequisites
1152 @cindex generating prerequisites automatically
1154 @cindex @code{-I}
1155 @cindex @code{--include-dir}
1156 @cindex included makefiles, default directories
1157 @cindex default directories for included makefiles
1158 @findex /usr/gnu/include
1159 @findex /usr/local/include
1160 @findex /usr/include
1161 If the specified name does not start with a slash, and the file is not
1162 found in the current directory, several other directories are searched.
1163 First, any directories you have specified with the @samp{-I} or
1164 @samp{--include-dir} option are searched
1165 (@pxref{Options Summary, ,Summary of Options}).
1166 Then the following directories (if they exist)
1167 are searched, in this order:
1168 @file{@var{prefix}/include} (normally @file{/usr/local/include}
1169 @footnote{GNU Make compiled for MS-DOS and MS-Windows behaves as if
1170 @var{prefix} has been defined to be the root of the DJGPP tree
1171 hierarchy.})
1172 @file{/usr/gnu/include},
1173 @file{/usr/local/include}, @file{/usr/include}.
1175 If an included makefile cannot be found in any of these directories, a
1176 warning message is generated, but it is not an immediately fatal error;
1177 processing of the makefile containing the @code{include} continues.
1178 Once it has finished reading makefiles, @code{make} will try to remake
1179 any that are out of date or don't exist.
1180 @xref{Remaking Makefiles, ,How Makefiles Are Remade}.
1181 Only after it has tried to find a way to remake a makefile and failed,
1182 will @code{make} diagnose the missing makefile as a fatal error.
1184 If you want @code{make} to simply ignore a makefile which does not exist
1185 or cannot be remade, with no error message, use the @w{@code{-include}}
1186 directive instead of @code{include}, like this:
1188 @example
1189 -include @var{filenames}@dots{}
1190 @end example
1192 This acts like @code{include} in every way except that there is no
1193 error (not even a warning) if any of the @var{filenames} (or any
1194 prerequisites of any of the @var{filenames}) do not exist or cannot be
1195 remade.
1197 For compatibility with some other @code{make} implementations,
1198 @code{sinclude} is another name for @w{@code{-include}}.
1200 @node MAKEFILES Variable, Remaking Makefiles, Include, Makefiles
1201 @section The Variable @code{MAKEFILES}
1202 @cindex makefile, and @code{MAKEFILES} variable
1203 @cindex including (@code{MAKEFILES} variable)
1205 @vindex MAKEFILES
1206 If the environment variable @code{MAKEFILES} is defined, @code{make}
1207 considers its value as a list of names (separated by whitespace) of
1208 additional makefiles to be read before the others.  This works much
1209 like the @code{include} directive: various directories are searched
1210 for those files (@pxref{Include, ,Including Other Makefiles}).  In
1211 addition, the default goal is never taken from one of these makefiles
1212 (or any makefile included by them) and it is not an error if the files
1213 listed in @code{MAKEFILES} are not found.@refill
1215 @cindex recursion, and @code{MAKEFILES} variable
1216 The main use of @code{MAKEFILES} is in communication between recursive
1217 invocations of @code{make} (@pxref{Recursion, ,Recursive Use of
1218 @code{make}}).  It usually is not desirable to set the environment
1219 variable before a top-level invocation of @code{make}, because it is
1220 usually better not to mess with a makefile from outside.  However, if
1221 you are running @code{make} without a specific makefile, a makefile in
1222 @code{MAKEFILES} can do useful things to help the built-in implicit
1223 rules work better, such as defining search paths (@pxref{Directory Search}).
1225 Some users are tempted to set @code{MAKEFILES} in the environment
1226 automatically on login, and program makefiles to expect this to be done.
1227 This is a very bad idea, because such makefiles will fail to work if run by
1228 anyone else.  It is much better to write explicit @code{include} directives
1229 in the makefiles.  @xref{Include, , Including Other Makefiles}.
1231 @node Remaking Makefiles, Overriding Makefiles, MAKEFILES Variable, Makefiles
1232 @section How Makefiles Are Remade
1234 @cindex updating makefiles
1235 @cindex remaking makefiles
1236 @cindex makefile, remaking of
1237 Sometimes makefiles can be remade from other files, such as RCS or SCCS
1238 files.  If a makefile can be remade from other files, you probably want
1239 @code{make} to get an up-to-date version of the makefile to read in.
1241 To this end, after reading in all makefiles, @code{make} will consider
1242 each as a goal target and attempt to update it.  If a makefile has a
1243 rule which says how to update it (found either in that very makefile or
1244 in another one) or if an implicit rule applies to it (@pxref{Implicit
1245 Rules, ,Using Implicit Rules}), it will be updated if necessary.  After
1246 all makefiles have been checked, if any have actually been changed,
1247 @code{make} starts with a clean slate and reads all the makefiles over
1248 again.  (It will also attempt to update each of them over again, but
1249 normally this will not change them again, since they are already up to
1250 date.)@refill
1252 If you know that one or more of your makefiles cannot be remade and
1253 you want to keep @code{make} from performing an implicit rule search
1254 on them, perhaps for efficiency reasons, you can use any normal method
1255 of preventing implicit rule look-up to do so.  For example, you can
1256 write an explicit rule with the makefile as the target, and an empty
1257 recipe (@pxref{Empty Recipes, ,Using Empty Recipes}).
1259 If the makefiles specify a double-colon rule to remake a file with
1260 a recipe but no prerequisites, that file will always be remade
1261 (@pxref{Double-Colon}).  In the case of makefiles, a makefile that has a
1262 double-colon rule with a recipe but no prerequisites will be remade every
1263 time @code{make} is run, and then again after @code{make} starts over
1264 and reads the makefiles in again.  This would cause an infinite loop:
1265 @code{make} would constantly remake the makefile, and never do anything
1266 else.  So, to avoid this, @code{make} will @strong{not} attempt to
1267 remake makefiles which are specified as targets of a double-colon rule
1268 with a recipe but no prerequisites.@refill
1270 If you do not specify any makefiles to be read with @samp{-f} or
1271 @samp{--file} options, @code{make} will try the default makefile names;
1272 @pxref{Makefile Names, ,What Name to Give Your Makefile}.  Unlike
1273 makefiles explicitly requested with @samp{-f} or @samp{--file} options,
1274 @code{make} is not certain that these makefiles should exist.  However,
1275 if a default makefile does not exist but can be created by running
1276 @code{make} rules, you probably want the rules to be run so that the
1277 makefile can be used.
1279 Therefore, if none of the default makefiles exists, @code{make} will try
1280 to make each of them in the same order in which they are searched for
1281 (@pxref{Makefile Names, ,What Name to Give Your Makefile})
1282 until it succeeds in making one, or it runs out of names to try.  Note
1283 that it is not an error if @code{make} cannot find or make any makefile;
1284 a makefile is not always necessary.@refill
1286 When you use the @samp{-t} or @samp{--touch} option
1287 (@pxref{Instead of Execution, ,Instead of Executing Recipes}),
1288 you would not want to use an out-of-date makefile to decide which
1289 targets to touch.  So the @samp{-t} option has no effect on updating
1290 makefiles; they are really updated even if @samp{-t} is specified.
1291 Likewise, @samp{-q} (or @samp{--question}) and @samp{-n} (or
1292 @samp{--just-print}) do not prevent updating of makefiles, because an
1293 out-of-date makefile would result in the wrong output for other targets.
1294 Thus, @samp{make -f mfile -n foo} will update @file{mfile}, read it in,
1295 and then print the recipe to update @file{foo} and its prerequisites
1296 without running it.  The recipe printed for @file{foo} will be the one
1297 specified in the updated contents of @file{mfile}.
1299 However, on occasion you might actually wish to prevent updating of even
1300 the makefiles.  You can do this by specifying the makefiles as goals in
1301 the command line as well as specifying them as makefiles.  When the
1302 makefile name is specified explicitly as a goal, the options @samp{-t}
1303 and so on do apply to them.
1305 Thus, @samp{make -f mfile -n mfile foo} would read the makefile
1306 @file{mfile}, print the recipe needed to update it without actually
1307 running it, and then print the recipe needed to update @file{foo}
1308 without running that.  The recipe for @file{foo} will be the one
1309 specified by the existing contents of @file{mfile}.
1311 @node Overriding Makefiles, Reading Makefiles, Remaking Makefiles, Makefiles
1312 @section Overriding Part of Another Makefile
1314 @cindex overriding makefiles
1315 @cindex makefile, overriding
1316 Sometimes it is useful to have a makefile that is mostly just like
1317 another makefile.  You can often use the @samp{include} directive to
1318 include one in the other, and add more targets or variable definitions.
1319 However, it is invalid for two makefiles to give different recipes for
1320 the same target.  But there is another way.
1322 @cindex match-anything rule, used to override
1323 In the containing makefile (the one that wants to include the other),
1324 you can use a match-anything pattern rule to say that to remake any
1325 target that cannot be made from the information in the containing
1326 makefile, @code{make} should look in another makefile.
1327 @xref{Pattern Rules}, for more information on pattern rules.
1329 For example, if you have a makefile called @file{Makefile} that says how
1330 to make the target @samp{foo} (and other targets), you can write a
1331 makefile called @file{GNUmakefile} that contains:
1333 @example
1334 foo:
1335         frobnicate > foo
1337 %: force
1338         @@$(MAKE) -f Makefile $@@
1339 force: ;
1340 @end example
1342 If you say @samp{make foo}, @code{make} will find @file{GNUmakefile},
1343 read it, and see that to make @file{foo}, it needs to run the recipe
1344 @samp{frobnicate > foo}.  If you say @samp{make bar}, @code{make} will
1345 find no way to make @file{bar} in @file{GNUmakefile}, so it will use the
1346 recipe from the pattern rule: @samp{make -f Makefile bar}.  If
1347 @file{Makefile} provides a rule for updating @file{bar}, @code{make}
1348 will apply the rule.  And likewise for any other target that
1349 @file{GNUmakefile} does not say how to make.
1351 The way this works is that the pattern rule has a pattern of just
1352 @samp{%}, so it matches any target whatever.  The rule specifies a
1353 prerequisite @file{force}, to guarantee that the recipe will be run even
1354 if the target file already exists.  We give the @file{force} target an
1355 empty recipe to prevent @code{make} from searching for an implicit rule to
1356 build it---otherwise it would apply the same match-anything rule to
1357 @file{force} itself and create a prerequisite loop!
1359 @node Reading Makefiles,  Secondary Expansion, Overriding Makefiles, Makefiles
1360 @section How @code{make} Reads a Makefile
1361 @cindex reading makefiles
1362 @cindex makefile, parsing
1364 GNU @code{make} does its work in two distinct phases.  During the first
1365 phase it reads all the makefiles, included makefiles, etc. and
1366 internalizes all the variables and their values, implicit and explicit
1367 rules, and constructs a dependency graph of all the targets and their
1368 prerequisites.  During the second phase, @code{make} uses these internal
1369 structures to determine what targets will need to be rebuilt and to
1370 invoke the rules necessary to do so.
1372 It's important to understand this two-phase approach because it has a
1373 direct impact on how variable and function expansion happens; this is
1374 often a source of some confusion when writing makefiles.  Here we will
1375 present a summary of the phases in which expansion happens for different
1376 constructs within the makefile.  We say that expansion is
1377 @dfn{immediate} if it happens during the first phase: in this case
1378 @code{make} will expand any variables or functions in that section of a
1379 construct as the makefile is parsed.  We say that expansion is
1380 @dfn{deferred} if expansion is not performed immediately.  Expansion of
1381 a deferred construct is not performed until either the construct appears
1382 later in an immediate context, or until the second phase.
1384 You may not be familiar with some of these constructs yet.  You can
1385 reference this section as you become familiar with them, in later
1386 chapters.
1388 @subheading Variable Assignment
1389 @cindex +=, expansion
1390 @cindex =, expansion
1391 @cindex ?=, expansion
1392 @cindex +=, expansion
1393 @cindex !=, expansion
1394 @cindex define, expansion
1396 Variable definitions are parsed as follows:
1398 @example
1399 @var{immediate} = @var{deferred}
1400 @var{immediate} ?= @var{deferred}
1401 @var{immediate} := @var{immediate}
1402 @var{immediate} ::= @var{immediate}
1403 @var{immediate} += @var{deferred} or @var{immediate}
1404 @var{immediate} != @var{immediate}
1406 define @var{immediate}
1407   @var{deferred}
1408 endef
1410 define @var{immediate} =
1411   @var{deferred}
1412 endef
1414 define @var{immediate} ?=
1415   @var{deferred}
1416 endef
1418 define @var{immediate} :=
1419   @var{immediate}
1420 endef
1422 define @var{immediate} ::=
1423   @var{immediate}
1424 endef
1426 define @var{immediate} +=
1427   @var{deferred} or @var{immediate}
1428 endef
1430 define @var{immediate} !=
1431   @var{immediate}
1432 endef
1433 @end example
1435 For the append operator, @samp{+=}, the right-hand side is considered
1436 immediate if the variable was previously set as a simple variable
1437 (@samp{:=} or @samp{::=}), and deferred otherwise.
1439 For the shell assignment operator, @samp{!=}, the right-hand side is
1440 evaluated immediately and handed to the shell.  The result is stored in the
1441 variable named on the left, and that variable becomes a simple variable
1442 (and will thus be re-evaluated on each reference).
1444 @subheading Conditional Directives
1445 @cindex ifdef, expansion
1446 @cindex ifeq, expansion
1447 @cindex ifndef, expansion
1448 @cindex ifneq, expansion
1450 Conditional directives are parsed immediately.  This means, for
1451 example, that automatic variables cannot be used in conditional
1452 directives, as automatic variables are not set until the recipe for
1453 that rule is invoked.  If you need to use automatic variables in a
1454 conditional directive you @emph{must} move the condition into the
1455 recipe and use shell conditional syntax instead.
1457 @subheading Rule Definition
1458 @cindex target, expansion
1459 @cindex prerequisite, expansion
1460 @cindex implicit rule, expansion
1461 @cindex pattern rule, expansion
1462 @cindex explicit rule, expansion
1464 A rule is always expanded the same way, regardless of the form:
1466 @example
1467 @var{immediate} : @var{immediate} ; @var{deferred}
1468         @var{deferred}
1469 @end example
1471 That is, the target and prerequisite sections are expanded immediately,
1472 and the recipe used to construct the target is always deferred.  This
1473 general rule is true for explicit rules, pattern rules, suffix rules,
1474 static pattern rules, and simple prerequisite definitions.
1476 @node Secondary Expansion, , Reading Makefiles, Makefiles
1477 @section Secondary Expansion
1478 @cindex secondary expansion
1479 @cindex expansion, secondary
1481 @findex .SECONDEXPANSION
1482 In the previous section we learned that GNU @code{make} works in two
1483 distinct phases: a read-in phase and a target-update phase
1484 (@pxref{Reading Makefiles, , How @code{make} Reads a Makefile}).  GNU
1485 make also has the ability to enable a @emph{second expansion} of the
1486 prerequisites (only) for some or all targets defined in the makefile.
1487 In order for this second expansion to occur, the special target
1488 @code{.SECONDEXPANSION} must be defined before the first prerequisite
1489 list that makes use of this feature.
1491 If that special target is defined then in between the two phases
1492 mentioned above, right at the end of the read-in phase, all the
1493 prerequisites of the targets defined after the special target are
1494 expanded a @emph{second time}.  In most circumstances this secondary
1495 expansion will have no effect, since all variable and function
1496 references will have been expanded during the initial parsing of the
1497 makefiles.  In order to take advantage of the secondary expansion
1498 phase of the parser, then, it's necessary to @emph{escape} the
1499 variable or function reference in the makefile.  In this case the
1500 first expansion merely un-escapes the reference but doesn't expand it,
1501 and expansion is left to the secondary expansion phase.  For example,
1502 consider this makefile:
1504 @example
1505 .SECONDEXPANSION:
1506 ONEVAR = onefile
1507 TWOVAR = twofile
1508 myfile: $(ONEVAR) $$(TWOVAR)
1509 @end example
1511 After the first expansion phase the prerequisites list of the
1512 @file{myfile} target will be @code{onefile} and @code{$(TWOVAR)}; the
1513 first (unescaped) variable reference to @var{ONEVAR} is expanded,
1514 while the second (escaped) variable reference is simply unescaped,
1515 without being recognized as a variable reference.  Now during the
1516 secondary expansion the first word is expanded again but since it
1517 contains no variable or function references it remains the value
1518 @file{onefile}, while the second word is now a normal reference to the
1519 variable @var{TWOVAR}, which is expanded to the value @file{twofile}.
1520 The final result is that there are two prerequisites, @file{onefile}
1521 and @file{twofile}.
1523 Obviously, this is not a very interesting case since the same result
1524 could more easily have been achieved simply by having both variables
1525 appear, unescaped, in the prerequisites list.  One difference becomes
1526 apparent if the variables are reset; consider this example:
1528 @example
1529 .SECONDEXPANSION:
1530 AVAR = top
1531 onefile: $(AVAR)
1532 twofile: $$(AVAR)
1533 AVAR = bottom
1534 @end example
1536 Here the prerequisite of @file{onefile} will be expanded immediately,
1537 and resolve to the value @file{top}, while the prerequisite of
1538 @file{twofile} will not be full expanded until the secondary expansion
1539 and yield a value of @file{bottom}.
1541 This is marginally more exciting, but the true power of this feature
1542 only becomes apparent when you discover that secondary expansions
1543 always take place within the scope of the automatic variables for that
1544 target.  This means that you can use variables such as @code{$@@},
1545 @code{$*}, etc. during the second expansion and they will have their
1546 expected values, just as in the recipe.  All you have to do is defer
1547 the expansion by escaping the @code{$}.  Also, secondary expansion
1548 occurs for both explicit and implicit (pattern) rules.  Knowing this,
1549 the possible uses for this feature increase dramatically.  For
1550 example:
1552 @example
1553 .SECONDEXPANSION:
1554 main_OBJS := main.o try.o test.o
1555 lib_OBJS := lib.o api.o
1557 main lib: $$($$@@_OBJS)
1558 @end example
1560 Here, after the initial expansion the prerequisites of both the
1561 @file{main} and @file{lib} targets will be @code{$($@@_OBJS)}.  During
1562 the secondary expansion, the @code{$@@} variable is set to the name of
1563 the target and so the expansion for the @file{main} target will yield
1564 @code{$(main_OBJS)}, or @code{main.o try.o test.o}, while the
1565 secondary expansion for the @file{lib} target will yield
1566 @code{$(lib_OBJS)}, or @code{lib.o api.o}.
1568 You can also mix in functions here, as long as they are properly escaped:
1570 @example
1571 main_SRCS := main.c try.c test.c
1572 lib_SRCS := lib.c api.c
1574 .SECONDEXPANSION:
1575 main lib: $$(patsubst %.c,%.o,$$($$@@_SRCS))
1576 @end example
1578 This version allows users to specify source files rather than object
1579 files, but gives the same resulting prerequisites list as the previous
1580 example.
1582 Evaluation of automatic variables during the secondary expansion
1583 phase, especially of the target name variable @code{$$@@}, behaves
1584 similarly to evaluation within recipes.  However, there are some
1585 subtle differences and ``corner cases'' which come into play for the
1586 different types of rule definitions that @code{make} understands.  The
1587 subtleties of using the different automatic variables are described
1588 below.
1590 @subheading Secondary Expansion of Explicit Rules
1591 @cindex secondary expansion and explicit rules
1592 @cindex explicit rules, secondary expansion of
1594 During the secondary expansion of explicit rules, @code{$$@@} and
1595 @code{$$%} evaluate, respectively, to the file name of the target and,
1596 when the target is an archive member, the target member name.  The
1597 @code{$$<} variable evaluates to the first prerequisite in the first
1598 rule for this target.  @code{$$^} and @code{$$+} evaluate to the list
1599 of all prerequisites of rules @emph{that have already appeared} for
1600 the same target (@code{$$+} with repetitions and @code{$$^}
1601 without).  The following example will help illustrate these behaviors:
1603 @example
1604 .SECONDEXPANSION:
1606 foo: foo.1 bar.1 $$< $$^ $$+    # line #1
1608 foo: foo.2 bar.2 $$< $$^ $$+    # line #2
1610 foo: foo.3 bar.3 $$< $$^ $$+    # line #3
1611 @end example
1613 In the first prerequisite list, all three variables (@code{$$<},
1614 @code{$$^}, and @code{$$+}) expand to the empty string.  In the
1615 second, they will have values @code{foo.1}, @code{foo.1 bar.1}, and
1616 @code{foo.1 bar.1} respectively.  In the third they will have values
1617 @code{foo.1}, @code{foo.1 bar.1 foo.2 bar.2}, and @code{foo.1 bar.1
1618 foo.2 bar.2 foo.1 foo.1 bar.1 foo.1 bar.1} respectively.
1620 Rules undergo secondary expansion in makefile order, except that
1621 the rule with the recipe is always evaluated last.
1623 The variables @code{$$?} and @code{$$*} are not available and expand
1624 to the empty string.
1626 @subheading Secondary Expansion of Static Pattern Rules
1627 @cindex secondary expansion and static pattern rules
1628 @cindex static pattern rules, secondary expansion of
1630 Rules for secondary expansion of static pattern rules are identical to
1631 those for explicit rules, above, with one exception: for static
1632 pattern rules the @code{$$*} variable is set to the pattern stem.  As
1633 with explicit rules, @code{$$?} is not available and expands to the
1634 empty string.
1636 @subheading Secondary Expansion of Implicit Rules
1637 @cindex secondary expansion and implicit rules
1638 @cindex implicit rules, secondary expansion of
1640 As @code{make} searches for an implicit rule, it substitutes the stem
1641 and then performs secondary expansion for every rule with a matching
1642 target pattern.  The value of the automatic variables is derived in
1643 the same fashion as for static pattern rules.  As an example:
1645 @example
1646 .SECONDEXPANSION:
1648 foo: bar
1650 foo foz: fo%: bo%
1652 %oo: $$< $$^ $$+ $$*
1653 @end example
1655 When the implicit rule is tried for target @file{foo}, @code{$$<}
1656 expands to @file{bar}, @code{$$^} expands to @file{bar boo},
1657 @code{$$+} also expands to @file{bar boo}, and @code{$$*} expands to
1658 @file{f}.
1660 Note that the directory prefix (D), as described in @ref{Implicit Rule
1661 Search, ,Implicit Rule Search Algorithm}, is appended (after
1662 expansion) to all the patterns in the prerequisites list.  As an
1663 example:@refill
1665 @example
1666 .SECONDEXPANSION:
1668 /tmp/foo.o:
1670 %.o: $$(addsuffix /%.c,foo bar) foo.h
1671         @@echo $^
1672 @end example
1674 The prerequisite list printed, after the secondary expansion and
1675 directory prefix reconstruction, will be @file{/tmp/foo/foo.c
1676 /tmp/bar/foo.c foo.h}.  If you are not interested in this
1677 reconstruction, you can use @code{$$*} instead of @code{%} in the
1678 prerequisites list.
1680 @node Rules, Recipes, Makefiles, Top
1681 @chapter Writing Rules
1682 @cindex writing rules
1683 @cindex rule, how to write
1684 @cindex target
1685 @cindex prerequisite
1687 A @dfn{rule} appears in the makefile and says when and how to remake
1688 certain files, called the rule's @dfn{targets} (most often only one per rule).
1689 It lists the other files that are the @dfn{prerequisites} of the target, and
1690 the @dfn{recipe} to use to create or update the target.
1692 @cindex default goal
1693 @cindex goal, default
1694 The order of rules is not significant, except for determining the
1695 @dfn{default goal}: the target for @code{make} to consider, if you do
1696 not otherwise specify one.  The default goal is the target of the first
1697 rule in the first makefile.  If the first rule has multiple targets,
1698 only the first target is taken as the default.  There are two
1699 exceptions: a target starting with a period is not a default unless it
1700 contains one or more slashes, @samp{/}, as well; and, a target that
1701 defines a pattern rule has no effect on the default goal.
1702 (@xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.)
1704 Therefore, we usually write the makefile so that the first rule is the
1705 one for compiling the entire program or all the programs described by
1706 the makefile (often with a target called @samp{all}).
1707 @xref{Goals, ,Arguments to Specify the Goals}.
1709 @menu
1710 * Rule Example::                An example explained.
1711 * Rule Syntax::                 General syntax explained.
1712 * Prerequisite Types::          There are two types of prerequisites.
1713 * Wildcards::                   Using wildcard characters such as `*'.
1714 * Directory Search::            Searching other directories for source files.
1715 * Phony Targets::               Using a target that is not a real file's name.
1716 * Force Targets::               You can use a target without a recipe
1717                                   or prerequisites to mark other targets
1718                                   as phony.
1719 * Empty Targets::               When only the date matters and the
1720                                   files are empty.
1721 * Special Targets::             Targets with special built-in meanings.
1722 * Multiple Targets::            When to make use of several targets in a rule.
1723 * Multiple Rules::              How to use several rules with the same target.
1724 * Static Pattern::              Static pattern rules apply to multiple targets
1725                                   and can vary the prerequisites according to
1726                                   the target name.
1727 * Double-Colon::                How to use a special kind of rule to allow
1728                                   several independent rules for one target.
1729 * Automatic Prerequisites::     How to automatically generate rules giving
1730                                   prerequisites from source files themselves.
1731 @end menu
1733 @ifnottex
1734 @node Rule Example, Rule Syntax, Rules, Rules
1735 @section Rule Example
1737 Here is an example of a rule:
1739 @example
1740 foo.o : foo.c defs.h       # module for twiddling the frobs
1741         cc -c -g foo.c
1742 @end example
1744 Its target is @file{foo.o} and its prerequisites are @file{foo.c} and
1745 @file{defs.h}.  It has one command in the recipe: @samp{cc -c -g foo.c}.
1746 The recipe starts with a tab to identify it as a recipe.
1748 This rule says two things:
1750 @itemize @bullet
1751 @item
1752 How to decide whether @file{foo.o} is out of date: it is out of date
1753 if it does not exist, or if either @file{foo.c} or @file{defs.h} is
1754 more recent than it.
1756 @item
1757 How to update the file @file{foo.o}: by running @code{cc} as stated.
1758 The recipe does not explicitly mention @file{defs.h}, but we presume
1759 that @file{foo.c} includes it, and that that is why @file{defs.h} was
1760 added to the prerequisites.
1761 @end itemize
1762 @end ifnottex
1764 @node Rule Syntax, Prerequisite Types, Rule Example, Rules
1765 @section Rule Syntax
1767 @cindex rule syntax
1768 @cindex syntax of rules
1769 In general, a rule looks like this:
1771 @example
1772 @var{targets} : @var{prerequisites}
1773         @var{recipe}
1774         @dots{}
1775 @end example
1777 @noindent
1778 or like this:
1780 @example
1781 @var{targets} : @var{prerequisites} ; @var{recipe}
1782         @var{recipe}
1783         @dots{}
1784 @end example
1786 @cindex targets
1787 @cindex rule targets
1788 The @var{targets} are file names, separated by spaces.  Wildcard
1789 characters may be used (@pxref{Wildcards, ,Using Wildcard Characters
1790 in File Names}) and a name of the form @file{@var{a}(@var{m})}
1791 represents member @var{m} in archive file @var{a}
1792 (@pxref{Archive Members, ,Archive Members as Targets}).
1793 Usually there is only one
1794 target per rule, but occasionally there is a reason to have more
1795 (@pxref{Multiple Targets, , Multiple Targets in a Rule}).@refill
1797 @cindex recipes
1798 @cindex tab character (in commands)
1799 The @var{recipe} lines start with a tab character (or the first
1800 character in the value of the @code{.RECIPEPREFIX} variable;
1801 @pxref{Special Variables}).  The first recipe line may appear on the line
1802 after the prerequisites, with a tab character, or may appear on the
1803 same line, with a semicolon.  Either way, the effect is the same.
1804 There are other differences in the syntax of recipes.
1805 @xref{Recipes, ,Writing Recipes in Rules}.
1807 @cindex dollar sign (@code{$}), in rules
1808 @cindex @code{$}, in rules
1809 @cindex rules, and @code{$}
1810 Because dollar signs are used to start @code{make} variable
1811 references, if you really want a dollar sign in a target or
1812 prerequisite you must write two of them, @samp{$$} (@pxref{Using
1813 Variables, ,How to Use Variables}).  If you have enabled secondary
1814 expansion (@pxref{Secondary Expansion}) and you want a literal dollar
1815 sign in the prerequisites list, you must actually write @emph{four}
1816 dollar signs (@samp{$$$$}).
1818 You may split a long line by inserting a backslash followed by a
1819 newline, but this is not required, as @code{make} places no limit on
1820 the length of a line in a makefile.
1822 A rule tells @code{make} two things: when the targets are out of date,
1823 and how to update them when necessary.
1825 @cindex prerequisites
1826 @cindex rule prerequisites
1827 The criterion for being out of date is specified in terms of the
1828 @var{prerequisites}, which consist of file names separated by spaces.
1829 (Wildcards and archive members (@pxref{Archives}) are allowed here too.)
1830 A target is out of date if it does not exist or if it is older than any
1831 of the prerequisites (by comparison of last-modification times).  The
1832 idea is that the contents of the target file are computed based on
1833 information in the prerequisites, so if any of the prerequisites changes,
1834 the contents of the existing target file are no longer necessarily
1835 valid.
1837 How to update is specified by a @var{recipe}.  This is one or more
1838 lines to be executed by the shell (normally @samp{sh}), but with some
1839 extra features (@pxref{Recipes, ,Writing Recipes in Rules}).
1841 @node Prerequisite Types, Wildcards, Rule Syntax, Rules
1842 @comment  node-name,  next,  previous,  up
1843 @section Types of Prerequisites
1844 @cindex prerequisite types
1845 @cindex types of prerequisites
1847 @cindex prerequisites, normal
1848 @cindex normal prerequisites
1849 @cindex prerequisites, order-only
1850 @cindex order-only prerequisites
1851 There are actually two different types of prerequisites understood by
1852 GNU @code{make}: normal prerequisites such as described in the
1853 previous section, and @dfn{order-only} prerequisites.  A normal
1854 prerequisite makes two statements: first, it imposes an order in which
1855 recipes will be invoked: the recipes for all prerequisites of a target
1856 will be completed before the recipe for the target is run.  Second, it
1857 imposes a dependency relationship: if any prerequisite is newer than
1858 the target, then the target is considered out-of-date and must be
1859 rebuilt.
1861 Normally, this is exactly what you want: if a target's prerequisite is
1862 updated, then the target should also be updated.
1864 Occasionally, however, you have a situation where you want to impose a
1865 specific ordering on the rules to be invoked @emph{without} forcing
1866 the target to be updated if one of those rules is executed.  In that
1867 case, you want to define @dfn{order-only} prerequisites.  Order-only
1868 prerequisites can be specified by placing a pipe symbol (@code{|})
1869 in the prerequisites list: any prerequisites to the left of the pipe
1870 symbol are normal; any prerequisites to the right are order-only:
1872 @example
1873 @var{targets} : @var{normal-prerequisites} | @var{order-only-prerequisites}
1874 @end example
1876 The normal prerequisites section may of course be empty.  Also, you
1877 may still declare multiple lines of prerequisites for the same target:
1878 they are appended appropriately (normal prerequisites are appended to
1879 the list of normal prerequisites; order-only prerequisites are
1880 appended to the list of order-only prerequisites).  Note that if you
1881 declare the same file to be both a normal and an order-only
1882 prerequisite, the normal prerequisite takes precedence (since they
1883 have a strict superset of the behavior of an order-only prerequisite).
1885 Consider an example where your targets are to be placed in a separate
1886 directory, and that directory might not exist before @code{make} is
1887 run.  In this situation, you want the directory to be created before
1888 any targets are placed into it but, because the timestamps on
1889 directories change whenever a file is added, removed, or renamed, we
1890 certainly don't want to rebuild all the targets whenever the
1891 directory's timestamp changes.  One way to manage this is with
1892 order-only prerequisites: make the directory an order-only
1893 prerequisite on all the targets:
1895 @example
1896 OBJDIR := objdir
1897 OBJS := $(addprefix $(OBJDIR)/,foo.o bar.o baz.o)
1899 $(OBJDIR)/%.o : %.c
1900         $(COMPILE.c) $(OUTPUT_OPTION) $<
1902 all: $(OBJS)
1904 $(OBJS): | $(OBJDIR)
1906 $(OBJDIR):
1907         mkdir $(OBJDIR)
1908 @end example
1910 Now the rule to create the @file{objdir} directory will be run, if
1911 needed, before any @samp{.o} is built, but no @samp{.o} will be built
1912 because the @file{objdir} directory timestamp changed.
1914 @node Wildcards, Directory Search, Prerequisite Types, Rules
1915 @section Using Wildcard Characters in File Names
1916 @cindex wildcard
1917 @cindex file name with wildcards
1918 @cindex globbing (wildcards)
1920 @cindex @code{*} (wildcard character)
1921 @cindex @code{?} (wildcard character)
1922 @cindex @code{[@dots{}]} (wildcard characters)
1923 A single file name can specify many files using @dfn{wildcard characters}.
1924 The wildcard characters in @code{make} are @samp{*}, @samp{?} and
1925 @samp{[@dots{}]}, the same as in the Bourne shell.  For example, @file{*.c}
1926 specifies a list of all the files (in the working directory) whose names
1927 end in @samp{.c}.@refill
1929 @cindex @code{~} (tilde)
1930 @cindex tilde (@code{~})
1931 @cindex home directory
1932 The character @samp{~} at the beginning of a file name also has special
1933 significance.  If alone, or followed by a slash, it represents your home
1934 directory.  For example @file{~/bin} expands to @file{/home/you/bin}.
1935 If the @samp{~} is followed by a word, the string represents the home
1936 directory of the user named by that word.  For example @file{~john/bin}
1937 expands to @file{/home/john/bin}.  On systems which don't have a home
1938 directory for each user (such as MS-DOS or MS-Windows), this
1939 functionality can be simulated by setting the environment variable
1940 @var{HOME}.@refill
1942 Wildcard expansion is performed by @code{make} automatically in
1943 targets and in prerequisites.  In recipes, the shell is responsible
1944 for wildcard expansion.  In other contexts, wildcard expansion happens
1945 only if you request it explicitly with the @code{wildcard} function.
1947 The special significance of a wildcard character can be turned off by
1948 preceding it with a backslash.  Thus, @file{foo\*bar} would refer to a
1949 specific file whose name consists of @samp{foo}, an asterisk, and
1950 @samp{bar}.@refill
1952 @menu
1953 * Wildcard Examples::           Several examples.
1954 * Wildcard Pitfall::            Problems to avoid.
1955 * Wildcard Function::           How to cause wildcard expansion where
1956                                   it does not normally take place.
1957 @end menu
1959 @node Wildcard Examples, Wildcard Pitfall, Wildcards, Wildcards
1960 @subsection Wildcard Examples
1962 Wildcards can be used in the recipe of a rule, where they are expanded
1963 by the shell.  For example, here is a rule to delete all the object files:
1965 @example
1966 @group
1967 clean:
1968         rm -f *.o
1969 @end group
1970 @end example
1971 @cindex @code{rm} (shell command)
1973 Wildcards are also useful in the prerequisites of a rule.  With the
1974 following rule in the makefile, @samp{make print} will print all the
1975 @samp{.c} files that have changed since the last time you printed them:
1977 @example
1978 print: *.c
1979         lpr -p $?
1980         touch print
1981 @end example
1983 @cindex @code{print} target
1984 @cindex @code{lpr} (shell command)
1985 @cindex @code{touch} (shell command)
1986 @noindent
1987 This rule uses @file{print} as an empty target file; see @ref{Empty
1988 Targets, ,Empty Target Files to Record Events}.  (The automatic variable
1989 @samp{$?} is used to print only those files that have changed; see
1990 @ref{Automatic Variables}.)@refill
1992 Wildcard expansion does not happen when you define a variable.  Thus, if
1993 you write this:
1995 @example
1996 objects = *.o
1997 @end example
1999 @noindent
2000 then the value of the variable @code{objects} is the actual string
2001 @samp{*.o}.  However, if you use the value of @code{objects} in a
2002 target or prerequisite, wildcard expansion will take place there.  If
2003 you use the value of @code{objects} in a recipe, the shell may perform
2004 wildcard expansion when the recipe runs.  To set @code{objects} to the
2005 expansion, instead use:
2007 @example
2008 objects := $(wildcard *.o)
2009 @end example
2011 @noindent
2012 @xref{Wildcard Function}.
2014 @node Wildcard Pitfall, Wildcard Function, Wildcard Examples, Wildcards
2015 @subsection Pitfalls of Using Wildcards
2016 @cindex wildcard pitfalls
2017 @cindex pitfalls of wildcards
2018 @cindex mistakes with wildcards
2019 @cindex errors with wildcards
2020 @cindex problems with wildcards
2022 Now here is an example of a naive way of using wildcard expansion, that
2023 does not do what you would intend.  Suppose you would like to say that the
2024 executable file @file{foo} is made from all the object files in the
2025 directory, and you write this:
2027 @example
2028 objects = *.o
2030 foo : $(objects)
2031         cc -o foo $(CFLAGS) $(objects)
2032 @end example
2034 @noindent
2035 The value of @code{objects} is the actual string @samp{*.o}.  Wildcard
2036 expansion happens in the rule for @file{foo}, so that each @emph{existing}
2037 @samp{.o} file becomes a prerequisite of @file{foo} and will be recompiled if
2038 necessary.
2040 But what if you delete all the @samp{.o} files?  When a wildcard matches
2041 no files, it is left as it is, so then @file{foo} will depend on the
2042 oddly-named file @file{*.o}.  Since no such file is likely to exist,
2043 @code{make} will give you an error saying it cannot figure out how to
2044 make @file{*.o}.  This is not what you want!
2046 Actually it is possible to obtain the desired result with wildcard
2047 expansion, but you need more sophisticated techniques, including the
2048 @code{wildcard} function and string substitution.
2049 @ifnottex
2050 @xref{Wildcard Function, ,The Function @code{wildcard}}.
2051 @end ifnottex
2052 @iftex
2053 These are described in the following section.
2054 @end iftex
2056 @cindex wildcards and MS-DOS/MS-Windows backslashes
2057 @cindex backslashes in pathnames and wildcard expansion
2059 Microsoft operating systems (MS-DOS and MS-Windows) use backslashes to
2060 separate directories in pathnames, like so:
2062 @example
2063   c:\foo\bar\baz.c
2064 @end example
2066 This is equivalent to the Unix-style @file{c:/foo/bar/baz.c} (the
2067 @file{c:} part is the so-called drive letter).  When @code{make} runs on
2068 these systems, it supports backslashes as well as the Unix-style forward
2069 slashes in pathnames.  However, this support does @emph{not} include the
2070 wildcard expansion, where backslash is a quote character.  Therefore,
2071 you @emph{must} use Unix-style slashes in these cases.
2074 @node Wildcard Function,  , Wildcard Pitfall, Wildcards
2075 @subsection The Function @code{wildcard}
2076 @findex wildcard
2078 Wildcard expansion happens automatically in rules.  But wildcard expansion
2079 does not normally take place when a variable is set, or inside the
2080 arguments of a function.  If you want to do wildcard expansion in such
2081 places, you need to use the @code{wildcard} function, like this:
2083 @example
2084 $(wildcard @var{pattern}@dots{})
2085 @end example
2087 @noindent
2088 This string, used anywhere in a makefile, is replaced by a
2089 space-separated list of names of existing files that match one of the
2090 given file name patterns.  If no existing file name matches a pattern,
2091 then that pattern is omitted from the output of the @code{wildcard}
2092 function.  Note that this is different from how unmatched wildcards
2093 behave in rules, where they are used verbatim rather than ignored
2094 (@pxref{Wildcard Pitfall}).
2096 One use of the @code{wildcard} function is to get a list of all the C source
2097 files in a directory, like this:
2099 @example
2100 $(wildcard *.c)
2101 @end example
2103 We can change the list of C source files into a list of object files by
2104 replacing the @samp{.c} suffix with @samp{.o} in the result, like this:
2106 @example
2107 $(patsubst %.c,%.o,$(wildcard *.c))
2108 @end example
2110 @noindent
2111 (Here we have used another function, @code{patsubst}.
2112 @xref{Text Functions, ,Functions for String Substitution and Analysis}.)@refill
2114 Thus, a makefile to compile all C source files in the directory and then
2115 link them together could be written as follows:
2117 @example
2118 objects := $(patsubst %.c,%.o,$(wildcard *.c))
2120 foo : $(objects)
2121         cc -o foo $(objects)
2122 @end example
2124 @noindent
2125 (This takes advantage of the implicit rule for compiling C programs, so
2126 there is no need to write explicit rules for compiling the files.
2127 @xref{Flavors, ,The Two Flavors of Variables}, for an explanation of
2128 @samp{:=}, which is a variant of @samp{=}.)
2130 @node Directory Search, Phony Targets, Wildcards, Rules
2131 @section Searching Directories for Prerequisites
2132 @vindex VPATH
2133 @findex vpath
2134 @cindex vpath
2135 @cindex search path for prerequisites (@code{VPATH})
2136 @cindex directory search (@code{VPATH})
2138 For large systems, it is often desirable to put sources in a separate
2139 directory from the binaries.  The @dfn{directory search} features of
2140 @code{make} facilitate this by searching several directories
2141 automatically to find a prerequisite.  When you redistribute the files
2142 among directories, you do not need to change the individual rules,
2143 just the search paths.
2145 @menu
2146 * General Search::              Specifying a search path that applies
2147                                   to every prerequisite.
2148 * Selective Search::            Specifying a search path
2149                                   for a specified class of names.
2150 * Search Algorithm::            When and how search paths are applied.
2151 * Recipes/Search::              How to write recipes that work together
2152                                   with search paths.
2153 * Implicit/Search::             How search paths affect implicit rules.
2154 * Libraries/Search::            Directory search for link libraries.
2155 @end menu
2157 @node General Search, Selective Search, Directory Search, Directory Search
2158 @subsection @code{VPATH}: Search Path for All Prerequisites
2159 @vindex VPATH
2161 The value of the @code{make} variable @code{VPATH} specifies a list of
2162 directories that @code{make} should search.  Most often, the
2163 directories are expected to contain prerequisite files that are not in the
2164 current directory; however, @code{make} uses @code{VPATH} as a search
2165 list for both prerequisites and targets of rules.
2167 Thus, if a file that is listed as a target or prerequisite does not exist
2168 in the current directory, @code{make} searches the directories listed in
2169 @code{VPATH} for a file with that name.  If a file is found in one of
2170 them, that file may become the prerequisite (see below).  Rules may then
2171 specify the names of files in the prerequisite list as if they all
2172 existed in the current directory.  @xref{Recipes/Search, ,Writing Recipes with Directory Search}.
2174 In the @code{VPATH} variable, directory names are separated by colons or
2175 blanks.  The order in which directories are listed is the order followed
2176 by @code{make} in its search.  (On MS-DOS and MS-Windows, semi-colons
2177 are used as separators of directory names in @code{VPATH}, since the
2178 colon can be used in the pathname itself, after the drive letter.)
2180 For example,
2182 @example
2183 VPATH = src:../headers
2184 @end example
2186 @noindent
2187 specifies a path containing two directories, @file{src} and
2188 @file{../headers}, which @code{make} searches in that order.
2190 With this value of @code{VPATH}, the following rule,
2192 @example
2193 foo.o : foo.c
2194 @end example
2196 @noindent
2197 is interpreted as if it were written like this:
2199 @example
2200 foo.o : src/foo.c
2201 @end example
2203 @noindent
2204 assuming the file @file{foo.c} does not exist in the current directory but
2205 is found in the directory @file{src}.
2207 @node Selective Search, Search Algorithm, General Search, Directory Search
2208 @subsection The @code{vpath} Directive
2209 @findex vpath
2211 Similar to the @code{VPATH} variable, but more selective, is the
2212 @code{vpath} directive (note lower case), which allows you to specify a
2213 search path for a particular class of file names: those that match a
2214 particular pattern.  Thus you can supply certain search directories for
2215 one class of file names and other directories (or none) for other file
2216 names.
2218 There are three forms of the @code{vpath} directive:
2220 @table @code
2221 @item vpath @var{pattern} @var{directories}
2222 Specify the search path @var{directories} for file names that match
2223 @var{pattern}.
2225 The search path, @var{directories}, is a list of directories to be
2226 searched, separated by colons (semi-colons on MS-DOS and MS-Windows) or
2227 blanks, just like the search path used in the @code{VPATH} variable.
2229 @item vpath @var{pattern}
2230 Clear out the search path associated with @var{pattern}.
2232 @c Extra blank line makes sure this gets two lines.
2233 @item vpath
2235 Clear all search paths previously specified with @code{vpath} directives.
2236 @end table
2238 A @code{vpath} pattern is a string containing a @samp{%} character.  The
2239 string must match the file name of a prerequisite that is being searched
2240 for, the @samp{%} character matching any sequence of zero or more
2241 characters (as in pattern rules; @pxref{Pattern Rules, ,Defining and
2242 Redefining Pattern Rules}).  For example, @code{%.h} matches files that
2243 end in @code{.h}.  (If there is no @samp{%}, the pattern must match the
2244 prerequisite exactly, which is not useful very often.)
2246 @cindex @code{%}, quoting in @code{vpath}
2247 @cindex @code{%}, quoting with @code{\} (backslash)
2248 @cindex @code{\} (backslash), to quote @code{%}
2249 @cindex backslash (@code{\}), to quote @code{%}
2250 @cindex quoting @code{%}, in @code{vpath}
2251 @samp{%} characters in a @code{vpath} directive's pattern can be quoted
2252 with preceding backslashes (@samp{\}).  Backslashes that would otherwise
2253 quote @samp{%} characters can be quoted with more backslashes.
2254 Backslashes that quote @samp{%} characters or other backslashes are
2255 removed from the pattern before it is compared to file names.  Backslashes
2256 that are not in danger of quoting @samp{%} characters go unmolested.@refill
2258 When a prerequisite fails to exist in the current directory, if the
2259 @var{pattern} in a @code{vpath} directive matches the name of the
2260 prerequisite file, then the @var{directories} in that directive are searched
2261 just like (and before) the directories in the @code{VPATH} variable.
2263 For example,
2265 @example
2266 vpath %.h ../headers
2267 @end example
2269 @noindent
2270 tells @code{make} to look for any prerequisite whose name ends in @file{.h}
2271 in the directory @file{../headers} if the file is not found in the current
2272 directory.
2274 If several @code{vpath} patterns match the prerequisite file's name, then
2275 @code{make} processes each matching @code{vpath} directive one by one,
2276 searching all the directories mentioned in each directive.  @code{make}
2277 handles multiple @code{vpath} directives in the order in which they
2278 appear in the makefile; multiple directives with the same pattern are
2279 independent of each other.
2281 @need 750
2282 Thus,
2284 @example
2285 @group
2286 vpath %.c foo
2287 vpath %   blish
2288 vpath %.c bar
2289 @end group
2290 @end example
2292 @noindent
2293 will look for a file ending in @samp{.c} in @file{foo}, then
2294 @file{blish}, then @file{bar}, while
2296 @example
2297 @group
2298 vpath %.c foo:bar
2299 vpath %   blish
2300 @end group
2301 @end example
2303 @noindent
2304 will look for a file ending in @samp{.c} in @file{foo}, then
2305 @file{bar}, then @file{blish}.
2307 @node Search Algorithm, Recipes/Search, Selective Search, Directory Search
2308 @subsection How Directory Searches are Performed
2309 @cindex algorithm for directory search
2310 @cindex directory search algorithm
2312 When a prerequisite is found through directory search, regardless of type
2313 (general or selective), the pathname located may not be the one that
2314 @code{make} actually provides you in the prerequisite list.  Sometimes
2315 the path discovered through directory search is thrown away.
2317 The algorithm @code{make} uses to decide whether to keep or abandon a
2318 path found via directory search is as follows:
2320 @enumerate
2321 @item
2322 If a target file does not exist at the path specified in the makefile,
2323 directory search is performed.
2325 @item
2326 If the directory search is successful, that path is kept and this file
2327 is tentatively stored as the target.
2329 @item
2330 All prerequisites of this target are examined using this same method.
2332 @item
2333 After processing the prerequisites, the target may or may not need to be
2334 rebuilt:
2336 @enumerate a
2337 @item
2338 If the target does @emph{not} need to be rebuilt, the path to the file
2339 found during directory search is used for any prerequisite lists which
2340 contain this target.  In short, if @code{make} doesn't need to rebuild
2341 the target then you use the path found via directory search.
2343 @item
2344 If the target @emph{does} need to be rebuilt (is out-of-date), the
2345 pathname found during directory search is @emph{thrown away}, and the
2346 target is rebuilt using the file name specified in the makefile.  In
2347 short, if @code{make} must rebuild, then the target is rebuilt locally,
2348 not in the directory found via directory search.
2349 @end enumerate
2350 @end enumerate
2352 This algorithm may seem complex, but in practice it is quite often
2353 exactly what you want.
2355 @cindex traditional directory search (GPATH)
2356 @cindex directory search, traditional (GPATH)
2357 Other versions of @code{make} use a simpler algorithm: if the file does
2358 not exist, and it is found via directory search, then that pathname is
2359 always used whether or not the target needs to be built.  Thus, if the
2360 target is rebuilt it is created at the pathname discovered during
2361 directory search.
2363 @vindex GPATH
2364 If, in fact, this is the behavior you want for some or all of your
2365 directories, you can use the @code{GPATH} variable to indicate this to
2366 @code{make}.
2368 @code{GPATH} has the same syntax and format as @code{VPATH} (that is, a
2369 space- or colon-delimited list of pathnames).  If an out-of-date target
2370 is found by directory search in a directory that also appears in
2371 @code{GPATH}, then that pathname is not thrown away.  The target is
2372 rebuilt using the expanded path.
2374 @node Recipes/Search, Implicit/Search, Search Algorithm, Directory Search
2375 @subsection Writing Recipes with Directory Search
2376 @cindex recipes, and directory search
2377 @cindex directory search (@code{VPATH}), and recipes
2379 When a prerequisite is found in another directory through directory search,
2380 this cannot change the recipe of the rule; they will execute as written.
2381 Therefore, you must write the recipe with care so that it will look for
2382 the prerequisite in the directory where @code{make} finds it.
2384 This is done with the @dfn{automatic variables} such as @samp{$^}
2385 (@pxref{Automatic Variables}).
2386 For instance, the value of @samp{$^} is a
2387 list of all the prerequisites of the rule, including the names of
2388 the directories in which they were found, and the value of
2389 @samp{$@@} is the target.  Thus:@refill
2391 @example
2392 foo.o : foo.c
2393         cc -c $(CFLAGS) $^ -o $@@
2394 @end example
2396 @noindent
2397 (The variable @code{CFLAGS} exists so you can specify flags for C
2398 compilation by implicit rules; we use it here for consistency so it will
2399 affect all C compilations uniformly;
2400 @pxref{Implicit Variables, ,Variables Used by Implicit Rules}.)
2402 Often the prerequisites include header files as well, which you do not
2403 want to mention in the recipe.  The automatic variable @samp{$<} is
2404 just the first prerequisite:
2406 @example
2407 VPATH = src:../headers
2408 foo.o : foo.c defs.h hack.h
2409         cc -c $(CFLAGS) $< -o $@@
2410 @end example
2412 @node Implicit/Search, Libraries/Search, Recipes/Search, Directory Search
2413 @subsection Directory Search and Implicit Rules
2414 @cindex @code{VPATH}, and implicit rules
2415 @cindex directory search (@code{VPATH}), and implicit rules
2416 @cindex search path for prerequisites (@code{VPATH}), and implicit rules
2417 @cindex implicit rule, and directory search
2418 @cindex implicit rule, and @code{VPATH}
2419 @cindex rule, implicit, and directory search
2420 @cindex rule, implicit, and @code{VPATH}
2422 The search through the directories specified in @code{VPATH} or with
2423 @code{vpath} also happens during consideration of implicit rules
2424 (@pxref{Implicit Rules, ,Using Implicit Rules}).
2426 For example, when a file @file{foo.o} has no explicit rule, @code{make}
2427 considers implicit rules, such as the built-in rule to compile
2428 @file{foo.c} if that file exists.  If such a file is lacking in the
2429 current directory, the appropriate directories are searched for it.  If
2430 @file{foo.c} exists (or is mentioned in the makefile) in any of the
2431 directories, the implicit rule for C compilation is applied.
2433 The recipes of implicit rules normally use automatic variables as a
2434 matter of necessity; consequently they will use the file names found by
2435 directory search with no extra effort.
2437 @node Libraries/Search,  , Implicit/Search, Directory Search
2438 @subsection Directory Search for Link Libraries
2439 @cindex link libraries, and directory search
2440 @cindex libraries for linking, directory search
2441 @cindex directory search (@code{VPATH}), and link libraries
2442 @cindex @code{VPATH}, and link libraries
2443 @cindex search path for prerequisites (@code{VPATH}), and link libraries
2444 @cindex @code{-l} (library search)
2445 @cindex link libraries, patterns matching
2446 @cindex @code{.LIBPATTERNS}, and link libraries
2447 @vindex .LIBPATTERNS
2449 Directory search applies in a special way to libraries used with the
2450 linker.  This special feature comes into play when you write a prerequisite
2451 whose name is of the form @samp{-l@var{name}}.  (You can tell something
2452 strange is going on here because the prerequisite is normally the name of a
2453 file, and the @emph{file name} of a library generally looks like
2454 @file{lib@var{name}.a}, not like @samp{-l@var{name}}.)@refill
2456 When a prerequisite's name has the form @samp{-l@var{name}}, @code{make}
2457 handles it specially by searching for the file @file{lib@var{name}.so},
2458 and, if it is not found, for the file @file{lib@var{name}.a} in the current
2459 directory, in directories specified by matching @code{vpath}
2460 search paths and the @code{VPATH} search path, and then in the
2461 directories @file{/lib}, @file{/usr/lib}, and @file{@var{prefix}/lib}
2462 (normally @file{/usr/local/lib}, but MS-DOS/MS-Windows versions of
2463 @code{make} behave as if @var{prefix} is defined to be the root of the
2464 DJGPP installation tree).
2466 For example, if there is a @file{/usr/lib/libcurses.a} library on your
2467 system (and no @file{/usr/lib/libcurses.so} file), then
2469 @example
2470 @group
2471 foo : foo.c -lcurses
2472         cc $^ -o $@@
2473 @end group
2474 @end example
2476 @noindent
2477 would cause the command @samp{cc foo.c /usr/lib/libcurses.a -o foo} to
2478 be executed when @file{foo} is older than @file{foo.c} or than
2479 @file{/usr/lib/libcurses.a}.@refill
2481 Although the default set of files to be searched for is
2482 @file{lib@var{name}.so} and @file{lib@var{name}.a}, this is customizable
2483 via the @code{.LIBPATTERNS} variable.  Each word in the value of this
2484 variable is a pattern string.  When a prerequisite like
2485 @samp{-l@var{name}} is seen, @code{make} will replace the percent in
2486 each pattern in the list with @var{name} and perform the above directory
2487 searches using each library file name.
2489 The default value for @code{.LIBPATTERNS} is @samp{lib%.so lib%.a},
2490 which provides the default behavior described above.
2492 You can turn off link library expansion completely by setting this
2493 variable to an empty value.
2495 @node Phony Targets, Force Targets, Directory Search, Rules
2496 @section Phony Targets
2497 @cindex phony targets
2498 @cindex targets, phony
2499 @cindex targets without a file
2501 A phony target is one that is not really the name of a file; rather it
2502 is just a name for a recipe to be executed when you make an explicit
2503 request.  There are two reasons to use a phony target: to avoid a
2504 conflict with a file of the same name, and to improve performance.
2506 If you write a rule whose recipe will not create the target file, the
2507 recipe will be executed every time the target comes up for remaking.
2508 Here is an example:
2510 @example
2511 @group
2512 clean:
2513         rm *.o temp
2514 @end group
2515 @end example
2517 @noindent
2518 Because the @code{rm} command does not create a file named @file{clean},
2519 probably no such file will ever exist.  Therefore, the @code{rm} command
2520 will be executed every time you say @samp{make clean}.
2521 @cindex @code{rm} (shell command)
2523 @findex .PHONY
2524 The phony target will cease to work if anything ever does create a file
2525 named @file{clean} in this directory.  Since it has no prerequisites, the
2526 file @file{clean} would inevitably be considered up to date, and its
2527 recipe would not be executed.  To avoid this problem, you can explicitly
2528 declare the target to be phony, using the special target @code{.PHONY}
2529 (@pxref{Special Targets, ,Special Built-in Target Names}) as follows:
2531 @example
2532 .PHONY : clean
2533 @end example
2535 @noindent
2536 Once this is done, @samp{make clean} will run the recipe regardless of
2537 whether there is a file named @file{clean}.
2539 Since it knows that phony targets do not name actual files that could be
2540 remade from other files, @code{make} skips the implicit rule search for
2541 phony targets (@pxref{Implicit Rules}).  This is why declaring a target
2542 phony is good for performance, even if you are not worried about the
2543 actual file existing.
2545 Thus, you first write the line that states that @code{clean} is a
2546 phony target, then you write the rule, like this:
2548 @example
2549 @group
2550 .PHONY: clean
2551 clean:
2552         rm *.o temp
2553 @end group
2554 @end example
2556 Another example of the usefulness of phony targets is in conjunction
2557 with recursive invocations of @code{make} (for more information, see
2558 @ref{Recursion, ,Recursive Use of @code{make}}).  In this case the
2559 makefile will often contain a variable which lists a number of
2560 sub-directories to be built.  One way to handle this is with one rule
2561 whose recipe is a shell loop over the sub-directories, like this:
2563 @example
2564 @group
2565 SUBDIRS = foo bar baz
2567 subdirs:
2568         for dir in $(SUBDIRS); do \
2569           $(MAKE) -C $$dir; \
2570         done
2571 @end group
2572 @end example
2574 There are problems with this method, however.  First, any error
2575 detected in a sub-make is ignored by this rule, so it will continue
2576 to build the rest of the directories even when one fails.  This can be
2577 overcome by adding shell commands to note the error and exit, but then
2578 it will do so even if @code{make} is invoked with the @code{-k}
2579 option, which is unfortunate.  Second, and perhaps more importantly,
2580 you cannot take advantage of @code{make}'s ability to build targets in
2581 parallel (@pxref{Parallel, ,Parallel Execution}), since there is only
2582 one rule.
2584 By declaring the sub-directories as phony targets (you must do this as
2585 the sub-directory obviously always exists; otherwise it won't be built)
2586 you can remove these problems:
2588 @example
2589 @group
2590 SUBDIRS = foo bar baz
2592 .PHONY: subdirs $(SUBDIRS)
2594 subdirs: $(SUBDIRS)
2596 $(SUBDIRS):
2597         $(MAKE) -C $@@
2599 foo: baz
2600 @end group
2601 @end example
2603 Here we've also declared that the @file{foo} sub-directory cannot be
2604 built until after the @file{baz} sub-directory is complete; this kind of
2605 relationship declaration is particularly important when attempting
2606 parallel builds.
2608 A phony target should not be a prerequisite of a real target file; if it
2609 is, its recipe will be run every time @code{make} goes to update that
2610 file.  As long as a phony target is never a prerequisite of a real
2611 target, the phony target recipe will be executed only when the phony
2612 target is a specified goal (@pxref{Goals, ,Arguments to Specify the
2613 Goals}).
2615 Phony targets can have prerequisites.  When one directory contains multiple
2616 programs, it is most convenient to describe all of the programs in one
2617 makefile @file{./Makefile}.  Since the target remade by default will be the
2618 first one in the makefile, it is common to make this a phony target named
2619 @samp{all} and give it, as prerequisites, all the individual programs.  For
2620 example:
2622 @example
2623 all : prog1 prog2 prog3
2624 .PHONY : all
2626 prog1 : prog1.o utils.o
2627         cc -o prog1 prog1.o utils.o
2629 prog2 : prog2.o
2630         cc -o prog2 prog2.o
2632 prog3 : prog3.o sort.o utils.o
2633         cc -o prog3 prog3.o sort.o utils.o
2634 @end example
2636 @noindent
2637 Now you can say just @samp{make} to remake all three programs, or
2638 specify as arguments the ones to remake (as in @samp{make prog1
2639 prog3}).  Phoniness is not inherited: the prerequisites of a phony
2640 target are not themselves phony, unless explicitly declared to be so.
2642 When one phony target is a prerequisite of another, it serves as a subroutine
2643 of the other.  For example, here @samp{make cleanall} will delete the
2644 object files, the difference files, and the file @file{program}:
2646 @example
2647 .PHONY: cleanall cleanobj cleandiff
2649 cleanall : cleanobj cleandiff
2650         rm program
2652 cleanobj :
2653         rm *.o
2655 cleandiff :
2656         rm *.diff
2657 @end example
2659 @node Force Targets, Empty Targets, Phony Targets, Rules
2660 @section Rules without Recipes or Prerequisites
2661 @cindex force targets
2662 @cindex targets, force
2663 @cindex @code{FORCE}
2664 @cindex rule, no recipe or prerequisites
2666 If a rule has no prerequisites or recipe, and the target of the rule
2667 is a nonexistent file, then @code{make} imagines this target to have
2668 been updated whenever its rule is run.  This implies that all targets
2669 depending on this one will always have their recipe run.
2671 An example will illustrate this:
2673 @example
2674 @group
2675 clean: FORCE
2676         rm $(objects)
2677 FORCE:
2678 @end group
2679 @end example
2681 Here the target @samp{FORCE} satisfies the special conditions, so the
2682 target @file{clean} that depends on it is forced to run its recipe.
2683 There is nothing special about the name @samp{FORCE}, but that is one
2684 name commonly used this way.
2686 As you can see, using @samp{FORCE} this way has the same results as using
2687 @samp{.PHONY: clean}.
2689 Using @samp{.PHONY} is more explicit and more efficient.  However,
2690 other versions of @code{make} do not support @samp{.PHONY}; thus
2691 @samp{FORCE} appears in many makefiles.  @xref{Phony Targets}.
2693 @node Empty Targets, Special Targets, Force Targets, Rules
2694 @section Empty Target Files to Record Events
2695 @cindex empty targets
2696 @cindex targets, empty
2697 @cindex recording events with empty targets
2699 The @dfn{empty target} is a variant of the phony target; it is used to hold
2700 recipes for an action that you request explicitly from time to time.
2701 Unlike a phony target, this target file can really exist; but the file's
2702 contents do not matter, and usually are empty.
2704 The purpose of the empty target file is to record, with its
2705 last-modification time, when the rule's recipe was last executed.  It
2706 does so because one of the commands in the recipe is a @code{touch}
2707 command to update the target file.
2709 The empty target file should have some prerequisites (otherwise it
2710 doesn't make sense).  When you ask to remake the empty target, the
2711 recipe is executed if any prerequisite is more recent than the target;
2712 in other words, if a prerequisite has changed since the last time you
2713 remade the target.  Here is an example:
2715 @example
2716 print: foo.c bar.c
2717         lpr -p $?
2718         touch print
2719 @end example
2720 @cindex @code{print} target
2721 @cindex @code{lpr} (shell command)
2722 @cindex @code{touch} (shell command)
2724 @noindent
2725 With this rule, @samp{make print} will execute the @code{lpr} command if
2726 either source file has changed since the last @samp{make print}.  The
2727 automatic variable @samp{$?} is used to print only those files that have
2728 changed (@pxref{Automatic Variables}).
2730 @node Special Targets, Multiple Targets, Empty Targets, Rules
2731 @section Special Built-in Target Names
2732 @cindex special targets
2733 @cindex built-in special targets
2734 @cindex targets, built-in special
2736 Certain names have special meanings if they appear as targets.
2738 @table @code
2739 @findex .PHONY
2740 @item .PHONY
2742 The prerequisites of the special target @code{.PHONY} are considered to
2743 be phony targets.  When it is time to consider such a target,
2744 @code{make} will run its recipe unconditionally, regardless of
2745 whether a file with that name exists or what its last-modification
2746 time is.  @xref{Phony Targets, ,Phony Targets}.
2748 @findex .SUFFIXES
2749 @item .SUFFIXES
2751 The prerequisites of the special target @code{.SUFFIXES} are the list
2752 of suffixes to be used in checking for suffix rules.
2753 @xref{Suffix Rules, , Old-Fashioned Suffix Rules}.
2755 @findex .DEFAULT
2756 @item .DEFAULT
2758 The recipe specified for @code{.DEFAULT} is used for any target for
2759 which no rules are found (either explicit rules or implicit rules).
2760 @xref{Last Resort}.  If a @code{.DEFAULT} recipe is specified, every
2761 file mentioned as a prerequisite, but not as a target in a rule, will have
2762 that recipe executed on its behalf.  @xref{Implicit Rule Search,
2763 ,Implicit Rule Search Algorithm}.
2765 @findex .PRECIOUS
2766 @item .PRECIOUS
2767 @cindex precious targets
2768 @cindex preserving with @code{.PRECIOUS}
2770 The targets which @code{.PRECIOUS} depends on are given the following
2771 special treatment: if @code{make} is killed or interrupted during the
2772 execution of their recipes, the target is not deleted.
2773 @xref{Interrupts, ,Interrupting or Killing @code{make}}.  Also, if the
2774 target is an intermediate file, it will not be deleted after it is no
2775 longer needed, as is normally done.  @xref{Chained Rules, ,Chains of
2776 Implicit Rules}.  In this latter respect it overlaps with the
2777 @code{.SECONDARY} special target.
2779 You can also list the target pattern of an implicit rule (such as
2780 @samp{%.o}) as a prerequisite file of the special target @code{.PRECIOUS}
2781 to preserve intermediate files created by rules whose target patterns
2782 match that file's name.
2784 @findex .INTERMEDIATE
2785 @item .INTERMEDIATE
2786 @cindex intermediate targets, explicit
2788 The targets which @code{.INTERMEDIATE} depends on are treated as
2789 intermediate files.  @xref{Chained Rules, ,Chains of Implicit Rules}.
2790 @code{.INTERMEDIATE} with no prerequisites has no effect.
2792 @findex .SECONDARY
2793 @item .SECONDARY
2794 @cindex secondary targets
2795 @cindex preserving with @code{.SECONDARY}
2797 The targets which @code{.SECONDARY} depends on are treated as
2798 intermediate files, except that they are never automatically deleted.
2799 @xref{Chained Rules, ,Chains of Implicit Rules}.
2801 @code{.SECONDARY} with no prerequisites causes all targets to be treated
2802 as secondary (i.e., no target is removed because it is considered
2803 intermediate).
2805 @findex .SECONDEXPANSION
2806 @item .SECONDEXPANSION
2808 If @code{.SECONDEXPANSION} is mentioned as a target anywhere in the
2809 makefile, then all prerequisite lists defined @emph{after} it appears
2810 will be expanded a second time after all makefiles have been read in.
2811 @xref{Secondary Expansion, ,Secondary Expansion}.
2813 @findex .DELETE_ON_ERROR
2814 @item .DELETE_ON_ERROR
2815 @cindex removing targets on failure
2817 If @code{.DELETE_ON_ERROR} is mentioned as a target anywhere in the
2818 makefile, then @code{make} will delete the target of a rule if it has
2819 changed and its recipe exits with a nonzero exit status, just as it
2820 does when it receives a signal.  @xref{Errors, ,Errors in Recipes}.
2822 @findex .IGNORE
2823 @item .IGNORE
2825 If you specify prerequisites for @code{.IGNORE}, then @code{make} will
2826 ignore errors in execution of the recipe for those particular files.
2827 The recipe for @code{.IGNORE} (if any) is ignored.
2829 If mentioned as a target with no prerequisites, @code{.IGNORE} says to
2830 ignore errors in execution of recipes for all files.  This usage of
2831 @samp{.IGNORE} is supported only for historical compatibility.  Since
2832 this affects every recipe in the makefile, it is not very useful; we
2833 recommend you use the more selective ways to ignore errors in specific
2834 recipes.  @xref{Errors, ,Errors in Recipes}.
2836 @findex .LOW_RESOLUTION_TIME
2837 @item .LOW_RESOLUTION_TIME
2839 If you specify prerequisites for @code{.LOW_RESOLUTION_TIME},
2840 @command{make} assumes that these files are created by commands that
2841 generate low resolution time stamps.  The recipe for the
2842 @code{.LOW_RESOLUTION_TIME} target are ignored.
2844 The high resolution file time stamps of many modern file systems
2845 lessen the chance of @command{make} incorrectly concluding that a file
2846 is up to date.  Unfortunately, some hosts do not provide a way to set a
2847 high resolution file time stamp, so commands like @samp{cp -p} that
2848 explicitly set a file's time stamp must discard its sub-second part.
2849 If a file is created by such a command, you should list it as a
2850 prerequisite of @code{.LOW_RESOLUTION_TIME} so that @command{make}
2851 does not mistakenly conclude that the file is out of date.  For
2852 example:
2854 @example
2855 @group
2856 .LOW_RESOLUTION_TIME: dst
2857 dst: src
2858         cp -p src dst
2859 @end group
2860 @end example
2862 Since @samp{cp -p} discards the sub-second part of @file{src}'s time
2863 stamp, @file{dst} is typically slightly older than @file{src} even when
2864 it is up to date.  The @code{.LOW_RESOLUTION_TIME} line causes
2865 @command{make} to consider @file{dst} to be up to date if its time stamp
2866 is at the start of the same second that @file{src}'s time stamp is in.
2868 Due to a limitation of the archive format, archive member time stamps
2869 are always low resolution.  You need not list archive members as
2870 prerequisites of @code{.LOW_RESOLUTION_TIME}, as @command{make} does this
2871 automatically.
2873 @findex .SILENT
2874 @item .SILENT
2876 If you specify prerequisites for @code{.SILENT}, then @code{make} will
2877 not print the recipe used to remake those particular files before
2878 executing them.  The recipe for @code{.SILENT} is ignored.
2880 If mentioned as a target with no prerequisites, @code{.SILENT} says not
2881 to print any recipes before executing them.  This usage of
2882 @samp{.SILENT} is supported only for historical compatibility.  We
2883 recommend you use the more selective ways to silence specific recipes.
2884 @xref{Echoing, ,Recipe Echoing}.  If you want to silence all recipes
2885 for a particular run of @code{make}, use the @samp{-s} or
2886 @w{@samp{--silent}} option (@pxref{Options Summary}).
2888 @findex .EXPORT_ALL_VARIABLES
2889 @item .EXPORT_ALL_VARIABLES
2891 Simply by being mentioned as a target, this tells @code{make} to
2892 export all variables to child processes by default.
2893 @xref{Variables/Recursion, ,Communicating Variables to a
2894 Sub-@code{make}}.
2896 @findex .NOTPARALLEL
2897 @item .NOTPARALLEL
2898 @cindex parallel execution, overriding
2900 If @code{.NOTPARALLEL} is mentioned as a target, then this invocation
2901 of @code{make} will be run serially, even if the @samp{-j} option is
2902 given.  Any recursively invoked @code{make} command will still run
2903 recipes in parallel (unless its makefile also contains this target).
2904 Any prerequisites on this target are ignored.
2906 @findex .ONESHELL
2907 @item .ONESHELL
2908 @cindex recipe execution, single invocation
2910 If @code{.ONESHELL} is mentioned as a target, then when a target is
2911 built all lines of the recipe will be given to a single invocation of
2912 the shell rather than each line being invoked separately
2913 (@pxref{Execution, ,Recipe Execution}).
2915 @findex .POSIX
2916 @item .POSIX
2917 @cindex POSIX-conforming mode, setting
2919 If @code{.POSIX} is mentioned as a target, then the makefile will be
2920 parsed and run in POSIX-conforming mode.  This does @emph{not} mean
2921 that only POSIX-conforming makefiles will be accepted: all advanced
2922 GNU @code{make} features are still available.  Rather, this target
2923 causes @code{make} to behave as required by POSIX in those areas
2924 where @code{make}'s default behavior differs.
2926 In particular, if this target is mentioned then recipes will be
2927 invoked as if the shell had been passed the @code{-e} flag: the first
2928 failing command in a recipe will cause the recipe to fail immediately.
2929 @end table
2931 Any defined implicit rule suffix also counts as a special target if it
2932 appears as a target, and so does the concatenation of two suffixes, such
2933 as @samp{.c.o}.  These targets are suffix rules, an obsolete way of
2934 defining implicit rules (but a way still widely used).  In principle, any
2935 target name could be special in this way if you break it in two and add
2936 both pieces to the suffix list.  In practice, suffixes normally begin with
2937 @samp{.}, so these special target names also begin with @samp{.}.
2938 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
2940 @node Multiple Targets, Multiple Rules, Special Targets, Rules
2941 @section Multiple Targets in a Rule
2942 @cindex multiple targets
2943 @cindex several targets in a rule
2944 @cindex targets, multiple
2945 @cindex rule, with multiple targets
2947 A rule with multiple targets is equivalent to writing many rules, each with
2948 one target, and all identical aside from that.  The same recipe applies to
2949 all the targets, but its effect may vary because you can substitute the
2950 actual target name into the recipe using @samp{$@@}.  The rule contributes
2951 the same prerequisites to all the targets also.
2953 This is useful in two cases.
2955 @itemize @bullet
2956 @item
2957 You want just prerequisites, no recipe.  For example:
2959 @example
2960 kbd.o command.o files.o: command.h
2961 @end example
2963 @noindent
2964 gives an additional prerequisite to each of the three object files
2965 mentioned.
2967 @item
2968 Similar recipes work for all the targets.  The recipes do not need
2969 to be absolutely identical, since the automatic variable @samp{$@@}
2970 can be used to substitute the particular target to be remade into the
2971 commands (@pxref{Automatic Variables}).  For example:
2973 @example
2974 @group
2975 bigoutput littleoutput : text.g
2976         generate text.g -$(subst output,,$@@) > $@@
2977 @end group
2978 @end example
2979 @findex subst
2981 @noindent
2982 is equivalent to
2984 @example
2985 bigoutput : text.g
2986         generate text.g -big > bigoutput
2987 littleoutput : text.g
2988         generate text.g -little > littleoutput
2989 @end example
2991 @noindent
2992 Here we assume the hypothetical program @code{generate} makes two
2993 types of output, one if given @samp{-big} and one if given
2994 @samp{-little}.
2995 @xref{Text Functions, ,Functions for String Substitution and Analysis},
2996 for an explanation of the @code{subst} function.
2997 @end itemize
2999 Suppose you would like to vary the prerequisites according to the
3000 target, much as the variable @samp{$@@} allows you to vary the recipe.
3001 You cannot do this with multiple targets in an ordinary rule, but you
3002 can do it with a @dfn{static pattern rule}.  @xref{Static Pattern,
3003 ,Static Pattern Rules}.
3005 @node Multiple Rules, Static Pattern, Multiple Targets, Rules
3006 @section Multiple Rules for One Target
3007 @cindex multiple rules for one target
3008 @cindex several rules for one target
3009 @cindex rule, multiple for one target
3010 @cindex target, multiple rules for one
3012 One file can be the target of several rules.  All the prerequisites
3013 mentioned in all the rules are merged into one list of prerequisites for
3014 the target.  If the target is older than any prerequisite from any rule,
3015 the recipe is executed.
3017 There can only be one recipe to be executed for a file.  If more than
3018 one rule gives a recipe for the same file, @code{make} uses the last
3019 one given and prints an error message.  (As a special case, if the
3020 file's name begins with a dot, no error message is printed.  This odd
3021 behavior is only for compatibility with other implementations of
3022 @code{make}@dots{} you should avoid using it).  Occasionally it is
3023 useful to have the same target invoke multiple recipes which are
3024 defined in different parts of your makefile; you can use
3025 @dfn{double-colon rules} (@pxref{Double-Colon}) for this.
3027 An extra rule with just prerequisites can be used to give a few extra
3028 prerequisites to many files at once.  For example, makefiles often
3029 have a variable, such as @code{objects}, containing a list of all the
3030 compiler output files in the system being made.  An easy way to say
3031 that all of them must be recompiled if @file{config.h} changes is to
3032 write the following:
3034 @example
3035 objects = foo.o bar.o
3036 foo.o : defs.h
3037 bar.o : defs.h test.h
3038 $(objects) : config.h
3039 @end example
3041 This could be inserted or taken out without changing the rules that really
3042 specify how to make the object files, making it a convenient form to use if
3043 you wish to add the additional prerequisite intermittently.
3045 Another wrinkle is that the additional prerequisites could be
3046 specified with a variable that you set with a command line argument to
3047 @code{make} (@pxref{Overriding, ,Overriding Variables}).  For example,
3049 @example
3050 @group
3051 extradeps=
3052 $(objects) : $(extradeps)
3053 @end group
3054 @end example
3056 @noindent
3057 means that the command @samp{make extradeps=foo.h} will consider
3058 @file{foo.h} as a prerequisite of each object file, but plain @samp{make}
3059 will not.
3061 If none of the explicit rules for a target has a recipe, then @code{make}
3062 searches for an applicable implicit rule to find one
3063 @pxref{Implicit Rules, ,Using Implicit Rules}).
3065 @node Static Pattern, Double-Colon, Multiple Rules, Rules
3066 @section Static Pattern Rules
3067 @cindex static pattern rule
3068 @cindex rule, static pattern
3069 @cindex pattern rules, static (not implicit)
3070 @cindex varying prerequisites
3071 @cindex prerequisites, varying (static pattern)
3073 @dfn{Static pattern rules} are rules which specify multiple targets and
3074 construct the prerequisite names for each target based on the target name.
3075 They are more general than ordinary rules with multiple targets because the
3076 targets do not have to have identical prerequisites.  Their prerequisites must
3077 be @emph{analogous}, but not necessarily @emph{identical}.
3079 @menu
3080 * Static Usage::                The syntax of static pattern rules.
3081 * Static versus Implicit::      When are they better than implicit rules?
3082 @end menu
3084 @node Static Usage, Static versus Implicit, Static Pattern, Static Pattern
3085 @subsection Syntax of Static Pattern Rules
3086 @cindex static pattern rule, syntax of
3087 @cindex pattern rules, static, syntax of
3089 Here is the syntax of a static pattern rule:
3091 @example
3092 @var{targets} @dots{}: @var{target-pattern}: @var{prereq-patterns} @dots{}
3093         @var{recipe}
3094         @dots{}
3095 @end example
3097 @noindent
3098 The @var{targets} list specifies the targets that the rule applies to.
3099 The targets can contain wildcard characters, just like the targets of
3100 ordinary rules (@pxref{Wildcards, ,Using Wildcard Characters in File
3101 Names}).
3103 @cindex target pattern, static (not implicit)
3104 @cindex stem
3105 The @var{target-pattern} and @var{prereq-patterns} say how to compute the
3106 prerequisites of each target.  Each target is matched against the
3107 @var{target-pattern} to extract a part of the target name, called the
3108 @dfn{stem}.  This stem is substituted into each of the @var{prereq-patterns}
3109 to make the prerequisite names (one from each @var{prereq-pattern}).
3111 Each pattern normally contains the character @samp{%} just once.  When the
3112 @var{target-pattern} matches a target, the @samp{%} can match any part of
3113 the target name; this part is called the @dfn{stem}.  The rest of the
3114 pattern must match exactly.  For example, the target @file{foo.o} matches
3115 the pattern @samp{%.o}, with @samp{foo} as the stem.  The targets
3116 @file{foo.c} and @file{foo.out} do not match that pattern.@refill
3118 @cindex prerequisite pattern, static (not implicit)
3119 The prerequisite names for each target are made by substituting the stem
3120 for the @samp{%} in each prerequisite pattern.  For example, if one
3121 prerequisite pattern is @file{%.c}, then substitution of the stem
3122 @samp{foo} gives the prerequisite name @file{foo.c}.  It is legitimate
3123 to write a prerequisite pattern that does not contain @samp{%}; then this
3124 prerequisite is the same for all targets.
3126 @cindex @code{%}, quoting in static pattern
3127 @cindex @code{%}, quoting with @code{\} (backslash)
3128 @cindex @code{\} (backslash), to quote @code{%}
3129 @cindex backslash (@code{\}), to quote @code{%}
3130 @cindex quoting @code{%}, in static pattern
3131 @samp{%} characters in pattern rules can be quoted with preceding
3132 backslashes (@samp{\}).  Backslashes that would otherwise quote @samp{%}
3133 characters can be quoted with more backslashes.  Backslashes that quote
3134 @samp{%} characters or other backslashes are removed from the pattern
3135 before it is compared to file names or has a stem substituted into it.
3136 Backslashes that are not in danger of quoting @samp{%} characters go
3137 unmolested.  For example, the pattern @file{the\%weird\\%pattern\\} has
3138 @samp{the%weird\} preceding the operative @samp{%} character, and
3139 @samp{pattern\\} following it.  The final two backslashes are left alone
3140 because they cannot affect any @samp{%} character.@refill
3142 Here is an example, which compiles each of @file{foo.o} and @file{bar.o}
3143 from the corresponding @file{.c} file:
3145 @example
3146 @group
3147 objects = foo.o bar.o
3149 all: $(objects)
3151 $(objects): %.o: %.c
3152         $(CC) -c $(CFLAGS) $< -o $@@
3153 @end group
3154 @end example
3156 @noindent
3157 Here @samp{$<} is the automatic variable that holds the name of the
3158 prerequisite and @samp{$@@} is the automatic variable that holds the name
3159 of the target; see @ref{Automatic Variables}.
3161 Each target specified must match the target pattern; a warning is issued
3162 for each target that does not.  If you have a list of files, only some of
3163 which will match the pattern, you can use the @code{filter} function to
3164 remove non-matching file names (@pxref{Text Functions, ,Functions for String Substitution and Analysis}):
3166 @example
3167 files = foo.elc bar.o lose.o
3169 $(filter %.o,$(files)): %.o: %.c
3170         $(CC) -c $(CFLAGS) $< -o $@@
3171 $(filter %.elc,$(files)): %.elc: %.el
3172         emacs -f batch-byte-compile $<
3173 @end example
3175 @noindent
3176 In this example the result of @samp{$(filter %.o,$(files))} is
3177 @file{bar.o lose.o}, and the first static pattern rule causes each of
3178 these object files to be updated by compiling the corresponding C source
3179 file.  The result of @w{@samp{$(filter %.elc,$(files))}} is
3180 @file{foo.elc}, so that file is made from @file{foo.el}.@refill
3182 Another example shows how to use @code{$*} in static pattern rules:
3183 @vindex $*@r{, and static pattern}
3185 @example
3186 @group
3187 bigoutput littleoutput : %output : text.g
3188         generate text.g -$* > $@@
3189 @end group
3190 @end example
3192 @noindent
3193 When the @code{generate} command is run, @code{$*} will expand to the
3194 stem, either @samp{big} or @samp{little}.
3196 @node Static versus Implicit,  , Static Usage, Static Pattern
3197 @subsection Static Pattern Rules versus Implicit Rules
3198 @cindex rule, static pattern versus implicit
3199 @cindex static pattern rule, versus implicit
3201 A static pattern rule has much in common with an implicit rule defined as a
3202 pattern rule (@pxref{Pattern Rules, ,Defining and Redefining Pattern Rules}).
3203 Both have a pattern for the target and patterns for constructing the
3204 names of prerequisites.  The difference is in how @code{make} decides
3205 @emph{when} the rule applies.
3207 An implicit rule @emph{can} apply to any target that matches its pattern,
3208 but it @emph{does} apply only when the target has no recipe otherwise
3209 specified, and only when the prerequisites can be found.  If more than one
3210 implicit rule appears applicable, only one applies; the choice depends on
3211 the order of rules.
3213 By contrast, a static pattern rule applies to the precise list of targets
3214 that you specify in the rule.  It cannot apply to any other target and it
3215 invariably does apply to each of the targets specified.  If two conflicting
3216 rules apply, and both have recipes, that's an error.
3218 The static pattern rule can be better than an implicit rule for these
3219 reasons:
3221 @itemize @bullet
3222 @item
3223 You may wish to override the usual implicit rule for a few
3224 files whose names cannot be categorized syntactically but
3225 can be given in an explicit list.
3227 @item
3228 If you cannot be sure of the precise contents of the directories
3229 you are using, you may not be sure which other irrelevant files
3230 might lead @code{make} to use the wrong implicit rule.  The choice
3231 might depend on the order in which the implicit rule search is done.
3232 With static pattern rules, there is no uncertainty: each rule applies
3233 to precisely the targets specified.
3234 @end itemize
3236 @node Double-Colon, Automatic Prerequisites, Static Pattern, Rules
3237 @section Double-Colon Rules
3238 @cindex double-colon rules
3239 @cindex rule, double-colon (@code{::})
3240 @cindex multiple rules for one target (@code{::})
3241 @cindex @code{::} rules (double-colon)
3243 @dfn{Double-colon} rules are explicit rules written with @samp{::}
3244 instead of @samp{:} after the target names.  They are handled
3245 differently from ordinary rules when the same target appears in more
3246 than one rule.  Pattern rules with double-colons have an entirely
3247 different meaning (@pxref{Match-Anything Rules}).
3249 When a target appears in multiple rules, all the rules must be the same
3250 type: all ordinary, or all double-colon.  If they are double-colon, each
3251 of them is independent of the others.  Each double-colon rule's recipe
3252 is executed if the target is older than any prerequisites of that rule.
3253 If there are no prerequisites for that rule, its recipe is always
3254 executed (even if the target already exists).  This can result in
3255 executing none, any, or all of the double-colon rules.
3257 Double-colon rules with the same target are in fact completely separate
3258 from one another.  Each double-colon rule is processed individually, just
3259 as rules with different targets are processed.
3261 The double-colon rules for a target are executed in the order they appear
3262 in the makefile.  However, the cases where double-colon rules really make
3263 sense are those where the order of executing the recipes would not matter.
3265 Double-colon rules are somewhat obscure and not often very useful; they
3266 provide a mechanism for cases in which the method used to update a target
3267 differs depending on which prerequisite files caused the update, and such
3268 cases are rare.
3270 Each double-colon rule should specify a recipe; if it does not, an
3271 implicit rule will be used if one applies.
3272 @xref{Implicit Rules, ,Using Implicit Rules}.
3274 @node Automatic Prerequisites,  , Double-Colon, Rules
3275 @section Generating Prerequisites Automatically
3276 @cindex prerequisites, automatic generation
3277 @cindex automatic generation of prerequisites
3278 @cindex generating prerequisites automatically
3280 In the makefile for a program, many of the rules you need to write often
3281 say only that some object file depends on some header
3282 file.  For example, if @file{main.c} uses @file{defs.h} via an
3283 @code{#include}, you would write:
3285 @example
3286 main.o: defs.h
3287 @end example
3289 @noindent
3290 You need this rule so that @code{make} knows that it must remake
3291 @file{main.o} whenever @file{defs.h} changes.  You can see that for a
3292 large program you would have to write dozens of such rules in your
3293 makefile.  And, you must always be very careful to update the makefile
3294 every time you add or remove an @code{#include}.
3295 @cindex @code{#include}
3297 @cindex @code{-M} (to compiler)
3298 To avoid this hassle, most modern C compilers can write these rules for
3299 you, by looking at the @code{#include} lines in the source files.
3300 Usually this is done with the @samp{-M} option to the compiler.
3301 For example, the command:
3303 @example
3304 cc -M main.c
3305 @end example
3307 @noindent
3308 generates the output:
3310 @example
3311 main.o : main.c defs.h
3312 @end example
3314 @noindent
3315 Thus you no longer have to write all those rules yourself.
3316 The compiler will do it for you.
3318 Note that such a rule constitutes mentioning @file{main.o} in a
3319 makefile, so it can never be considered an intermediate file by
3320 implicit rule search.  This means that @code{make} won't ever remove
3321 the file after using it; @pxref{Chained Rules, ,Chains of Implicit
3322 Rules}.
3324 @cindex @code{make depend}
3325 With old @code{make} programs, it was traditional practice to use this
3326 compiler feature to generate prerequisites on demand with a command like
3327 @samp{make depend}.  That command would create a file @file{depend}
3328 containing all the automatically-generated prerequisites; then the
3329 makefile could use @code{include} to read them in (@pxref{Include}).
3331 In GNU @code{make}, the feature of remaking makefiles makes this
3332 practice obsolete---you need never tell @code{make} explicitly to
3333 regenerate the prerequisites, because it always regenerates any makefile
3334 that is out of date.  @xref{Remaking Makefiles}.
3336 The practice we recommend for automatic prerequisite generation is to have
3337 one makefile corresponding to each source file.  For each source file
3338 @file{@var{name}.c} there is a makefile @file{@var{name}.d} which lists
3339 what files the object file @file{@var{name}.o} depends on.  That way
3340 only the source files that have changed need to be rescanned to produce
3341 the new prerequisites.
3343 Here is the pattern rule to generate a file of prerequisites (i.e., a makefile)
3344 called @file{@var{name}.d} from a C source file called @file{@var{name}.c}:
3346 @smallexample
3347 @group
3348 %.d: %.c
3349         @@set -e; rm -f $@@; \
3350          $(CC) -M $(CPPFLAGS) $< > $@@.$$$$; \
3351          sed 's,\($*\)\.o[ :]*,\1.o $@@ : ,g' < $@@.$$$$ > $@@; \
3352          rm -f $@@.$$$$
3353 @end group
3354 @end smallexample
3356 @noindent
3357 @xref{Pattern Rules}, for information on defining pattern rules.  The
3358 @samp{-e} flag to the shell causes it to exit immediately if the
3359 @code{$(CC)} command (or any other command) fails (exits with a
3360 nonzero status).
3361 @cindex @code{-e} (shell flag)
3363 @cindex @code{-MM} (to GNU compiler)
3364 With the GNU C compiler, you may wish to use the @samp{-MM} flag instead
3365 of @samp{-M}.  This omits prerequisites on system header files.
3366 @xref{Preprocessor Options, , Options Controlling the Preprocessor,
3367 gcc.info, Using GNU CC}, for details.
3369 @cindex @code{sed} (shell command)
3370 The purpose of the @code{sed} command is to translate (for example):
3372 @example
3373 main.o : main.c defs.h
3374 @end example
3376 @noindent
3377 into:
3379 @example
3380 main.o main.d : main.c defs.h
3381 @end example
3383 @noindent
3384 @cindex @code{.d}
3385 This makes each @samp{.d} file depend on all the source and header files
3386 that the corresponding @samp{.o} file depends on.  @code{make} then
3387 knows it must regenerate the prerequisites whenever any of the source or
3388 header files changes.
3390 Once you've defined the rule to remake the @samp{.d} files,
3391 you then use the @code{include} directive to read them all in.
3392 @xref{Include}.  For example:
3394 @example
3395 @group
3396 sources = foo.c bar.c
3398 include $(sources:.c=.d)
3399 @end group
3400 @end example
3402 @noindent
3403 (This example uses a substitution variable reference to translate the
3404 list of source files @samp{foo.c bar.c} into a list of prerequisite
3405 makefiles, @samp{foo.d bar.d}.  @xref{Substitution Refs}, for full
3406 information on substitution references.)  Since the @samp{.d} files are
3407 makefiles like any others, @code{make} will remake them as necessary
3408 with no further work from you.  @xref{Remaking Makefiles}.
3410 Note that the @samp{.d} files contain target definitions; you should
3411 be sure to place the @code{include} directive @emph{after} the first,
3412 default goal in your makefiles or run the risk of having a random
3413 object file become the default goal.
3414 @xref{How Make Works}.
3416 @node Recipes, Using Variables, Rules, Top
3417 @chapter Writing Recipes in Rules
3418 @cindex recipes
3419 @cindex recipes, how to write
3420 @cindex writing recipes
3422 The recipe of a rule consists of one or more shell command lines to
3423 be executed, one at a time, in the order they appear.  Typically, the
3424 result of executing these commands is that the target of the rule is
3425 brought up to date.
3427 Users use many different shell programs, but recipes in makefiles are
3428 always interpreted by @file{/bin/sh} unless the makefile specifies
3429 otherwise.  @xref{Execution, ,Recipe Execution}.
3431 @menu
3432 * Recipe Syntax::               Recipe syntax features and pitfalls.
3433 * Echoing::                     How to control when recipes are echoed.
3434 * Execution::                   How recipes are executed.
3435 * Parallel::                    How recipes can be executed in parallel.
3436 * Errors::                      What happens after a recipe execution error.
3437 * Interrupts::                  What happens when a recipe is interrupted.
3438 * Recursion::                   Invoking @code{make} from makefiles.
3439 * Canned Recipes::              Defining canned recipes.
3440 * Empty Recipes::               Defining useful, do-nothing recipes.
3441 @end menu
3443 @node Recipe Syntax, Echoing, Recipes, Recipes
3444 @section Recipe Syntax
3445 @cindex recipe syntax
3446 @cindex syntax of recipe
3448 Makefiles have the unusual property that there are really two distinct
3449 syntaxes in one file.  Most of the makefile uses @code{make} syntax
3450 (@pxref{Makefiles, ,Writing Makefiles}).  However, recipes are meant
3451 to be interpreted by the shell and so they are written using shell
3452 syntax.  The @code{make} program does not try to understand shell
3453 syntax: it performs only a very few specific translations on the
3454 content of the recipe before handing it to the shell.
3456 Each line in the recipe must start with a tab (or the first character
3457 in the value of the @code{.RECIPEPREFIX} variable; @pxref{Special
3458 Variables}), except that the first recipe line may be attached to the
3459 target-and-prerequisites line with a semicolon in between.  @emph{Any}
3460 line in the makefile that begins with a tab and appears in a ``rule
3461 context'' (that is, after a rule has been started until another rule
3462 or variable definition) will be considered part of a recipe for that
3463 rule.  Blank lines and lines of just comments may appear among the
3464 recipe lines; they are ignored.
3466 Some consequences of these rules include:
3468 @itemize @bullet
3469 @item
3470 A blank line that begins with a tab is not blank: it's an empty
3471 recipe (@pxref{Empty Recipes}).
3473 @cindex comments, in recipes
3474 @cindex recipes, comments in
3475 @cindex @code{#} (comments), in recipes
3476 @item
3477 A comment in a recipe is not a @code{make} comment; it will be
3478 passed to the shell as-is.  Whether the shell treats it as a comment
3479 or not depends on your shell.
3481 @item
3482 A variable definition in a ``rule context'' which is indented by a tab
3483 as the first character on the line, will be considered part of a
3484 recipe, not a @code{make} variable definition, and passed to the
3485 shell.
3487 @item
3488 A conditional expression (@code{ifdef}, @code{ifeq},
3489 etc. @pxref{Conditional Syntax, ,Syntax of Conditionals}) in a ``rule
3490 context'' which is indented by a tab as the first character on the
3491 line, will be considered part of a recipe and be passed to the shell.
3493 @end itemize
3495 @menu
3496 * Splitting Lines::             Breaking long recipe lines for readability.
3497 * Variables in Recipes::        Using @code{make} variables in recipes.
3498 @end menu
3500 @node Splitting Lines, Variables in Recipes, Recipe Syntax, Recipe Syntax
3501 @subsection Splitting Recipe Lines
3502 @cindex recipes, splitting
3503 @cindex splitting recipes
3504 @cindex recipes, backslash (@code{\}) in
3505 @cindex recipes, quoting newlines in
3506 @cindex backslash (@code{\}), in recipes
3507 @cindex @code{\} (backslash), in recipes
3508 @cindex quoting newline, in recipes
3509 @cindex newline, quoting, in recipes
3511 One of the few ways in which @code{make} does interpret recipes is
3512 checking for a backslash just before the newline.  As in normal
3513 makefile syntax, a single logical recipe line can be split into
3514 multiple physical lines in the makefile by placing a backslash before
3515 each newline.  A sequence of lines like this is considered a single
3516 recipe line, and one instance of the shell will be invoked to run it.
3518 However, in contrast to how they are treated in other places in a
3519 makefile, backslash-newline pairs are @emph{not} removed from the
3520 recipe.  Both the backslash and the newline characters are preserved
3521 and passed to the shell.  How the backslash-newline is interpreted
3522 depends on your shell.  If the first character of the next line after
3523 the backslash-newline is the recipe prefix character (a tab by
3524 default; @pxref{Special Variables}), then that character (and only
3525 that character) is removed.  Whitespace is never added to the recipe.
3527 For example, the recipe for the all target in this makefile:
3529 @example
3530 @group
3531 all :
3532         @@echo no\
3533 space
3534         @@echo no\
3535         space
3536         @@echo one \
3537         space
3538         @@echo one\
3539          space
3540 @end group
3541 @end example
3543 @noindent
3544 consists of four separate shell commands where the output is:
3546 @example
3547 @group
3548 nospace
3549 nospace
3550 one space
3551 one space
3552 @end group
3553 @end example
3555 As a more complex example, this makefile:
3557 @example
3558 @group
3559 all : ; @@echo 'hello \
3560         world' ; echo "hello \
3561     world"
3562 @end group
3563 @end example
3565 @noindent
3566 will invoke one shell with a command of:
3568 @example
3569 @group
3570 echo 'hello \
3571 world' ; echo "hello \
3572     world"
3573 @end group
3574 @end example
3576 @noindent
3577 which, according to shell quoting rules, will yield the following output:
3579 @example
3580 @group
3581 hello \
3582 world
3583 hello     world
3584 @end group
3585 @end example
3587 @noindent
3588 Notice how the backslash/newline pair was removed inside the string
3589 quoted with double quotes (@code{"@dots{}"}), but not from the string
3590 quoted with single quotes (@code{'@dots{}'}).  This is the way the
3591 default shell (@file{/bin/sh}) handles backslash/newline pairs.  If
3592 you specify a different shell in your makefiles it may treat them
3593 differently.
3595 Sometimes you want to split a long line inside of single quotes, but
3596 you don't want the backslash-newline to appear in the quoted content.
3597 This is often the case when passing scripts to languages such as Perl,
3598 where extraneous backslashes inside the script can change its meaning
3599 or even be a syntax error.  One simple way of handling this is to
3600 place the quoted string, or even the entire command, into a
3601 @code{make} variable then use the variable in the recipe.  In this
3602 situation the newline quoting rules for makefiles will be used, and
3603 the backslash-newline will be removed.  If we rewrite our example
3604 above using this method:
3606 @example
3607 @group
3608 HELLO = 'hello \
3609 world'
3611 all : ; @@echo $(HELLO)
3612 @end group
3613 @end example
3615 @noindent
3616 we will get output like this:
3618 @example
3619 @group
3620 hello world
3621 @end group
3622 @end example
3624 If you like, you can also use target-specific variables
3625 (@pxref{Target-specific, ,Target-specific Variable Values}) to obtain
3626 a tighter correspondence between the variable and the recipe that
3627 uses it.
3629 @node Variables in Recipes,  , Splitting Lines, Recipe Syntax
3630 @subsection Using Variables in Recipes
3631 @cindex variable references in recipes
3632 @cindex recipes, using variables in
3634 The other way in which @code{make} processes recipes is by expanding
3635 any variable references in them (@pxref{Reference,Basics of Variable
3636 References}).  This occurs after make has finished reading all the
3637 makefiles and the target is determined to be out of date; so, the
3638 recipes for targets which are not rebuilt are never expanded.
3640 Variable and function references in recipes have identical syntax and
3641 semantics to references elsewhere in the makefile.  They also have the
3642 same quoting rules: if you want a dollar sign to appear in your
3643 recipe, you must double it (@samp{$$}).  For shells like the default
3644 shell, that use dollar signs to introduce variables, it's important to
3645 keep clear in your mind whether the variable you want to reference is
3646 a @code{make} variable (use a single dollar sign) or a shell variable
3647 (use two dollar signs).  For example:
3649 @example
3650 @group
3651 LIST = one two three
3652 all:
3653         for i in $(LIST); do \
3654             echo $$i; \
3655         done
3656 @end group
3657 @end example
3659 @noindent
3660 results in the following command being passed to the shell:
3662 @example
3663 @group
3664 for i in one two three; do \
3665     echo $i; \
3666 done
3667 @end group
3668 @end example
3670 @noindent
3671 which generates the expected result:
3673 @example
3674 @group
3677 three
3678 @end group
3679 @end example
3681 @node Echoing, Execution, Recipe Syntax, Recipes
3682 @section Recipe Echoing
3683 @cindex echoing of recipes
3684 @cindex silent operation
3685 @cindex @code{@@} (in recipes)
3686 @cindex recipes, echoing
3687 @cindex printing of recipes
3689 Normally @code{make} prints each line of the recipe before it is
3690 executed.  We call this @dfn{echoing} because it gives the appearance
3691 that you are typing the lines yourself.
3693 When a line starts with @samp{@@}, the echoing of that line is suppressed.
3694 The @samp{@@} is discarded before the line is passed to the shell.
3695 Typically you would use this for a command whose only effect is to print
3696 something, such as an @code{echo} command to indicate progress through
3697 the makefile:
3699 @example
3700 @@echo About to make distribution files
3701 @end example
3703 @cindex @code{-n}
3704 @cindex @code{--just-print}
3705 @cindex @code{--dry-run}
3706 @cindex @code{--recon}
3707 When @code{make} is given the flag @samp{-n} or @samp{--just-print} it
3708 only echoes most recipes, without executing them.  @xref{Options
3709 Summary, ,Summary of Options}.  In this case even the recipe lines
3710 starting with @samp{@@} are printed.  This flag is useful for finding
3711 out which recipes @code{make} thinks are necessary without actually
3712 doing them.
3714 @cindex @code{-s}
3715 @cindex @code{--silent}
3716 @cindex @code{--quiet}
3717 @findex .SILENT
3718 The @samp{-s} or @samp{--silent}
3719 flag to @code{make} prevents all echoing, as if all recipes
3720 started with @samp{@@}.  A rule in the makefile for the special target
3721 @code{.SILENT} without prerequisites has the same effect
3722 (@pxref{Special Targets, ,Special Built-in Target Names}).
3723 @code{.SILENT} is essentially obsolete since @samp{@@} is more flexible.@refill
3725 @node Execution, Parallel, Echoing, Recipes
3726 @section Recipe Execution
3727 @cindex recipe, execution
3728 @cindex execution, of recipes
3729 @vindex @code{SHELL} @r{(recipe execution)}
3731 When it is time to execute recipes to update a target, they are
3732 executed by invoking a new sub-shell for each line of the recipe,
3733 unless the @code{.ONESHELL} special target is in effect
3734 (@pxref{One Shell, ,Using One Shell})  (In practice, @code{make} may
3735 take shortcuts that do not affect the results.)
3737 @cindex @code{cd} (shell command)
3738 @cindex shell variables, setting in recipes
3739 @cindex recipes setting shell variables
3740 @strong{Please note:} this implies that setting shell variables and
3741 invoking shell commands such as @code{cd} that set a context local to
3742 each process will not affect the following lines in the recipe.@footnote{On
3743 MS-DOS, the value of current working directory is @strong{global}, so
3744 changing it @emph{will} affect the following recipe lines on those
3745 systems.}  If you want to use @code{cd} to affect the next statement,
3746 put both statements in a single recipe line.  Then @code{make} will
3747 invoke one shell to run the entire line, and the shell will execute
3748 the statements in sequence.  For example:
3750 @example
3751 foo : bar/lose
3752         cd $(@@D) && gobble $(@@F) > ../$@@
3753 @end example
3755 @noindent
3756 Here we use the shell AND operator (@code{&&}) so that if the
3757 @code{cd} command fails, the script will fail without trying to invoke
3758 the @code{gobble} command in the wrong directory, which could cause
3759 problems (in this case it would certainly cause @file{../foo} to be
3760 truncated, at least).
3762 @menu
3763 * One Shell::                   One shell for all lines in a recipe.
3764 * Choosing the Shell::          How @code{make} chooses the shell used
3765                                   to run recipes.
3766 @end menu
3768 @node One Shell, Choosing the Shell, Execution, Execution
3769 @subsection Using One Shell
3770 @cindex recipe lines, single shell
3771 @cindex @code{.ONESHELL}, use of
3772 @findex .ONESHELL
3774 Sometimes you would prefer that all the lines in the recipe be passed
3775 to a single invocation of the shell.  There are generally two
3776 situations where this is useful: first, it can improve performance in
3777 makefiles where recipes consist of many command lines, by avoiding
3778 extra processes.  Second, you might want newlines to be included in
3779 your recipe command (for example perhaps you are using a very
3780 different interpreter as your @code{SHELL}).  If the @code{.ONESHELL}
3781 special target appears anywhere in the makefile then @emph{all}
3782 recipe lines for each target will be provided to a single invocation
3783 of the shell.  Newlines between recipe lines will be preserved.  For
3784 example:
3786 @example
3787 .ONESHELL:
3788 foo : bar/lose
3789         cd $(@@D)
3790         gobble $(@@F) > ../$@@
3791 @end example
3793 @noindent
3794 would now work as expected even though the commands are on different
3795 recipe lines.
3797 If @code{.ONESHELL} is provided, then only the first line of the
3798 recipe will be checked for the special prefix characters (@samp{@@},
3799 @samp{-}, and @samp{+}).  Subsequent lines will include the special
3800 characters in the recipe line when the @code{SHELL} is invoked.  If
3801 you want your recipe to start with one of these special characters
3802 you'll need to arrange for them to not be the first characters on the
3803 first line, perhaps by adding a comment or similar.  For example, this
3804 would be a syntax error in Perl because the first @samp{@@} is removed
3805 by make:
3807 @example
3808 .ONESHELL:
3809 SHELL = /usr/bin/perl
3810 .SHELLFLAGS = -e
3811 show :
3812         @@f = qw(a b c);
3813         print "@@f\n";
3814 @end example
3816 @noindent
3817 However, either of these alternatives would work properly:
3819 @example
3820 .ONESHELL:
3821 SHELL = /usr/bin/perl
3822 .SHELLFLAGS = -e
3823 show :
3824         # Make sure "@@" is not the first character on the first line
3825         @@f = qw(a b c);
3826         print "@@f\n";
3827 @end example
3829 @noindent
3832 @example
3833 .ONESHELL:
3834 SHELL = /usr/bin/perl
3835 .SHELLFLAGS = -e
3836 show :
3837         my @@f = qw(a b c);
3838         print "@@f\n";
3839 @end example
3841 As a special feature, if @code{SHELL} is determined to be a
3842 POSIX-style shell, the special prefix characters in ``internal''
3843 recipe lines will @emph{removed} before the recipe is processed.  This
3844 feature is intended to allow existing makefiles to add the
3845 @code{.ONESHELL} special target and still run properly without
3846 extensive modifications.  Since the special prefix characters are not
3847 legal at the beginning of a line in a POSIX shell script this is not a
3848 loss in functionality.  For example, this works as expected:
3850 @example
3851 .ONESHELL:
3852 foo : bar/lose
3853         @@cd $(@@D)
3854         @@gobble $(@@F) > ../$@@
3855 @end example
3857 Even with this special feature, however, makefiles with
3858 @code{.ONESHELL} will behave differently in ways that could be
3859 noticeable.  For example, normally if any line in the recipe fails,
3860 that causes the rule to fail and no more recipe lines are processed.
3861 Under @code{.ONESHELL} a failure of any but the final recipe line will
3862 not be noticed by @code{make}.  You can modify @code{.SHELLFLAGS} to
3863 add the @code{-e} option to the shell which will cause any failure
3864 anywhere in the command line to cause the shell to fail, but this
3865 could itself cause your recipe to behave differently.  Ultimately you
3866 may need to harden your recipe lines to allow them to work with
3867 @code{.ONESHELL}.
3869 @node Choosing the Shell,  , One Shell, Execution
3870 @subsection Choosing the Shell
3871 @cindex shell, choosing the
3872 @cindex @code{SHELL}, value of
3873 @cindex @code{.SHELLFLAGS}, value of
3875 @vindex SHELL
3876 @vindex .SHELLFLAGS
3877 The program used as the shell is taken from the variable @code{SHELL}.
3878 If this variable is not set in your makefile, the program
3879 @file{/bin/sh} is used as the shell.  The argument(s) passed to the
3880 shell are taken from the variable @code{.SHELLFLAGS}.  The default
3881 value of @code{.SHELLFLAGS} is @code{-c} normally, or @code{-ec} in
3882 POSIX-conforming mode.
3884 @cindex environment, @code{SHELL} in
3885 Unlike most variables, the variable @code{SHELL} is never set from the
3886 environment.  This is because the @code{SHELL} environment variable is
3887 used to specify your personal choice of shell program for interactive
3888 use.  It would be very bad for personal choices like this to affect the
3889 functioning of makefiles.  @xref{Environment, ,Variables from the
3890 Environment}.
3892 Furthermore, when you do set @code{SHELL} in your makefile that value
3893 is @emph{not} exported in the environment to recipe lines that
3894 @code{make} invokes.  Instead, the value inherited from the user's
3895 environment, if any, is exported.  You can override this behavior by
3896 explicitly exporting @code{SHELL} (@pxref{Variables/Recursion,
3897 ,Communicating Variables to a Sub-@code{make}}), forcing it to be
3898 passed in the environment to recipe lines.
3900 @vindex @code{MAKESHELL} @r{(MS-DOS alternative to @code{SHELL})}
3901 However, on MS-DOS and MS-Windows the value of @code{SHELL} in the
3902 environment @strong{is} used, since on those systems most users do not
3903 set this variable, and therefore it is most likely set specifically to
3904 be used by @code{make}.  On MS-DOS, if the setting of @code{SHELL} is
3905 not suitable for @code{make}, you can set the variable
3906 @code{MAKESHELL} to the shell that @code{make} should use; if set it
3907 will be used as the shell instead of the value of @code{SHELL}.
3909 @subsubheading Choosing a Shell in DOS and Windows
3910 @cindex shell, in DOS and Windows
3911 @cindex DOS, choosing a shell in
3912 @cindex Windows, choosing a shell in
3914 Choosing a shell in MS-DOS and MS-Windows is much more complex than on
3915 other systems.
3917 @vindex COMSPEC
3918 On MS-DOS, if @code{SHELL} is not set, the value of the variable
3919 @code{COMSPEC} (which is always set) is used instead.
3921 @cindex @code{SHELL}, MS-DOS specifics
3922 The processing of lines that set the variable @code{SHELL} in Makefiles
3923 is different on MS-DOS.  The stock shell, @file{command.com}, is
3924 ridiculously limited in its functionality and many users of @code{make}
3925 tend to install a replacement shell.  Therefore, on MS-DOS, @code{make}
3926 examines the value of @code{SHELL}, and changes its behavior based on
3927 whether it points to a Unix-style or DOS-style shell.  This allows
3928 reasonable functionality even if @code{SHELL} points to
3929 @file{command.com}.
3931 If @code{SHELL} points to a Unix-style shell, @code{make} on MS-DOS
3932 additionally checks whether that shell can indeed be found; if not, it
3933 ignores the line that sets @code{SHELL}.  In MS-DOS, GNU @code{make}
3934 searches for the shell in the following places:
3936 @enumerate
3937 @item
3938 In the precise place pointed to by the value of @code{SHELL}.  For
3939 example, if the makefile specifies @samp{SHELL = /bin/sh}, @code{make}
3940 will look in the directory @file{/bin} on the current drive.
3942 @item
3943 In the current directory.
3945 @item
3946 In each of the directories in the @code{PATH} variable, in order.
3948 @end enumerate
3950 In every directory it examines, @code{make} will first look for the
3951 specific file (@file{sh} in the example above).  If this is not found,
3952 it will also look in that directory for that file with one of the known
3953 extensions which identify executable files.  For example @file{.exe},
3954 @file{.com}, @file{.bat}, @file{.btm}, @file{.sh}, and some others.
3956 If any of these attempts is successful, the value of @code{SHELL} will
3957 be set to the full pathname of the shell as found.  However, if none of
3958 these is found, the value of @code{SHELL} will not be changed, and thus
3959 the line that sets it will be effectively ignored.  This is so
3960 @code{make} will only support features specific to a Unix-style shell if
3961 such a shell is actually installed on the system where @code{make} runs.
3963 Note that this extended search for the shell is limited to the cases
3964 where @code{SHELL} is set from the Makefile; if it is set in the
3965 environment or command line, you are expected to set it to the full
3966 pathname of the shell, exactly as things are on Unix.
3968 The effect of the above DOS-specific processing is that a Makefile that
3969 contains @samp{SHELL = /bin/sh} (as many Unix makefiles do), will work
3970 on MS-DOS unaltered if you have e.g.@: @file{sh.exe} installed in some
3971 directory along your @code{PATH}.
3973 @vindex SHELL
3974 @vindex .SHELLFLAGS
3976 @node Parallel, Errors, Execution, Recipes
3977 @section Parallel Execution
3978 @cindex recipes, execution in parallel
3979 @cindex parallel execution
3980 @cindex execution, in parallel
3981 @cindex job slots
3982 @cindex @code{-j}
3983 @cindex @code{--jobs}
3985 GNU @code{make} knows how to execute several recipes at once.
3986 Normally, @code{make} will execute only one recipe at a time, waiting
3987 for it to finish before executing the next.  However, the @samp{-j} or
3988 @samp{--jobs} option tells @code{make} to execute many recipes
3989 simultaneously.  You can inhibit parallelism in a particular makefile
3990 with the @code{.NOTPARALLEL} pseudo-target (@pxref{Special
3991 Targets,Special Built-in Target Names}).@refill
3993 On MS-DOS, the @samp{-j} option has no effect, since that system doesn't
3994 support multi-processing.
3996 If the @samp{-j} option is followed by an integer, this is the number of
3997 recipes to execute at once; this is called the number of @dfn{job slots}.
3998 If there is nothing looking like an integer after the @samp{-j} option,
3999 there is no limit on the number of job slots.  The default number of job
4000 slots is one, which means serial execution (one thing at a time).
4002 One unpleasant consequence of running several recipes simultaneously is
4003 that output generated by the recipes appears whenever each recipe
4004 sends it, so messages from different recipes may be interspersed.
4006 Another problem is that two processes cannot both take input from the
4007 same device; so to make sure that only one recipe tries to take input
4008 from the terminal at once, @code{make} will invalidate the standard
4009 input streams of all but one running recipe.  This means that
4010 attempting to read from standard input will usually be a fatal error (a
4011 @samp{Broken pipe} signal) for most child processes if there are
4012 several.
4013 @cindex broken pipe
4014 @cindex standard input
4016 It is unpredictable which recipe will have a valid standard input stream
4017 (which will come from the terminal, or wherever you redirect the standard
4018 input of @code{make}).  The first recipe run will always get it first, and
4019 the first recipe started after that one finishes will get it next, and so
4022 We will change how this aspect of @code{make} works if we find a better
4023 alternative.  In the mean time, you should not rely on any recipe using
4024 standard input at all if you are using the parallel execution feature; but
4025 if you are not using this feature, then standard input works normally in
4026 all recipes.
4028 Finally, handling recursive @code{make} invocations raises issues.  For
4029 more information on this, see
4030 @ref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
4032 If a recipe fails (is killed by a signal or exits with a nonzero
4033 status), and errors are not ignored for that recipe
4034 (@pxref{Errors, ,Errors in Recipes}),
4035 the remaining recipe lines to remake the same target will not be run.
4036 If a recipe fails and the @samp{-k} or @samp{--keep-going}
4037 option was not given
4038 (@pxref{Options Summary, ,Summary of Options}),
4039 @code{make} aborts execution.  If make
4040 terminates for any reason (including a signal) with child processes
4041 running, it waits for them to finish before actually exiting.@refill
4043 @cindex load average
4044 @cindex limiting jobs based on load
4045 @cindex jobs, limiting based on load
4046 @cindex @code{-l} (load average)
4047 @cindex @code{--max-load}
4048 @cindex @code{--load-average}
4049 When the system is heavily loaded, you will probably want to run fewer jobs
4050 than when it is lightly loaded.  You can use the @samp{-l} option to tell
4051 @code{make} to limit the number of jobs to run at once, based on the load
4052 average.  The @samp{-l} or @samp{--max-load}
4053 option is followed by a floating-point number.  For
4054 example,
4056 @example
4057 -l 2.5
4058 @end example
4060 @noindent
4061 will not let @code{make} start more than one job if the load average is
4062 above 2.5.  The @samp{-l} option with no following number removes the
4063 load limit, if one was given with a previous @samp{-l} option.@refill
4065 More precisely, when @code{make} goes to start up a job, and it already has
4066 at least one job running, it checks the current load average; if it is not
4067 lower than the limit given with @samp{-l}, @code{make} waits until the load
4068 average goes below that limit, or until all the other jobs finish.
4070 By default, there is no load limit.
4072 @node Errors, Interrupts, Parallel, Recipes
4073 @section Errors in Recipes
4074 @cindex errors (in recipes)
4075 @cindex recipes, errors in
4076 @cindex exit status (errors)
4078 After each shell invocation returns, @code{make} looks at its exit
4079 status.  If the shell completed successfully (the exit status is
4080 zero), the next line in the recipe is executed in a new shell; after
4081 the last line is finished, the rule is finished.
4083 If there is an error (the exit status is nonzero), @code{make} gives up on
4084 the current rule, and perhaps on all rules.
4086 Sometimes the failure of a certain recipe line does not indicate a problem.
4087 For example, you may use the @code{mkdir} command to ensure that a
4088 directory exists.  If the directory already exists, @code{mkdir} will
4089 report an error, but you probably want @code{make} to continue regardless.
4091 @cindex @code{-} (in recipes)
4092 To ignore errors in a recipe line, write a @samp{-} at the beginning
4093 of the line's text (after the initial tab).  The @samp{-} is discarded
4094 before the line is passed to the shell for execution.
4096 For example,
4098 @example
4099 @group
4100 clean:
4101         -rm -f *.o
4102 @end group
4103 @end example
4104 @cindex @code{rm} (shell command)
4106 @noindent
4107 This causes @code{make} to continue even if @code{rm} is unable to
4108 remove a file.
4110 @cindex @code{-i}
4111 @cindex @code{--ignore-errors}
4112 @findex .IGNORE
4113 When you run @code{make} with the @samp{-i} or @samp{--ignore-errors}
4114 flag, errors are ignored in all recipes of all rules.  A rule in the
4115 makefile for the special target @code{.IGNORE} has the same effect, if
4116 there are no prerequisites.  These ways of ignoring errors are obsolete
4117 because @samp{-} is more flexible.
4119 When errors are to be ignored, because of either a @samp{-} or the
4120 @samp{-i} flag, @code{make} treats an error return just like success,
4121 except that it prints out a message that tells you the status code
4122 the shell exited with, and says that the error has been ignored.
4124 When an error happens that @code{make} has not been told to ignore,
4125 it implies that the current target cannot be correctly remade, and neither
4126 can any other that depends on it either directly or indirectly.  No further
4127 recipes will be executed for these targets, since their preconditions
4128 have not been achieved.
4131 @cindex @code{-k}
4132 @cindex @code{--keep-going}
4133 Normally @code{make} gives up immediately in this circumstance, returning a
4134 nonzero status.  However, if the @samp{-k} or @samp{--keep-going}
4135 flag is specified, @code{make}
4136 continues to consider the other prerequisites of the pending targets,
4137 remaking them if necessary, before it gives up and returns nonzero status.
4138 For example, after an error in compiling one object file, @samp{make -k}
4139 will continue compiling other object files even though it already knows
4140 that linking them will be impossible.  @xref{Options Summary, ,Summary of Options}.
4142 The usual behavior assumes that your purpose is to get the specified
4143 targets up to date; once @code{make} learns that this is impossible, it
4144 might as well report the failure immediately.  The @samp{-k} option says
4145 that the real purpose is to test as many of the changes made in the
4146 program as possible, perhaps to find several independent problems so
4147 that you can correct them all before the next attempt to compile.  This
4148 is why Emacs' @code{compile} command passes the @samp{-k} flag by
4149 default.
4150 @cindex Emacs (@code{M-x compile})
4152 @findex .DELETE_ON_ERROR
4153 @cindex deletion of target files
4154 @cindex removal of target files
4155 @cindex target, deleting on error
4156 Usually when a recipe line fails, if it has changed the target file at all,
4157 the file is corrupted and cannot be used---or at least it is not
4158 completely updated.  Yet the file's time stamp says that it is now up to
4159 date, so the next time @code{make} runs, it will not try to update that
4160 file.  The situation is just the same as when the shell is killed by a
4161 signal; @pxref{Interrupts}.  So generally the right thing to do is to
4162 delete the target file if the recipe fails after beginning to change
4163 the file.  @code{make} will do this if @code{.DELETE_ON_ERROR} appears
4164 as a target.  This is almost always what you want @code{make} to do, but
4165 it is not historical practice; so for compatibility, you must explicitly
4166 request it.
4168 @node Interrupts, Recursion, Errors, Recipes
4169 @section Interrupting or Killing @code{make}
4170 @cindex interrupt
4171 @cindex signal
4172 @cindex deletion of target files
4173 @cindex removal of target files
4174 @cindex target, deleting on interrupt
4175 @cindex killing (interruption)
4177 If @code{make} gets a fatal signal while a shell is executing, it may
4178 delete the target file that the recipe was supposed to update.  This is
4179 done if the target file's last-modification time has changed since
4180 @code{make} first checked it.
4182 The purpose of deleting the target is to make sure that it is remade from
4183 scratch when @code{make} is next run.  Why is this?  Suppose you type
4184 @kbd{Ctrl-c} while a compiler is running, and it has begun to write an
4185 object file @file{foo.o}.  The @kbd{Ctrl-c} kills the compiler, resulting
4186 in an incomplete file whose last-modification time is newer than the source
4187 file @file{foo.c}.  But @code{make} also receives the @kbd{Ctrl-c} signal
4188 and deletes this incomplete file.  If @code{make} did not do this, the next
4189 invocation of @code{make} would think that @file{foo.o} did not require
4190 updating---resulting in a strange error message from the linker when it
4191 tries to link an object file half of which is missing.
4193 @findex .PRECIOUS
4194 You can prevent the deletion of a target file in this way by making the
4195 special target @code{.PRECIOUS} depend on it.  Before remaking a target,
4196 @code{make} checks to see whether it appears on the prerequisites of
4197 @code{.PRECIOUS}, and thereby decides whether the target should be deleted
4198 if a signal happens.  Some reasons why you might do this are that the
4199 target is updated in some atomic fashion, or exists only to record a
4200 modification-time (its contents do not matter), or must exist at all
4201 times to prevent other sorts of trouble.
4203 @node Recursion, Canned Recipes, Interrupts, Recipes
4204 @section Recursive Use of @code{make}
4205 @cindex recursion
4206 @cindex subdirectories, recursion for
4208 Recursive use of @code{make} means using @code{make} as a command in a
4209 makefile.  This technique is useful when you want separate makefiles for
4210 various subsystems that compose a larger system.  For example, suppose you
4211 have a sub-directory @file{subdir} which has its own makefile, and you would
4212 like the containing directory's makefile to run @code{make} on the
4213 sub-directory.  You can do it by writing this:
4215 @example
4216 subsystem:
4217         cd subdir && $(MAKE)
4218 @end example
4220 @noindent
4221 or, equivalently, this (@pxref{Options Summary, ,Summary of Options}):
4223 @example
4224 subsystem:
4225         $(MAKE) -C subdir
4226 @end example
4227 @cindex @code{-C}
4228 @cindex @code{--directory}
4230 You can write recursive @code{make} commands just by copying this example,
4231 but there are many things to know about how they work and why, and about
4232 how the sub-@code{make} relates to the top-level @code{make}.  You may
4233 also find it useful to declare targets that invoke recursive
4234 @code{make} commands as @samp{.PHONY} (for more discussion on when
4235 this is useful, see @ref{Phony Targets}).
4237 @vindex @code{CURDIR}
4238 For your convenience, when GNU @code{make} starts (after it has
4239 processed any @code{-C} options) it sets the variable @code{CURDIR} to
4240 the pathname of the current working directory.  This value is never
4241 touched by @code{make} again: in particular note that if you include
4242 files from other directories the value of @code{CURDIR} does not
4243 change.  The value has the same precedence it would have if it were
4244 set in the makefile (by default, an environment variable @code{CURDIR}
4245 will not override this value).  Note that setting this variable has no
4246 impact on the operation of @code{make} (it does not cause @code{make}
4247 to change its working directory, for example).
4249 @menu
4250 * MAKE Variable::               The special effects of using @samp{$(MAKE)}.
4251 * Variables/Recursion::         How to communicate variables to a sub-@code{make}.
4252 * Options/Recursion::           How to communicate options to a sub-@code{make}.
4253 * -w Option::                   How the @samp{-w} or @samp{--print-directory} option
4254                                   helps debug use of recursive @code{make} commands.
4255 @end menu
4257 @node MAKE Variable, Variables/Recursion, Recursion, Recursion
4258 @subsection How the @code{MAKE} Variable Works
4259 @vindex MAKE
4260 @cindex recursion, and @code{MAKE} variable
4262 Recursive @code{make} commands should always use the variable @code{MAKE},
4263 not the explicit command name @samp{make}, as shown here:
4265 @example
4266 @group
4267 subsystem:
4268         cd subdir && $(MAKE)
4269 @end group
4270 @end example
4272 The value of this variable is the file name with which @code{make} was
4273 invoked.  If this file name was @file{/bin/make}, then the recipe executed
4274 is @samp{cd subdir && /bin/make}.  If you use a special version of
4275 @code{make} to run the top-level makefile, the same special version will be
4276 executed for recursive invocations.
4277 @cindex @code{cd} (shell command)
4279 @cindex +, and recipes
4280 As a special feature, using the variable @code{MAKE} in the recipe of
4281 a rule alters the effects of the @samp{-t} (@samp{--touch}), @samp{-n}
4282 (@samp{--just-print}), or @samp{-q} (@w{@samp{--question}}) option.
4283 Using the @code{MAKE} variable has the same effect as using a @samp{+}
4284 character at the beginning of the recipe line.  @xref{Instead of
4285 Execution, ,Instead of Executing the Recipes}.  This special feature
4286 is only enabled if the @code{MAKE} variable appears directly in the
4287 recipe: it does not apply if the @code{MAKE} variable is referenced
4288 through expansion of another variable.  In the latter case you must
4289 use the @samp{+} token to get these special effects.@refill
4291 Consider the command @samp{make -t} in the above example.  (The
4292 @samp{-t} option marks targets as up to date without actually running
4293 any recipes; see @ref{Instead of Execution}.)  Following the usual
4294 definition of @samp{-t}, a @samp{make -t} command in the example would
4295 create a file named @file{subsystem} and do nothing else.  What you
4296 really want it to do is run @samp{@w{cd subdir &&} @w{make -t}}; but
4297 that would require executing the recipe, and @samp{-t} says not to
4298 execute recipes.@refill
4299 @cindex @code{-t}, and recursion
4300 @cindex recursion, and @code{-t}
4301 @cindex @code{--touch}, and recursion
4303 The special feature makes this do what you want: whenever a recipe
4304 line of a rule contains the variable @code{MAKE}, the flags @samp{-t},
4305 @samp{-n} and @samp{-q} do not apply to that line.  Recipe lines
4306 containing @code{MAKE} are executed normally despite the presence of a
4307 flag that causes most recipes not to be run.  The usual
4308 @code{MAKEFLAGS} mechanism passes the flags to the sub-@code{make}
4309 (@pxref{Options/Recursion, ,Communicating Options to a
4310 Sub-@code{make}}), so your request to touch the files, or print the
4311 recipes, is propagated to the subsystem.@refill
4313 @node Variables/Recursion, Options/Recursion, MAKE Variable, Recursion
4314 @subsection Communicating Variables to a Sub-@code{make}
4315 @cindex sub-@code{make}
4316 @cindex environment, and recursion
4317 @cindex exporting variables
4318 @cindex variables, environment
4319 @cindex variables, exporting
4320 @cindex recursion, and environment
4321 @cindex recursion, and variables
4323 Variable values of the top-level @code{make} can be passed to the
4324 sub-@code{make} through the environment by explicit request.  These
4325 variables are defined in the sub-@code{make} as defaults, but they do
4326 not override variables defined in the makefile used by
4327 the sub-@code{make} unless you use the @samp{-e} switch (@pxref{Options
4328 Summary, ,Summary of Options}).@refill
4330 To pass down, or @dfn{export}, a variable, @code{make} adds the
4331 variable and its value to the environment for running each line of the
4332 recipe.  The sub-@code{make}, in turn, uses the environment to
4333 initialize its table of variable values.  @xref{Environment,
4334 ,Variables from the Environment}.
4336 Except by explicit request, @code{make} exports a variable only if it
4337 is either defined in the environment initially or set on the command
4338 line, and if its name consists only of letters, numbers, and underscores.
4339 Some shells cannot cope with environment variable names consisting of
4340 characters other than letters, numbers, and underscores.
4342 @cindex SHELL, exported value
4343 The value of the @code{make} variable @code{SHELL} is not exported.
4344 Instead, the value of the @code{SHELL} variable from the invoking
4345 environment is passed to the sub-@code{make}.  You can force
4346 @code{make} to export its value for @code{SHELL} by using the
4347 @code{export} directive, described below.  @xref{Choosing the Shell}.
4349 The special variable @code{MAKEFLAGS} is always exported (unless you
4350 unexport it).  @code{MAKEFILES} is exported if you set it to anything.
4352 @code{make} automatically passes down variable values that were defined
4353 on the command line, by putting them in the @code{MAKEFLAGS} variable.
4354 @iftex
4355 See the next section.
4356 @end iftex
4357 @ifnottex
4358 @xref{Options/Recursion}.
4359 @end ifnottex
4361 Variables are @emph{not} normally passed down if they were created by
4362 default by @code{make} (@pxref{Implicit Variables, ,Variables Used by
4363 Implicit Rules}).  The sub-@code{make} will define these for
4364 itself.@refill
4366 @findex export
4367 If you want to export specific variables to a sub-@code{make}, use the
4368 @code{export} directive, like this:
4370 @example
4371 export @var{variable} @dots{}
4372 @end example
4374 @noindent
4375 @findex unexport
4376 If you want to @emph{prevent} a variable from being exported, use the
4377 @code{unexport} directive, like this:
4379 @example
4380 unexport @var{variable} @dots{}
4381 @end example
4383 @noindent
4384 In both of these forms, the arguments to @code{export} and
4385 @code{unexport} are expanded, and so could be variables or functions
4386 which expand to a (list of) variable names to be (un)exported.
4388 As a convenience, you can define a variable and export it at the same
4389 time by doing:
4391 @example
4392 export @var{variable} = value
4393 @end example
4395 @noindent
4396 has the same result as:
4398 @example
4399 @var{variable} = value
4400 export @var{variable}
4401 @end example
4403 @noindent
4406 @example
4407 export @var{variable} := value
4408 @end example
4410 @noindent
4411 has the same result as:
4413 @example
4414 @var{variable} := value
4415 export @var{variable}
4416 @end example
4418 Likewise,
4420 @example
4421 export @var{variable} += value
4422 @end example
4424 @noindent
4425 is just like:
4427 @example
4428 @var{variable} += value
4429 export @var{variable}
4430 @end example
4432 @noindent
4433 @xref{Appending, ,Appending More Text to Variables}.
4435 You may notice that the @code{export} and @code{unexport} directives
4436 work in @code{make} in the same way they work in the shell, @code{sh}.
4438 If you want all variables to be exported by default, you can use
4439 @code{export} by itself:
4441 @example
4442 export
4443 @end example
4445 @noindent
4446 This tells @code{make} that variables which are not explicitly mentioned
4447 in an @code{export} or @code{unexport} directive should be exported.
4448 Any variable given in an @code{unexport} directive will still @emph{not}
4449 be exported.  If you use @code{export} by itself to export variables by
4450 default, variables whose names contain characters other than
4451 alphanumerics and underscores will not be exported unless specifically
4452 mentioned in an @code{export} directive.@refill
4454 @findex .EXPORT_ALL_VARIABLES
4455 The behavior elicited by an @code{export} directive by itself was the
4456 default in older versions of GNU @code{make}.  If your makefiles depend
4457 on this behavior and you want to be compatible with old versions of
4458 @code{make}, you can write a rule for the special target
4459 @code{.EXPORT_ALL_VARIABLES} instead of using the @code{export} directive.
4460 This will be ignored by old @code{make}s, while the @code{export}
4461 directive will cause a syntax error.@refill
4462 @cindex compatibility in exporting
4464 Likewise, you can use @code{unexport} by itself to tell @code{make}
4465 @emph{not} to export variables by default.  Since this is the default
4466 behavior, you would only need to do this if @code{export} had been used
4467 by itself earlier (in an included makefile, perhaps).  You
4468 @strong{cannot} use @code{export} and @code{unexport} by themselves to
4469 have variables exported for some recipes and not for others.  The last
4470 @code{export} or @code{unexport} directive that appears by itself
4471 determines the behavior for the entire run of @code{make}.@refill
4473 @vindex MAKELEVEL
4474 @cindex recursion, level of
4475 As a special feature, the variable @code{MAKELEVEL} is changed when it
4476 is passed down from level to level.  This variable's value is a string
4477 which is the depth of the level as a decimal number.  The value is
4478 @samp{0} for the top-level @code{make}; @samp{1} for a sub-@code{make},
4479 @samp{2} for a sub-sub-@code{make}, and so on.  The incrementation
4480 happens when @code{make} sets up the environment for a recipe.@refill
4482 The main use of @code{MAKELEVEL} is to test it in a conditional
4483 directive (@pxref{Conditionals, ,Conditional Parts of Makefiles}); this
4484 way you can write a makefile that behaves one way if run recursively and
4485 another way if run directly by you.@refill
4487 @vindex MAKEFILES
4488 You can use the variable @code{MAKEFILES} to cause all sub-@code{make}
4489 commands to use additional makefiles.  The value of @code{MAKEFILES} is
4490 a whitespace-separated list of file names.  This variable, if defined in
4491 the outer-level makefile, is passed down through the environment; then
4492 it serves as a list of extra makefiles for the sub-@code{make} to read
4493 before the usual or specified ones.  @xref{MAKEFILES Variable, ,The
4494 Variable @code{MAKEFILES}}.@refill
4496 @node Options/Recursion, -w Option, Variables/Recursion, Recursion
4497 @subsection Communicating Options to a Sub-@code{make}
4498 @cindex options, and recursion
4499 @cindex recursion, and options
4501 @vindex MAKEFLAGS
4502 Flags such as @samp{-s} and @samp{-k} are passed automatically to the
4503 sub-@code{make} through the variable @code{MAKEFLAGS}.  This variable is
4504 set up automatically by @code{make} to contain the flag letters that
4505 @code{make} received.  Thus, if you do @w{@samp{make -ks}} then
4506 @code{MAKEFLAGS} gets the value @samp{ks}.@refill
4508 As a consequence, every sub-@code{make} gets a value for @code{MAKEFLAGS}
4509 in its environment.  In response, it takes the flags from that value and
4510 processes them as if they had been given as arguments.
4511 @xref{Options Summary, ,Summary of Options}.
4513 @cindex command line variable definitions, and recursion
4514 @cindex variables, command line, and recursion
4515 @cindex recursion, and command line variable definitions
4516 Likewise variables defined on the command line are passed to the
4517 sub-@code{make} through @code{MAKEFLAGS}.  Words in the value of
4518 @code{MAKEFLAGS} that contain @samp{=}, @code{make} treats as variable
4519 definitions just as if they appeared on the command line.
4520 @xref{Overriding, ,Overriding Variables}.
4522 @cindex @code{-C}, and recursion
4523 @cindex @code{-f}, and recursion
4524 @cindex @code{-o}, and recursion
4525 @cindex @code{-W}, and recursion
4526 @cindex @code{--directory}, and recursion
4527 @cindex @code{--file}, and recursion
4528 @cindex @code{--old-file}, and recursion
4529 @cindex @code{--assume-old}, and recursion
4530 @cindex @code{--assume-new}, and recursion
4531 @cindex @code{--new-file}, and recursion
4532 @cindex recursion, and @code{-C}
4533 @cindex recursion, and @code{-f}
4534 @cindex recursion, and @code{-o}
4535 @cindex recursion, and @code{-W}
4536 The options @samp{-C}, @samp{-f}, @samp{-o}, and @samp{-W} are not put
4537 into @code{MAKEFLAGS}; these options are not passed down.@refill
4539 @cindex @code{-j}, and recursion
4540 @cindex @code{--jobs}, and recursion
4541 @cindex recursion, and @code{-j}
4542 @cindex job slots, and recursion
4543 The @samp{-j} option is a special case (@pxref{Parallel, ,Parallel Execution}).
4544 If you set it to some numeric value @samp{N} and your operating system
4545 supports it (most any UNIX system will; others typically won't), the
4546 parent @code{make} and all the sub-@code{make}s will communicate to
4547 ensure that there are only @samp{N} jobs running at the same time
4548 between them all.  Note that any job that is marked recursive
4549 (@pxref{Instead of Execution, ,Instead of Executing Recipes})
4550 doesn't count against the total jobs (otherwise we could get @samp{N}
4551 sub-@code{make}s running and have no slots left over for any real work!)
4553 If your operating system doesn't support the above communication, then
4554 @samp{-j 1} is always put into @code{MAKEFLAGS} instead of the value you
4555 specified.  This is because if the @w{@samp{-j}} option were passed down
4556 to sub-@code{make}s, you would get many more jobs running in parallel
4557 than you asked for.  If you give @samp{-j} with no numeric argument,
4558 meaning to run as many jobs as possible in parallel, this is passed
4559 down, since multiple infinities are no more than one.@refill
4561 If you do not want to pass the other flags down, you must change the
4562 value of @code{MAKEFLAGS}, like this:
4564 @example
4565 subsystem:
4566         cd subdir && $(MAKE) MAKEFLAGS=
4567 @end example
4569 @vindex MAKEOVERRIDES
4570 The command line variable definitions really appear in the variable
4571 @code{MAKEOVERRIDES}, and @code{MAKEFLAGS} contains a reference to this
4572 variable.  If you do want to pass flags down normally, but don't want to
4573 pass down the command line variable definitions, you can reset
4574 @code{MAKEOVERRIDES} to empty, like this:
4576 @example
4577 MAKEOVERRIDES =
4578 @end example
4580 @noindent
4581 @cindex Arg list too long
4582 @cindex E2BIG
4583 This is not usually useful to do.  However, some systems have a small
4584 fixed limit on the size of the environment, and putting so much
4585 information into the value of @code{MAKEFLAGS} can exceed it.  If you
4586 see the error message @samp{Arg list too long}, this may be the problem.
4587 @findex .POSIX
4588 @cindex POSIX.2
4589 (For strict compliance with POSIX.2, changing @code{MAKEOVERRIDES} does
4590 not affect @code{MAKEFLAGS} if the special target @samp{.POSIX} appears
4591 in the makefile.  You probably do not care about this.)
4593 @vindex MFLAGS
4594 A similar variable @code{MFLAGS} exists also, for historical
4595 compatibility.  It has the same value as @code{MAKEFLAGS} except that it
4596 does not contain the command line variable definitions, and it always
4597 begins with a hyphen unless it is empty (@code{MAKEFLAGS} begins with a
4598 hyphen only when it begins with an option that has no single-letter
4599 version, such as @samp{--warn-undefined-variables}).  @code{MFLAGS} was
4600 traditionally used explicitly in the recursive @code{make} command, like
4601 this:
4603 @example
4604 subsystem:
4605         cd subdir && $(MAKE) $(MFLAGS)
4606 @end example
4608 @noindent
4609 but now @code{MAKEFLAGS} makes this usage redundant.  If you want your
4610 makefiles to be compatible with old @code{make} programs, use this
4611 technique; it will work fine with more modern @code{make} versions too.
4613 @cindex setting options from environment
4614 @cindex options, setting from environment
4615 @cindex setting options in makefiles
4616 @cindex options, setting in makefiles
4617 The @code{MAKEFLAGS} variable can also be useful if you want to have
4618 certain options, such as @samp{-k} (@pxref{Options Summary, ,Summary of
4619 Options}), set each time you run @code{make}.  You simply put a value for
4620 @code{MAKEFLAGS} in your environment.  You can also set @code{MAKEFLAGS} in
4621 a makefile, to specify additional flags that should also be in effect for
4622 that makefile.  (Note that you cannot use @code{MFLAGS} this way.  That
4623 variable is set only for compatibility; @code{make} does not interpret a
4624 value you set for it in any way.)
4626 When @code{make} interprets the value of @code{MAKEFLAGS} (either from the
4627 environment or from a makefile), it first prepends a hyphen if the value
4628 does not already begin with one.  Then it chops the value into words
4629 separated by blanks, and parses these words as if they were options given
4630 on the command line (except that @samp{-C}, @samp{-f}, @samp{-h},
4631 @samp{-o}, @samp{-W}, and their long-named versions are ignored; and there
4632 is no error for an invalid option).
4634 If you do put @code{MAKEFLAGS} in your environment, you should be sure not
4635 to include any options that will drastically affect the actions of
4636 @code{make} and undermine the purpose of makefiles and of @code{make}
4637 itself.  For instance, the @samp{-t}, @samp{-n}, and @samp{-q} options, if
4638 put in one of these variables, could have disastrous consequences and would
4639 certainly have at least surprising and probably annoying effects.@refill
4641 @node -w Option,  , Options/Recursion, Recursion
4642 @subsection The @samp{--print-directory} Option
4643 @cindex directories, printing them
4644 @cindex printing directories
4645 @cindex recursion, and printing directories
4647 If you use several levels of recursive @code{make} invocations, the
4648 @samp{-w} or @w{@samp{--print-directory}} option can make the output a
4649 lot easier to understand by showing each directory as @code{make}
4650 starts processing it and as @code{make} finishes processing it.  For
4651 example, if @samp{make -w} is run in the directory @file{/u/gnu/make},
4652 @code{make} will print a line of the form:@refill
4654 @example
4655 make: Entering directory `/u/gnu/make'.
4656 @end example
4658 @noindent
4659 before doing anything else, and a line of the form:
4661 @example
4662 make: Leaving directory `/u/gnu/make'.
4663 @end example
4665 @noindent
4666 when processing is completed.
4668 @cindex @code{-C}, and @code{-w}
4669 @cindex @code{--directory}, and @code{--print-directory}
4670 @cindex recursion, and @code{-w}
4671 @cindex @code{-w}, and @code{-C}
4672 @cindex @code{-w}, and recursion
4673 @cindex @code{--print-directory}, and @code{--directory}
4674 @cindex @code{--print-directory}, and recursion
4675 @cindex @code{--no-print-directory}
4676 @cindex @code{--print-directory}, disabling
4677 @cindex @code{-w}, disabling
4678 Normally, you do not need to specify this option because @samp{make}
4679 does it for you: @samp{-w} is turned on automatically when you use the
4680 @samp{-C} option, and in sub-@code{make}s.  @code{make} will not
4681 automatically turn on @samp{-w} if you also use @samp{-s}, which says to
4682 be silent, or if you use @samp{--no-print-directory} to explicitly
4683 disable it.
4685 @node Canned Recipes, Empty Recipes, Recursion, Recipes
4686 @section Defining Canned Recipes
4687 @cindex canned recipes
4688 @cindex recipes, canned
4689 @cindex sequences of commands
4690 @cindex commands, sequences of
4692 When the same sequence of commands is useful in making various
4693 targets, you can define it as a canned sequence with the @code{define}
4694 directive, and refer to the canned sequence from the recipes for those
4695 targets.  The canned sequence is actually a variable, so the name must
4696 not conflict with other variable names.
4698 Here is an example of defining a canned recipe:
4700 @example
4701 define run-yacc =
4702 yacc $(firstword $^)
4703 mv y.tab.c $@@
4704 endef
4705 @end example
4706 @cindex @code{yacc}
4708 @noindent
4709 Here @code{run-yacc} is the name of the variable being defined;
4710 @code{endef} marks the end of the definition; the lines in between are the
4711 commands.  The @code{define} directive does not expand variable references
4712 and function calls in the canned sequence; the @samp{$} characters,
4713 parentheses, variable names, and so on, all become part of the value of the
4714 variable you are defining.
4715 @xref{Multi-Line, ,Defining Multi-Line Variables},
4716 for a complete explanation of @code{define}.
4718 The first command in this example runs Yacc on the first prerequisite of
4719 whichever rule uses the canned sequence.  The output file from Yacc is
4720 always named @file{y.tab.c}.  The second command moves the output to the
4721 rule's target file name.
4723 To use the canned sequence, substitute the variable into the recipe of a
4724 rule.  You can substitute it like any other variable
4725 (@pxref{Reference, ,Basics of Variable References}).
4726 Because variables defined by @code{define} are recursively expanded
4727 variables, all the variable references you wrote inside the @code{define}
4728 are expanded now.  For example:
4730 @example
4731 foo.c : foo.y
4732         $(run-yacc)
4733 @end example
4735 @noindent
4736 @samp{foo.y} will be substituted for the variable @samp{$^} when it occurs in
4737 @code{run-yacc}'s value, and @samp{foo.c} for @samp{$@@}.@refill
4739 This is a realistic example, but this particular one is not needed in
4740 practice because @code{make} has an implicit rule to figure out these
4741 commands based on the file names involved
4742 (@pxref{Implicit Rules, ,Using Implicit Rules}).
4744 @cindex @@, and @code{define}
4745 @cindex -, and @code{define}
4746 @cindex +, and @code{define}
4747 In recipe execution, each line of a canned sequence is treated just as
4748 if the line appeared on its own in the rule, preceded by a tab.  In
4749 particular, @code{make} invokes a separate sub-shell for each line.  You
4750 can use the special prefix characters that affect command lines
4751 (@samp{@@}, @samp{-}, and @samp{+}) on each line of a canned sequence.
4752 @xref{Recipes, ,Writing Recipes in Rules}.
4753 For example, using this canned sequence:
4755 @example
4756 define frobnicate =
4757 @@echo "frobnicating target $@@"
4758 frob-step-1 $< -o $@@-step-1
4759 frob-step-2 $@@-step-1 -o $@@
4760 endef
4761 @end example
4763 @noindent
4764 @code{make} will not echo the first line, the @code{echo} command.
4765 But it @emph{will} echo the following two recipe lines.
4767 On the other hand, prefix characters on the recipe line that refers to
4768 a canned sequence apply to every line in the sequence.  So the rule:
4770 @example
4771 frob.out: frob.in
4772         @@$(frobnicate)
4773 @end example
4775 @noindent
4776 does not echo @emph{any} recipe lines.
4777 (@xref{Echoing, ,Recipe Echoing}, for a full explanation of @samp{@@}.)
4779 @node Empty Recipes,  , Canned Recipes, Recipes
4780 @section Using Empty Recipes
4781 @cindex empty recipes
4782 @cindex recipes, empty
4784 It is sometimes useful to define recipes which do nothing.  This is done
4785 simply by giving a recipe that consists of nothing but whitespace.  For
4786 example:
4788 @example
4789 target: ;
4790 @end example
4792 @noindent
4793 defines an empty recipe for @file{target}.  You could also use a line
4794 beginning with a recipe prefix character to define an empty recipe,
4795 but this would be confusing because such a line looks empty.
4797 @findex .DEFAULT@r{, and empty recipes}
4798 You may be wondering why you would want to define a recipe that
4799 does nothing.  The only reason this is useful is to prevent a target
4800 from getting implicit recipes (from implicit rules or the
4801 @code{.DEFAULT} special target; @pxref{Implicit Rules} and
4802 @pxref{Last Resort, ,Defining Last-Resort Default Rules}).@refill
4804 @c !!! another reason is for canonical stamp files:
4805 @ignore
4806 @example
4807 foo: stamp-foo ;
4808 stamp-foo: foo.in
4809         create foo frm foo.in
4810         touch $@
4811 @end example
4812 @end ignore
4814 You may be inclined to define empty recipes for targets that are
4815 not actual files, but only exist so that their prerequisites can be
4816 remade.  However, this is not the best way to do that, because the
4817 prerequisites may not be remade properly if the target file actually does exist.
4818 @xref{Phony Targets, ,Phony Targets}, for a better way to do this.
4820 @node Using Variables, Conditionals, Recipes, Top
4821 @chapter How to Use Variables
4822 @cindex variable
4823 @cindex value
4824 @cindex recursive variable expansion
4825 @cindex simple variable expansion
4827 A @dfn{variable} is a name defined in a makefile to represent a string
4828 of text, called the variable's @dfn{value}.  These values are
4829 substituted by explicit request into targets, prerequisites, recipes,
4830 and other parts of the makefile.  (In some other versions of @code{make},
4831 variables are called @dfn{macros}.)
4832 @cindex macro
4834 Variables and functions in all parts of a makefile are expanded when
4835 read, except for in recipes, the right-hand sides of variable
4836 definitions using @samp{=}, and the bodies of variable definitions
4837 using the @code{define} directive.@refill
4839 Variables can represent lists of file names, options to pass to compilers,
4840 programs to run, directories to look in for source files, directories to
4841 write output in, or anything else you can imagine.
4843 A variable name may be any sequence of characters not containing
4844 @samp{:}, @samp{#}, @samp{=}, or whitespace.  However, variable names
4845 containing characters other than letters, numbers, and underscores
4846 should be considered carefully, as in some shells they cannot be
4847 passed through the environment to a sub-@code{make}
4848 (@pxref{Variables/Recursion, ,Communicating Variables to a
4849 Sub-@code{make}}).  Variable names beginning with @samp{.} and an
4850 uppercase letter may be given special meaning in future versions of
4851 @code{make}.
4853 Variable names are case-sensitive.  The names @samp{foo}, @samp{FOO},
4854 and @samp{Foo} all refer to different variables.
4856 It is traditional to use upper case letters in variable names, but we
4857 recommend using lower case letters for variable names that serve internal
4858 purposes in the makefile, and reserving upper case for parameters that
4859 control implicit rules or for parameters that the user should override with
4860 command options (@pxref{Overriding, ,Overriding Variables}).
4862 A few variables have names that are a single punctuation character or
4863 just a few characters.  These are the @dfn{automatic variables}, and
4864 they have particular specialized uses.  @xref{Automatic Variables}.
4866 @menu
4867 * Reference::                   How to use the value of a variable.
4868 * Flavors::                     Variables come in two flavors.
4869 * Advanced::                    Advanced features for referencing a variable.
4870 * Values::                      All the ways variables get their values.
4871 * Setting::                     How to set a variable in the makefile.
4872 * Appending::                   How to append more text to the old value
4873                                   of a variable.
4874 * Override Directive::          How to set a variable in the makefile even if
4875                                   the user has set it with a command argument.
4876 * Multi-Line::                  An alternate way to set a variable
4877                                   to a multi-line string.
4878 * Undefine Directive::          How to undefine a variable so that it appears
4879                                   as if it was never set.
4880 * Environment::                 Variable values can come from the environment.
4881 * Target-specific::             Variable values can be defined on a per-target
4882                                   basis.
4883 * Pattern-specific::            Target-specific variable values can be applied
4884                                   to a group of targets that match a pattern.
4885 * Suppressing Inheritance::     Suppress inheritance of variables.
4886 * Special Variables::           Variables with special meaning or behavior.
4887 @end menu
4889 @node Reference, Flavors, Using Variables, Using Variables
4890 @section Basics of Variable References
4891 @cindex variables, how to reference
4892 @cindex reference to variables
4893 @cindex @code{$}, in variable reference
4894 @cindex dollar sign (@code{$}), in variable reference
4896 To substitute a variable's value, write a dollar sign followed by the name
4897 of the variable in parentheses or braces: either @samp{$(foo)} or
4898 @samp{$@{foo@}} is a valid reference to the variable @code{foo}.  This
4899 special significance of @samp{$} is why you must write @samp{$$} to have
4900 the effect of a single dollar sign in a file name or recipe.
4902 Variable references can be used in any context: targets, prerequisites,
4903 recipes, most directives, and new variable values.  Here is an
4904 example of a common case, where a variable holds the names of all the
4905 object files in a program:
4907 @example
4908 @group
4909 objects = program.o foo.o utils.o
4910 program : $(objects)
4911         cc -o program $(objects)
4913 $(objects) : defs.h
4914 @end group
4915 @end example
4917 Variable references work by strict textual substitution.  Thus, the rule
4919 @example
4920 @group
4921 foo = c
4922 prog.o : prog.$(foo)
4923         $(foo)$(foo) -$(foo) prog.$(foo)
4924 @end group
4925 @end example
4927 @noindent
4928 could be used to compile a C program @file{prog.c}.  Since spaces before
4929 the variable value are ignored in variable assignments, the value of
4930 @code{foo} is precisely @samp{c}.  (Don't actually write your makefiles
4931 this way!)
4933 A dollar sign followed by a character other than a dollar sign,
4934 open-parenthesis or open-brace treats that single character as the
4935 variable name.  Thus, you could reference the variable @code{x} with
4936 @samp{$x}.  However, this practice is strongly discouraged, except in
4937 the case of the automatic variables (@pxref{Automatic Variables}).
4939 @node Flavors, Advanced, Reference, Using Variables
4940 @section The Two Flavors of Variables
4941 @cindex flavors of variables
4942 @cindex recursive variable expansion
4943 @cindex variables, flavors
4944 @cindex recursively expanded variables
4945 @cindex variables, recursively expanded
4947 There are two ways that a variable in GNU @code{make} can have a value;
4948 we call them the two @dfn{flavors} of variables.  The two flavors are
4949 distinguished in how they are defined and in what they do when expanded.
4951 @cindex =
4952 The first flavor of variable is a @dfn{recursively expanded} variable.
4953 Variables of this sort are defined by lines using @samp{=}
4954 (@pxref{Setting, ,Setting Variables}) or by the @code{define} directive
4955 (@pxref{Multi-Line, ,Defining Multi-Line Variables}).  The value you specify
4956 is installed verbatim; if it contains references to other variables,
4957 these references are expanded whenever this variable is substituted (in
4958 the course of expanding some other string).  When this happens, it is
4959 called @dfn{recursive expansion}.@refill
4961 For example,
4963 @example
4964 foo = $(bar)
4965 bar = $(ugh)
4966 ugh = Huh?
4968 all:;echo $(foo)
4969 @end example
4971 @noindent
4972 will echo @samp{Huh?}: @samp{$(foo)} expands to @samp{$(bar)} which
4973 expands to @samp{$(ugh)} which finally expands to @samp{Huh?}.@refill
4975 This flavor of variable is the only sort supported by most other
4976 versions of @code{make}.  It has its advantages and its disadvantages.
4977 An advantage (most would say) is that:
4979 @example
4980 CFLAGS = $(include_dirs) -O
4981 include_dirs = -Ifoo -Ibar
4982 @end example
4984 @noindent
4985 will do what was intended: when @samp{CFLAGS} is expanded in a recipe,
4986 it will expand to @samp{-Ifoo -Ibar -O}.  A major disadvantage is that you
4987 cannot append something on the end of a variable, as in
4989 @example
4990 CFLAGS = $(CFLAGS) -O
4991 @end example
4993 @noindent
4994 because it will cause an infinite loop in the variable expansion.
4995 (Actually @code{make} detects the infinite loop and reports an error.)
4996 @cindex loops in variable expansion
4997 @cindex variables, loops in expansion
4999 Another disadvantage is that any functions
5000 (@pxref{Functions, ,Functions for Transforming Text})
5001 referenced in the definition will be executed every time the variable is
5002 expanded.  This makes @code{make} run slower; worse, it causes the
5003 @code{wildcard} and @code{shell} functions to give unpredictable results
5004 because you cannot easily control when they are called, or even how many
5005 times.
5007 To avoid all the problems and inconveniences of recursively expanded
5008 variables, there is another flavor: simply expanded variables.
5010 @cindex simply expanded variables
5011 @cindex variables, simply expanded
5012 @cindex :=
5013 @cindex ::=
5014 @dfn{Simply expanded variables} are defined by lines using @samp{:=}
5015 or @samp{::=} (@pxref{Setting, ,Setting Variables}).  Both forms are
5016 equivalent in GNU @code{make}; however only the @samp{::=} form is
5017 described by the POSIX standard (support for @samp{::=} was added to
5018 the POSIX standard in 2012, so older versions of @code{make} won't
5019 accept this form either).
5021 The value of a simply expanded variable is scanned
5022 once and for all, expanding any references to other variables and
5023 functions, when the variable is defined.  The actual value of the simply
5024 expanded variable is the result of expanding the text that you write.
5025 It does not contain any references to other variables; it contains their
5026 values @emph{as of the time this variable was defined}.  Therefore,
5028 @example
5029 x := foo
5030 y := $(x) bar
5031 x := later
5032 @end example
5034 @noindent
5035 is equivalent to
5037 @example
5038 y := foo bar
5039 x := later
5040 @end example
5042 When a simply expanded variable is referenced, its value is substituted
5043 verbatim.
5045 Here is a somewhat more complicated example, illustrating the use of
5046 @samp{:=} in conjunction with the @code{shell} function.
5047 (@xref{Shell Function, , The @code{shell} Function}.)  This example
5048 also shows use of the variable @code{MAKELEVEL}, which is changed
5049 when it is passed down from level to level.
5050 (@xref{Variables/Recursion, , Communicating Variables to a
5051 Sub-@code{make}}, for information about @code{MAKELEVEL}.)
5053 @vindex MAKELEVEL
5054 @vindex MAKE
5055 @example
5056 @group
5057 ifeq (0,$@{MAKELEVEL@})
5058 whoami    := $(shell whoami)
5059 host-type := $(shell arch)
5060 MAKE := $@{MAKE@} host-type=$@{host-type@} whoami=$@{whoami@}
5061 endif
5062 @end group
5063 @end example
5065 @noindent
5066 An advantage of this use of @samp{:=} is that a typical
5067 `descend into a directory' recipe then looks like this:
5069 @example
5070 @group
5071 $@{subdirs@}:
5072         $@{MAKE@} -C $@@ all
5073 @end group
5074 @end example
5076 Simply expanded variables generally make complicated makefile programming
5077 more predictable because they work like variables in most programming
5078 languages.  They allow you to redefine a variable using its own value (or
5079 its value processed in some way by one of the expansion functions) and to
5080 use the expansion functions much more efficiently
5081 (@pxref{Functions, ,Functions for Transforming Text}).
5083 @cindex spaces, in variable values
5084 @cindex whitespace, in variable values
5085 @cindex variables, spaces in values
5086 You can also use them to introduce controlled leading whitespace into
5087 variable values.  Leading whitespace characters are discarded from your
5088 input before substitution of variable references and function calls;
5089 this means you can include leading spaces in a variable value by
5090 protecting them with variable references, like this:
5092 @example
5093 nullstring :=
5094 space := $(nullstring) # end of the line
5095 @end example
5097 @noindent
5098 Here the value of the variable @code{space} is precisely one space.  The
5099 comment @w{@samp{# end of the line}} is included here just for clarity.
5100 Since trailing space characters are @emph{not} stripped from variable
5101 values, just a space at the end of the line would have the same effect
5102 (but be rather hard to read).  If you put whitespace at the end of a
5103 variable value, it is a good idea to put a comment like that at the end
5104 of the line to make your intent clear.  Conversely, if you do @emph{not}
5105 want any whitespace characters at the end of your variable value, you
5106 must remember not to put a random comment on the end of the line after
5107 some whitespace, such as this:
5109 @example
5110 dir := /foo/bar    # directory to put the frobs in
5111 @end example
5113 @noindent
5114 Here the value of the variable @code{dir} is @w{@samp{/foo/bar    }}
5115 (with four trailing spaces), which was probably not the intention.
5116 (Imagine something like @w{@samp{$(dir)/file}} with this definition!)
5118 @cindex conditional variable assignment
5119 @cindex variables, conditional assignment
5120 @cindex ?=
5121 There is another assignment operator for variables, @samp{?=}.  This
5122 is called a conditional variable assignment operator, because it only
5123 has an effect if the variable is not yet defined.  This statement:
5125 @example
5126 FOO ?= bar
5127 @end example
5129 @noindent
5130 is exactly equivalent to this
5131 (@pxref{Origin Function, ,The @code{origin} Function}):
5133 @example
5134 ifeq ($(origin FOO), undefined)
5135   FOO = bar
5136 endif
5137 @end example
5139 Note that a variable set to an empty value is still defined, so
5140 @samp{?=} will not set that variable.
5142 @node Advanced, Values, Flavors, Using Variables
5143 @section Advanced Features for Reference to Variables
5144 @cindex reference to variables
5146 This section describes some advanced features you can use to reference
5147 variables in more flexible ways.
5149 @menu
5150 * Substitution Refs::           Referencing a variable with
5151                                   substitutions on the value.
5152 * Computed Names::              Computing the name of the variable to refer to.
5153 @end menu
5155 @node Substitution Refs, Computed Names, Advanced, Advanced
5156 @subsection Substitution References
5157 @cindex modified variable reference
5158 @cindex substitution variable reference
5159 @cindex variables, modified reference
5160 @cindex variables, substitution reference
5162 @cindex variables, substituting suffix in
5163 @cindex suffix, substituting in variables
5164 A @dfn{substitution reference} substitutes the value of a variable with
5165 alterations that you specify.  It has the form
5166 @samp{$(@var{var}:@var{a}=@var{b})} (or
5167 @samp{$@{@var{var}:@var{a}=@var{b}@}}) and its meaning is to take the value
5168 of the variable @var{var}, replace every @var{a} at the end of a word with
5169 @var{b} in that value, and substitute the resulting string.
5171 When we say ``at the end of a word'', we mean that @var{a} must appear
5172 either followed by whitespace or at the end of the value in order to be
5173 replaced; other occurrences of @var{a} in the value are unaltered.  For
5174 example:@refill
5176 @example
5177 foo := a.o b.o c.o
5178 bar := $(foo:.o=.c)
5179 @end example
5181 @noindent
5182 sets @samp{bar} to @samp{a.c b.c c.c}.  @xref{Setting, ,Setting Variables}.
5184 A substitution reference is actually an abbreviation for use of the
5185 @code{patsubst} expansion function (@pxref{Text Functions, ,Functions for String Substitution and Analysis}).  We provide
5186 substitution references as well as @code{patsubst} for compatibility with
5187 other implementations of @code{make}.
5189 @findex patsubst
5190 Another type of substitution reference lets you use the full power of
5191 the @code{patsubst} function.  It has the same form
5192 @samp{$(@var{var}:@var{a}=@var{b})} described above, except that now
5193 @var{a} must contain a single @samp{%} character.  This case is
5194 equivalent to @samp{$(patsubst @var{a},@var{b},$(@var{var}))}.
5195 @xref{Text Functions, ,Functions for String Substitution and Analysis},
5196 for a description of the @code{patsubst} function.@refill
5198 @example
5199 @group
5200 @exdent For example:
5202 foo := a.o b.o c.o
5203 bar := $(foo:%.o=%.c)
5204 @end group
5205 @end example
5207 @noindent
5208 sets @samp{bar} to @samp{a.c b.c c.c}.
5210 @node Computed Names,  , Substitution Refs, Advanced
5211 @subsection Computed Variable Names
5212 @cindex nested variable reference
5213 @cindex computed variable name
5214 @cindex variables, computed names
5215 @cindex variables, nested references
5216 @cindex variables, @samp{$} in name
5217 @cindex @code{$}, in variable name
5218 @cindex dollar sign (@code{$}), in variable name
5220 Computed variable names are a complicated concept needed only for
5221 sophisticated makefile programming.  For most purposes you need not
5222 consider them, except to know that making a variable with a dollar sign
5223 in its name might have strange results.  However, if you are the type
5224 that wants to understand everything, or you are actually interested in
5225 what they do, read on.
5227 Variables may be referenced inside the name of a variable.  This is
5228 called a @dfn{computed variable name} or a @dfn{nested variable
5229 reference}.  For example,
5231 @example
5232 x = y
5233 y = z
5234 a := $($(x))
5235 @end example
5237 @noindent
5238 defines @code{a} as @samp{z}: the @samp{$(x)} inside @samp{$($(x))} expands
5239 to @samp{y}, so @samp{$($(x))} expands to @samp{$(y)} which in turn expands
5240 to @samp{z}.  Here the name of the variable to reference is not stated
5241 explicitly; it is computed by expansion of @samp{$(x)}.  The reference
5242 @samp{$(x)} here is nested within the outer variable reference.
5244 The previous example shows two levels of nesting, but any number of levels
5245 is possible.  For example, here are three levels:
5247 @example
5248 x = y
5249 y = z
5250 z = u
5251 a := $($($(x)))
5252 @end example
5254 @noindent
5255 Here the innermost @samp{$(x)} expands to @samp{y}, so @samp{$($(x))}
5256 expands to @samp{$(y)} which in turn expands to @samp{z}; now we have
5257 @samp{$(z)}, which becomes @samp{u}.
5259 References to recursively-expanded variables within a variable name are
5260 re-expanded in the usual fashion.  For example:
5262 @example
5263 x = $(y)
5264 y = z
5265 z = Hello
5266 a := $($(x))
5267 @end example
5269 @noindent
5270 defines @code{a} as @samp{Hello}: @samp{$($(x))} becomes @samp{$($(y))}
5271 which becomes @samp{$(z)} which becomes @samp{Hello}.
5273 Nested variable references can also contain modified references and
5274 function invocations (@pxref{Functions, ,Functions for Transforming Text}),
5275 just like any other reference.
5276 For example, using the @code{subst} function
5277 (@pxref{Text Functions, ,Functions for String Substitution and Analysis}):
5279 @example
5280 @group
5281 x = variable1
5282 variable2 := Hello
5283 y = $(subst 1,2,$(x))
5284 z = y
5285 a := $($($(z)))
5286 @end group
5287 @end example
5289 @noindent
5290 eventually defines @code{a} as @samp{Hello}.  It is doubtful that anyone
5291 would ever want to write a nested reference as convoluted as this one, but
5292 it works: @samp{$($($(z)))} expands to @samp{$($(y))} which becomes
5293 @samp{$($(subst 1,2,$(x)))}.  This gets the value @samp{variable1} from
5294 @code{x} and changes it by substitution to @samp{variable2}, so that the
5295 entire string becomes @samp{$(variable2)}, a simple variable reference
5296 whose value is @samp{Hello}.@refill
5298 A computed variable name need not consist entirely of a single variable
5299 reference.  It can contain several variable references, as well as some
5300 invariant text.  For example,
5302 @example
5303 @group
5304 a_dirs := dira dirb
5305 1_dirs := dir1 dir2
5306 @end group
5308 @group
5309 a_files := filea fileb
5310 1_files := file1 file2
5311 @end group
5313 @group
5314 ifeq "$(use_a)" "yes"
5315 a1 := a
5316 else
5317 a1 := 1
5318 endif
5319 @end group
5321 @group
5322 ifeq "$(use_dirs)" "yes"
5323 df := dirs
5324 else
5325 df := files
5326 endif
5328 dirs := $($(a1)_$(df))
5329 @end group
5330 @end example
5332 @noindent
5333 will give @code{dirs} the same value as @code{a_dirs}, @code{1_dirs},
5334 @code{a_files} or @code{1_files} depending on the settings of @code{use_a}
5335 and @code{use_dirs}.@refill
5337 Computed variable names can also be used in substitution references:
5339 @example
5340 @group
5341 a_objects := a.o b.o c.o
5342 1_objects := 1.o 2.o 3.o
5344 sources := $($(a1)_objects:.o=.c)
5345 @end group
5346 @end example
5348 @noindent
5349 defines @code{sources} as either @samp{a.c b.c c.c} or @samp{1.c 2.c 3.c},
5350 depending on the value of @code{a1}.
5352 The only restriction on this sort of use of nested variable references
5353 is that they cannot specify part of the name of a function to be called.
5354 This is because the test for a recognized function name is done before
5355 the expansion of nested references.  For example,
5357 @example
5358 @group
5359 ifdef do_sort
5360 func := sort
5361 else
5362 func := strip
5363 endif
5364 @end group
5366 @group
5367 bar := a d b g q c
5368 @end group
5370 @group
5371 foo := $($(func) $(bar))
5372 @end group
5373 @end example
5375 @noindent
5376 attempts to give @samp{foo} the value of the variable @samp{sort a d b g
5377 q c} or @samp{strip a d b g q c}, rather than giving @samp{a d b g q c}
5378 as the argument to either the @code{sort} or the @code{strip} function.
5379 This restriction could be removed in the future if that change is shown
5380 to be a good idea.
5382 You can also use computed variable names in the left-hand side of a
5383 variable assignment, or in a @code{define} directive, as in:
5385 @example
5386 dir = foo
5387 $(dir)_sources := $(wildcard $(dir)/*.c)
5388 define $(dir)_print =
5389 lpr $($(dir)_sources)
5390 endef
5391 @end example
5393 @noindent
5394 This example defines the variables @samp{dir}, @samp{foo_sources}, and
5395 @samp{foo_print}.
5397 Note that @dfn{nested variable references} are quite different from
5398 @dfn{recursively expanded variables}
5399 (@pxref{Flavors, ,The Two Flavors of Variables}), though both are
5400 used together in complex ways when doing makefile programming.@refill
5402 @node Values, Setting, Advanced, Using Variables
5403 @section How Variables Get Their Values
5404 @cindex variables, how they get their values
5405 @cindex value, how a variable gets it
5407 Variables can get values in several different ways:
5409 @itemize @bullet
5410 @item
5411 You can specify an overriding value when you run @code{make}.
5412 @xref{Overriding, ,Overriding Variables}.
5414 @item
5415 You can specify a value in the makefile, either
5416 with an assignment (@pxref{Setting, ,Setting Variables}) or with a
5417 verbatim definition (@pxref{Multi-Line, ,Defining Multi-Line Variables}).@refill
5419 @item
5420 Variables in the environment become @code{make} variables.
5421 @xref{Environment, ,Variables from the Environment}.
5423 @item
5424 Several @dfn{automatic} variables are given new values for each rule.
5425 Each of these has a single conventional use.
5426 @xref{Automatic Variables}.
5428 @item
5429 Several variables have constant initial values.
5430 @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
5431 @end itemize
5433 @node Setting, Appending, Values, Using Variables
5434 @section Setting Variables
5435 @cindex setting variables
5436 @cindex variables, setting
5437 @cindex =
5438 @cindex :=
5439 @cindex ::=
5440 @cindex ?=
5441 @cindex !=
5443 To set a variable from the makefile, write a line starting with the
5444 variable name followed by @samp{=} @samp{:=}, or @samp{::=}.  Whatever
5445 follows the @samp{=}, @samp{:=}, or @samp{::=} on the line becomes the
5446 value.  For example,
5448 @example
5449 objects = main.o foo.o bar.o utils.o
5450 @end example
5452 @noindent
5453 defines a variable named @code{objects}.  Whitespace around the variable
5454 name and immediately after the @samp{=} is ignored.
5456 Variables defined with @samp{=} are @dfn{recursively expanded}
5457 variables.  Variables defined with @samp{:=} or @samp{::=} are
5458 @dfn{simply expanded} variables; these definitions can contain
5459 variable references which will be expanded before the definition is
5460 made.  @xref{Flavors, ,The Two Flavors of Variables}.
5462 The variable name may contain function and variable references, which
5463 are expanded when the line is read to find the actual variable name to use.
5465 There is no limit on the length of the value of a variable except the
5466 amount of memory on the computer.  When a variable definition is long,
5467 it is a good idea to break it into several lines by inserting
5468 backslash-newline at convenient places in the definition.  This will
5469 make the makefile easier to read.  Every backslash-newline, along with
5470 any leading whitespace on the following line, will be replaced by a
5471 single space in the value of the variable.
5473 Most variable names are considered to have the empty string as a value if
5474 you have never set them.  Several variables have built-in initial values
5475 that are not empty, but you can set them in the usual ways
5476 (@pxref{Implicit Variables, ,Variables Used by Implicit Rules}).
5477 Several special variables are set
5478 automatically to a new value for each rule; these are called the
5479 @dfn{automatic} variables (@pxref{Automatic Variables}).
5481 If you'd like a variable to be set to a value only if it's not already
5482 set, then you can use the shorthand operator @samp{?=} instead of
5483 @samp{=}.  These two settings of the variable @samp{FOO} are identical
5484 (@pxref{Origin Function, ,The @code{origin} Function}):
5486 @example
5487 FOO ?= bar
5488 @end example
5490 @noindent
5493 @example
5494 ifeq ($(origin FOO), undefined)
5495 FOO = bar
5496 endif
5497 @end example
5499 The shell assignment operator @samp{!=} can be used to execute a
5500 program and set a variable to its output.  This operator first
5501 evaluates the right-hand side, then passes that result to the shell
5502 for execution.  If the result of the execution ends in a newline, that
5503 one newline is removed; all other newlines are replaced by spaces.
5504 The resulting string is then placed into the named
5505 recursively-expanded variable.  For example:
5507 @example
5508 hash != printf '\043'
5509 file_list != find . -name '*.c'
5510 @end example
5512 If the result of the execution could produce a @code{$}, and you don't
5513 intend what follows that to be interpreted as a make variable or
5514 function reference, then you must replace every @code{$} with
5515 @code{$$} as part of the execution.  Alternatively, you can set a
5516 simply expanded variable to the result of running a program using the
5517 @code{shell} function call.  @xref{Shell Function, , The @code{shell}
5518 Function}.  For example:
5520 @example
5521 hash := $(shell printf '\043')
5522 var := $(shell find . -name "*.c")
5523 @end example
5526 @node Appending, Override Directive, Setting, Using Variables
5527 @section Appending More Text to Variables
5528 @cindex +=
5529 @cindex appending to variables
5530 @cindex variables, appending to
5532 Often it is useful to add more text to the value of a variable already defined.
5533 You do this with a line containing @samp{+=}, like this:
5535 @example
5536 objects += another.o
5537 @end example
5539 @noindent
5540 This takes the value of the variable @code{objects}, and adds the text
5541 @samp{another.o} to it (preceded by a single space).  Thus:
5543 @example
5544 objects = main.o foo.o bar.o utils.o
5545 objects += another.o
5546 @end example
5548 @noindent
5549 sets @code{objects} to @samp{main.o foo.o bar.o utils.o another.o}.
5551 Using @samp{+=} is similar to:
5553 @example
5554 objects = main.o foo.o bar.o utils.o
5555 objects := $(objects) another.o
5556 @end example
5558 @noindent
5559 but differs in ways that become important when you use more complex values.
5561 When the variable in question has not been defined before, @samp{+=}
5562 acts just like normal @samp{=}: it defines a recursively-expanded
5563 variable.  However, when there @emph{is} a previous definition, exactly
5564 what @samp{+=} does depends on what flavor of variable you defined
5565 originally.  @xref{Flavors, ,The Two Flavors of Variables}, for an
5566 explanation of the two flavors of variables.
5568 When you add to a variable's value with @samp{+=}, @code{make} acts
5569 essentially as if you had included the extra text in the initial
5570 definition of the variable.  If you defined it first with @samp{:=} or
5571 @samp{::=}, making it a simply-expanded variable, @samp{+=} adds to
5572 that simply-expanded definition, and expands the new text before
5573 appending it to the old value just as @samp{:=} does (see
5574 @ref{Setting, ,Setting Variables}, for a full explanation of
5575 @samp{:=} or @samp{::=}).  In fact,
5577 @example
5578 variable := value
5579 variable += more
5580 @end example
5582 @noindent
5583 is exactly equivalent to:
5585 @noindent
5586 @example
5587 variable := value
5588 variable := $(variable) more
5589 @end example
5591 On the other hand, when you use @samp{+=} with a variable that you defined
5592 first to be recursively-expanded using plain @samp{=}, @code{make} does
5593 something a bit different.  Recall that when you define a
5594 recursively-expanded variable, @code{make} does not expand the value you set
5595 for variable and function references immediately.  Instead it stores the text
5596 verbatim, and saves these variable and function references to be expanded
5597 later, when you refer to the new variable (@pxref{Flavors, ,The Two Flavors
5598 of Variables}).  When you use @samp{+=} on a recursively-expanded variable,
5599 it is this unexpanded text to which @code{make} appends the new text you
5600 specify.
5602 @example
5603 @group
5604 variable = value
5605 variable += more
5606 @end group
5607 @end example
5609 @noindent
5610 is roughly equivalent to:
5612 @example
5613 @group
5614 temp = value
5615 variable = $(temp) more
5616 @end group
5617 @end example
5619 @noindent
5620 except that of course it never defines a variable called @code{temp}.
5621 The importance of this comes when the variable's old value contains
5622 variable references.  Take this common example:
5624 @example
5625 CFLAGS = $(includes) -O
5626 @dots{}
5627 CFLAGS += -pg # enable profiling
5628 @end example
5630 @noindent
5631 The first line defines the @code{CFLAGS} variable with a reference to another
5632 variable, @code{includes}.  (@code{CFLAGS} is used by the rules for C
5633 compilation; @pxref{Catalogue of Rules, ,Catalogue of Implicit Rules}.)
5634 Using @samp{=} for the definition makes @code{CFLAGS} a recursively-expanded
5635 variable, meaning @w{@samp{$(includes) -O}} is @emph{not} expanded when
5636 @code{make} processes the definition of @code{CFLAGS}.  Thus, @code{includes}
5637 need not be defined yet for its value to take effect.  It only has to be
5638 defined before any reference to @code{CFLAGS}.  If we tried to append to the
5639 value of @code{CFLAGS} without using @samp{+=}, we might do it like this:
5641 @example
5642 CFLAGS := $(CFLAGS) -pg # enable profiling
5643 @end example
5645 @noindent
5646 This is pretty close, but not quite what we want.  Using @samp{:=}
5647 redefines @code{CFLAGS} as a simply-expanded variable; this means
5648 @code{make} expands the text @w{@samp{$(CFLAGS) -pg}} before setting the
5649 variable.  If @code{includes} is not yet defined, we get @w{@samp{ -O
5650 -pg}}, and a later definition of @code{includes} will have no effect.
5651 Conversely, by using @samp{+=} we set @code{CFLAGS} to the
5652 @emph{unexpanded} value @w{@samp{$(includes) -O -pg}}.  Thus we preserve
5653 the reference to @code{includes}, so if that variable gets defined at
5654 any later point, a reference like @samp{$(CFLAGS)} still uses its
5655 value.
5657 @node Override Directive, Multi-Line, Appending, Using Variables
5658 @section The @code{override} Directive
5659 @findex override
5660 @cindex overriding with @code{override}
5661 @cindex variables, overriding
5663 If a variable has been set with a command argument
5664 (@pxref{Overriding, ,Overriding Variables}),
5665 then ordinary assignments in the makefile are ignored.  If you want to set
5666 the variable in the makefile even though it was set with a command
5667 argument, you can use an @code{override} directive, which is a line that
5668 looks like this:@refill
5670 @example
5671 override @var{variable} = @var{value}
5672 @end example
5674 @noindent
5677 @example
5678 override @var{variable} := @var{value}
5679 @end example
5681 To append more text to a variable defined on the command line, use:
5683 @example
5684 override @var{variable} += @var{more text}
5685 @end example
5687 @noindent
5688 @xref{Appending, ,Appending More Text to Variables}.
5690 Variable assignments marked with the @code{override} flag have a
5691 higher priority than all other assignments, except another
5692 @code{override}.  Subsequent assignments or appends to this variable
5693 which are not marked @code{override} will be ignored.
5695 The @code{override} directive was not invented for escalation in the war
5696 between makefiles and command arguments.  It was invented so you can alter
5697 and add to values that the user specifies with command arguments.
5699 For example, suppose you always want the @samp{-g} switch when you run the
5700 C compiler, but you would like to allow the user to specify the other
5701 switches with a command argument just as usual.  You could use this
5702 @code{override} directive:
5704 @example
5705 override CFLAGS += -g
5706 @end example
5708 You can also use @code{override} directives with @code{define} directives.
5709 This is done as you might expect:
5711 @example
5712 override define foo =
5714 endef
5715 @end example
5717 @noindent
5718 @iftex
5719 See the next section for information about @code{define}.
5720 @end iftex
5721 @ifnottex
5722 @xref{Multi-Line, ,Defining Multi-Line Variables}.
5723 @end ifnottex
5725 @node Multi-Line, Undefine Directive, Override Directive, Using Variables
5726 @section Defining Multi-Line Variables
5727 @findex define
5728 @findex endef
5729 @cindex multi-line variable definition
5730 @cindex variables, multi-line
5731 @cindex verbatim variable definition
5732 @cindex defining variables verbatim
5733 @cindex variables, defining verbatim
5735 Another way to set the value of a variable is to use the @code{define}
5736 directive.  This directive has an unusual syntax which allows newline
5737 characters to be included in the value, which is convenient for
5738 defining both canned sequences of commands (@pxref{Canned Recipes,
5739 ,Defining Canned Recipes}), and also sections of makefile syntax to
5740 use with @code{eval} (@pxref{Eval Function}).@refill
5742 The @code{define} directive is followed on the same line by the name
5743 of the variable being defined and an (optional) assignment operator,
5744 and nothing more.  The value to give the variable appears on the
5745 following lines.  The end of the value is marked by a line containing
5746 just the word @code{endef}.  Aside from this difference in syntax,
5747 @code{define} works just like any other variable definition.  The
5748 variable name may contain function and variable references, which are
5749 expanded when the directive is read to find the actual variable name
5750 to use.
5752 You may omit the variable assignment operator if you prefer.  If
5753 omitted, @code{make} assumes it to be @samp{=} and creates a
5754 recursively-expanded variable (@pxref{Flavors, ,The Two Flavors of Variables}).
5755 When using a @samp{+=} operator, the value is appended to the previous
5756 value as with any other append operation: with a single space
5757 separating the old and new values.
5759 You may nest @code{define} directives: @code{make} will keep track of
5760 nested directives and report an error if they are not all properly
5761 closed with @code{endef}.  Note that lines beginning with the recipe
5762 prefix character are considered part of a recipe, so any @code{define}
5763 or @code{endef} strings appearing on such a line will not be
5764 considered @code{make} directives.
5766 @example
5767 define two-lines =
5768 echo foo
5769 echo $(bar)
5770 endef
5771 @end example
5773 The value in an ordinary assignment cannot contain a newline; but the
5774 newlines that separate the lines of the value in a @code{define} become
5775 part of the variable's value (except for the final newline which precedes
5776 the @code{endef} and is not considered part of the value).@refill
5778 @need 800
5779 When used in a recipe, the previous example is functionally equivalent
5780 to this:
5782 @example
5783 two-lines = echo foo; echo $(bar)
5784 @end example
5786 @noindent
5787 since two commands separated by semicolon behave much like two separate
5788 shell commands.  However, note that using two separate lines means
5789 @code{make} will invoke the shell twice, running an independent sub-shell
5790 for each line.  @xref{Execution, ,Recipe Execution}.
5792 If you want variable definitions made with @code{define} to take
5793 precedence over command-line variable definitions, you can use the
5794 @code{override} directive together with @code{define}:
5796 @example
5797 override define two-lines =
5799 $(bar)
5800 endef
5801 @end example
5803 @noindent
5804 @xref{Override Directive, ,The @code{override} Directive}.
5806 @node Undefine Directive, Environment, Multi-Line, Using Variables
5807 @section Undefining Variables
5808 @findex undefine
5809 @cindex undefining variable
5811 If you want to clear a variable, setting its value to empty is usually
5812 sufficient. Expanding such a variable will yield the same result (empty
5813 string) regardless of whether it was set or not. However, if you are
5814 using the @code{flavor} (@pxref{Flavor Function}) and
5815 @code{origin} (@pxref{Origin Function}) functions, there is a difference
5816 between a variable that was never set and a variable with an empty value.
5817 In such situations you may want to use the @code{undefine} directive to
5818 make a variable appear as if it was never set. For example:
5820 @example
5821 foo := foo
5822 bar = bar
5824 undefine foo
5825 undefine bar
5827 $(info $(origin foo))
5828 $(info $(flavor bar))
5829 @end example
5831 This example will print ``undefined'' for both variables.
5833 If you want to undefine a command-line variable definition, you can use
5834 the @code{override} directive together with @code{undefine}, similar to
5835 how this is done for variable definitions:
5837 @example
5838 override undefine CFLAGS
5839 @end example
5841 @node Environment, Target-specific, Undefine Directive, Using Variables
5842 @section Variables from the Environment
5844 @cindex variables, environment
5845 @cindex environment
5846 Variables in @code{make} can come from the environment in which
5847 @code{make} is run.  Every environment variable that @code{make} sees
5848 when it starts up is transformed into a @code{make} variable with the
5849 same name and value.  However, an explicit assignment in the makefile,
5850 or with a command argument, overrides the environment.  (If the
5851 @samp{-e} flag is specified, then values from the environment override
5852 assignments in the makefile.  @xref{Options Summary, ,Summary of
5853 Options}.  But this is not recommended practice.)
5855 Thus, by setting the variable @code{CFLAGS} in your environment, you can
5856 cause all C compilations in most makefiles to use the compiler switches you
5857 prefer.  This is safe for variables with standard or conventional meanings
5858 because you know that no makefile will use them for other things.  (Note
5859 this is not totally reliable; some makefiles set @code{CFLAGS} explicitly
5860 and therefore are not affected by the value in the environment.)
5862 When @code{make} runs a recipe, variables defined in the
5863 makefile are placed into the environment of each shell.  This allows
5864 you to pass values to sub-@code{make} invocations (@pxref{Recursion,
5865 ,Recursive Use of @code{make}}).  By default, only variables that came
5866 from the environment or the command line are passed to recursive
5867 invocations.  You can use the @code{export} directive to pass other
5868 variables.  @xref{Variables/Recursion, , Communicating Variables to a
5869 Sub-@code{make}}, for full details.
5871 Other use of variables from the environment is not recommended.  It is not
5872 wise for makefiles to depend for their functioning on environment variables
5873 set up outside their control, since this would cause different users to get
5874 different results from the same makefile.  This is against the whole
5875 purpose of most makefiles.
5877 @cindex SHELL, import from environment
5878 Such problems would be especially likely with the variable
5879 @code{SHELL}, which is normally present in the environment to specify
5880 the user's choice of interactive shell.  It would be very undesirable
5881 for this choice to affect @code{make}; so, @code{make} handles the
5882 @code{SHELL} environment variable in a special way; see @ref{Choosing
5883 the Shell}.@refill
5885 @node Target-specific, Pattern-specific, Environment, Using Variables
5886 @section Target-specific Variable Values
5887 @cindex target-specific variables
5888 @cindex variables, target-specific
5890 Variable values in @code{make} are usually global; that is, they are the
5891 same regardless of where they are evaluated (unless they're reset, of
5892 course).  One exception to that is automatic variables
5893 (@pxref{Automatic Variables}).
5895 The other exception is @dfn{target-specific variable values}.  This
5896 feature allows you to define different values for the same variable,
5897 based on the target that @code{make} is currently building.  As with
5898 automatic variables, these values are only available within the context
5899 of a target's recipe (and in other target-specific assignments).
5901 Set a target-specific variable value like this:
5903 @example
5904 @var{target} @dots{} : @var{variable-assignment}
5905 @end example
5907 Target-specific variable assignments can be prefixed with any or all of the
5908 special keywords @code{export}, @code{override}, or @code{private};
5909 these apply their normal behavior to this instance of the variable only.
5911 Multiple @var{target} values create a target-specific variable value for
5912 each member of the target list individually.
5914 The @var{variable-assignment} can be any valid form of assignment;
5915 recursive (@samp{=}), simple (@samp{:=} or @samp{::=}), appending
5916 (@samp{+=}), or conditional (@samp{?=}).  All variables that appear
5917 within the @var{variable-assignment} are evaluated within the context
5918 of the target: thus, any previously-defined target-specific variable
5919 values will be in effect.  Note that this variable is actually
5920 distinct from any ``global'' value: the two variables do not have to
5921 have the same flavor (recursive vs.@: simple).
5923 Target-specific variables have the same priority as any other makefile
5924 variable.  Variables provided on the command line (and in the
5925 environment if the @samp{-e} option is in force) will take precedence.
5926 Specifying the @code{override} directive will allow the target-specific
5927 variable value to be preferred.
5929 There is one more special feature of target-specific variables: when
5930 you define a target-specific variable that variable value is also in
5931 effect for all prerequisites of this target, and all their
5932 prerequisites, etc.@: (unless those prerequisites override that variable
5933 with their own target-specific variable value).  So, for example, a
5934 statement like this:
5936 @example
5937 prog : CFLAGS = -g
5938 prog : prog.o foo.o bar.o
5939 @end example
5941 @noindent
5942 will set @code{CFLAGS} to @samp{-g} in the recipe for @file{prog}, but
5943 it will also set @code{CFLAGS} to @samp{-g} in the recipes that create
5944 @file{prog.o}, @file{foo.o}, and @file{bar.o}, and any recipes which
5945 create their prerequisites.
5947 Be aware that a given prerequisite will only be built once per
5948 invocation of make, at most.  If the same file is a prerequisite of
5949 multiple targets, and each of those targets has a different value for
5950 the same target-specific variable, then the first target to be built
5951 will cause that prerequisite to be built and the prerequisite will
5952 inherit the target-specific value from the first target.  It will
5953 ignore the target-specific values from any other targets.
5955 @node Pattern-specific, Suppressing Inheritance, Target-specific, Using Variables
5956 @section Pattern-specific Variable Values
5957 @cindex pattern-specific variables
5958 @cindex variables, pattern-specific
5960 In addition to target-specific variable values
5961 (@pxref{Target-specific, ,Target-specific Variable Values}), GNU
5962 @code{make} supports pattern-specific variable values.  In this form,
5963 the variable is defined for any target that matches the pattern
5964 specified.
5966 Set a pattern-specific variable value like this:
5968 @example
5969 @var{pattern} @dots{} : @var{variable-assignment}
5970 @end example
5971 where @var{pattern} is a %-pattern.  As with target-specific variable
5972 values, multiple @var{pattern} values create a pattern-specific variable
5973 value for each pattern individually.  The @var{variable-assignment} can
5974 be any valid form of assignment.  Any command line variable setting will
5975 take precedence, unless @code{override} is specified.
5977 For example:
5979 @example
5980 %.o : CFLAGS = -O
5981 @end example
5983 @noindent
5984 will assign @code{CFLAGS} the value of @samp{-O} for all targets
5985 matching the pattern @code{%.o}.
5987 If a target matches more than one pattern, the matching pattern-specific
5988 variables with longer stems are interpreted first. This results in more
5989 specific variables taking precedence over the more generic ones, for
5990 example:
5992 @example
5993 %.o: %.c
5994         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@@
5996 lib/%.o: CFLAGS := -fPIC -g
5997 %.o: CFLAGS := -g
5999 all: foo.o lib/bar.o
6000 @end example
6002 In this example the first definition of the @code{CFLAGS} variable
6003 will be used to update @file{lib/bar.o} even though the second one
6004 also applies to this target. Pattern-specific variables which result
6005 in the same stem length are considered in the order in which they
6006 were defined in the makefile.
6008 Pattern-specific variables are searched after any target-specific
6009 variables defined explicitly for that target, and before target-specific
6010 variables defined for the parent target.
6012 @node Suppressing Inheritance, Special Variables, Pattern-specific, Using Variables
6013 @section Suppressing Inheritance
6014 @findex private
6015 @cindex suppressing inheritance
6016 @cindex inheritance, suppressing
6018 As described in previous sections, @code{make} variables are inherited
6019 by prerequisites.  This capability allows you to modify the behavior
6020 of a prerequisite based on which targets caused it to be rebuilt.  For
6021 example, you might set a target-specific variable on a @code{debug}
6022 target, then running @samp{make debug} will cause that variable to be
6023 inherited by all prerequisites of @code{debug}, while just running
6024 @samp{make all} (for example) would not have that assignment.
6026 Sometimes, however, you may not want a variable to be inherited.  For
6027 these situations, @code{make} provides the @code{private} modifier.
6028 Although this modifier can be used with any variable assignment, it
6029 makes the most sense with target- and pattern-specific variables.  Any
6030 variable marked @code{private} will be visible to its local target but
6031 will not be inherited by prerequisites of that target.  A global
6032 variable marked @code{private} will be visible in the global scope but
6033 will not be inherited by any target, and hence will not be visible
6034 in any recipe.
6036 As an example, consider this makefile:
6037 @example
6038 EXTRA_CFLAGS =
6040 prog: private EXTRA_CFLAGS = -L/usr/local/lib
6041 prog: a.o b.o
6042 @end example
6044 Due to the @code{private} modifier, @code{a.o} and @code{b.o} will not
6045 inherit the @code{EXTRA_CFLAGS} variable assignment from the
6046 @code{prog} target.
6048 @node Special Variables,  , Suppressing Inheritance, Using Variables
6049 @comment  node-name,  next,  previous,  up
6050 @section Other Special Variables
6051 @cindex makefiles, and special variables
6052 @cindex special variables
6054 GNU @code{make} supports some variables that have special properties.
6056 @table @code
6058 @vindex MAKEFILE_LIST @r{(list of parsed makefiles)}
6059 @cindex makefiles, and @code{MAKEFILE_LIST} variable
6060 @cindex including (@code{MAKEFILE_LIST} variable)
6061 @item MAKEFILE_LIST
6062 Contains the name of each makefile that is parsed by @code{make}, in
6063 the order in which it was parsed.  The name is appended just
6064 before @code{make} begins to parse the makefile.  Thus, if the first
6065 thing a makefile does is examine the last word in this variable, it
6066 will be the name of the current makefile.  Once the current makefile
6067 has used @code{include}, however, the last word will be the
6068 just-included makefile.
6070 If a makefile named @code{Makefile} has this content:
6072 @example
6073 @group
6074 name1 := $(lastword $(MAKEFILE_LIST))
6076 include inc.mk
6078 name2 := $(lastword $(MAKEFILE_LIST))
6080 all:
6081         @@echo name1 = $(name1)
6082         @@echo name2 = $(name2)
6083 @end group
6084 @end example
6086 @noindent
6087 then you would expect to see this output:
6089 @example
6090 @group
6091 name1 = Makefile
6092 name2 = inc.mk
6093 @end group
6094 @end example
6096 @vindex .DEFAULT_GOAL @r{(define default goal)}
6097 @item .DEFAULT_GOAL
6098 Sets the default goal to be used if no targets were specified on the
6099 command line (@pxref{Goals, , Arguments to Specify the Goals}).  The
6100 @code{.DEFAULT_GOAL} variable allows you to discover the current
6101 default goal, restart the default goal selection algorithm by clearing
6102 its value, or to explicitly set the default goal.  The following
6103 example illustrates these cases:
6105 @example
6106 @group
6107 # Query the default goal.
6108 ifeq ($(.DEFAULT_GOAL),)
6109   $(warning no default goal is set)
6110 endif
6112 .PHONY: foo
6113 foo: ; @@echo $@@
6115 $(warning default goal is $(.DEFAULT_GOAL))
6117 # Reset the default goal.
6118 .DEFAULT_GOAL :=
6120 .PHONY: bar
6121 bar: ; @@echo $@@
6123 $(warning default goal is $(.DEFAULT_GOAL))
6125 # Set our own.
6126 .DEFAULT_GOAL := foo
6127 @end group
6128 @end example
6130 This makefile prints:
6132 @example
6133 @group
6134 no default goal is set
6135 default goal is foo
6136 default goal is bar
6138 @end group
6139 @end example
6141 Note that assigning more than one target name to @code{.DEFAULT_GOAL} is
6142 invalid and will result in an error.
6144 @vindex MAKE_RESTARTS @r{(number of times @code{make} has restarted)}
6145 @item MAKE_RESTARTS
6146 This variable is set only if this instance of @code{make} has
6147 restarted (@pxref{Remaking Makefiles, , How Makefiles Are Remade}): it
6148 will contain the number of times this instance has restarted.  Note
6149 this is not the same as recursion (counted by the @code{MAKELEVEL}
6150 variable).  You should not set, modify, or export this variable.
6152 @vindex .RECIPEPREFIX @r{(change the recipe prefix character)}
6153 @item .RECIPEPREFIX
6154 The first character of the value of this variable is used as the
6155 character make assumes is introducing a recipe line.  If the variable
6156 is empty (as it is by default) that character is the standard tab
6157 character.  For example, this is a valid makefile:
6159 @example
6160 @group
6161 .RECIPEPREFIX = >
6162 all:
6163 > @@echo Hello, world
6164 @end group
6165 @end example
6167 The value of @code{.RECIPEPREFIX} can be changed multiple times; once set
6168 it stays in effect for all rules parsed until it is modified.
6170 @vindex .VARIABLES @r{(list of variables)}
6171 @item .VARIABLES
6172 Expands to a list of the @emph{names} of all global variables defined
6173 so far.  This includes variables which have empty values, as well as
6174 built-in variables (@pxref{Implicit Variables, , Variables Used by
6175 Implicit Rules}), but does not include any variables which are only
6176 defined in a target-specific context.  Note that any value you assign
6177 to this variable will be ignored; it will always return its special
6178 value.
6180 @c @vindex .TARGETS @r{(list of targets)}
6181 @c @item .TARGETS
6182 @c The second special variable is @code{.TARGETS}.  When expanded, the
6183 @c value consists of a list of all targets defined in all makefiles read
6184 @c up until that point.  Note it's not enough for a file to be simply
6185 @c mentioned in the makefile to be listed in this variable, even if it
6186 @c would match an implicit rule and become an ``implicit target''.  The
6187 @c file must appear as a target, on the left-hand side of a ``:'', to be
6188 @c considered a target for the purposes of this variable.
6190 @vindex .FEATURES @r{(list of supported features)}
6191 @item .FEATURES
6192 Expands to a list of special features supported by this version of
6193 @code{make}.  Possible values include, but are not limited to:
6195 @table @samp
6197 @item archives
6198 Supports @code{ar} (archive) files using special file name syntax.
6199 @xref{Archives, ,Using @code{make} to Update Archive Files}.
6201 @item check-symlink
6202 Supports the @code{-L} (@code{--check-symlink-times}) flag.
6203 @xref{Options Summary, ,Summary of Options}.
6205 @item else-if
6206 Supports ``else if'' non-nested conditionals.  @xref{Conditional
6207 Syntax, ,Syntax of Conditionals}.
6209 @item jobserver
6210 Supports ``job server'' enhanced parallel builds.  @xref{Parallel,
6211 ,Parallel Execution}.
6213 @item oneshell
6214 Supports the @code{.ONESHELL} special target.  @xref{One Shell, ,Using
6215 One Shell}.
6217 @item order-only
6218 Supports order-only prerequisites.  @xref{Prerequisite Types, ,Types
6219 of Prerequisites}.
6221 @item second-expansion
6222 Supports secondary expansion of prerequisite lists.
6224 @item shortest-stem
6225 Uses the ``shortest stem'' method of choosing which pattern, of
6226 multiple applicable options, will be used.  @xref{Pattern Match, ,How
6227 Patterns Match}.
6229 @item target-specific
6230 Supports target-specific and pattern-specific variable assignments.
6231 @xref{Target-specific, ,Target-specific Variable Values}.
6233 @item undefine
6234 Supports the @code{undefine} directive.  @xref{Undefine Directive}.
6236 @item guile
6237 Has GNU Guile available as an embedded extension language.
6238 @xref{Guile Function}.
6240 @end table
6242 @vindex .INCLUDE_DIRS @r{(list of include directories)}
6243 @item .INCLUDE_DIRS
6244 Expands to a list of directories that @code{make} searches for
6245 included makefiles (@pxref{Include, , Including Other Makefiles}).
6247 @end table
6249 @node Conditionals, Functions, Using Variables, Top
6250 @chapter Conditional Parts of Makefiles
6252 @cindex conditionals
6253 A @dfn{conditional} directive causes part of a makefile to be obeyed
6254 or ignored depending on the values of variables.  Conditionals can
6255 compare the value of one variable to another, or the value of a
6256 variable to a constant string.  Conditionals control what @code{make}
6257 actually ``sees'' in the makefile, so they @emph{cannot} be used to
6258 control recipes at the time of execution.@refill
6260 @menu
6261 * Conditional Example::         Example of a conditional
6262 * Conditional Syntax::          The syntax of conditionals.
6263 * Testing Flags::               Conditionals that test flags.
6264 @end menu
6266 @node Conditional Example, Conditional Syntax, Conditionals, Conditionals
6267 @section Example of a Conditional
6269 The following example of a conditional tells @code{make} to use one
6270 set of libraries if the @code{CC} variable is @samp{gcc}, and a
6271 different set of libraries otherwise.  It works by controlling which
6272 of two recipe lines will be used for the rule.  The result is that
6273 @samp{CC=gcc} as an argument to @code{make} changes not only which
6274 compiler is used but also which libraries are linked.
6276 @example
6277 libs_for_gcc = -lgnu
6278 normal_libs =
6280 foo: $(objects)
6281 ifeq ($(CC),gcc)
6282         $(CC) -o foo $(objects) $(libs_for_gcc)
6283 else
6284         $(CC) -o foo $(objects) $(normal_libs)
6285 endif
6286 @end example
6288 This conditional uses three directives: one @code{ifeq}, one @code{else}
6289 and one @code{endif}.
6291 The @code{ifeq} directive begins the conditional, and specifies the
6292 condition.  It contains two arguments, separated by a comma and surrounded
6293 by parentheses.  Variable substitution is performed on both arguments and
6294 then they are compared.  The lines of the makefile following the
6295 @code{ifeq} are obeyed if the two arguments match; otherwise they are
6296 ignored.
6298 The @code{else} directive causes the following lines to be obeyed if the
6299 previous conditional failed.  In the example above, this means that the
6300 second alternative linking command is used whenever the first alternative
6301 is not used.  It is optional to have an @code{else} in a conditional.
6303 The @code{endif} directive ends the conditional.  Every conditional must
6304 end with an @code{endif}.  Unconditional makefile text follows.
6306 As this example illustrates, conditionals work at the textual level:
6307 the lines of the conditional are treated as part of the makefile, or
6308 ignored, according to the condition.  This is why the larger syntactic
6309 units of the makefile, such as rules, may cross the beginning or the
6310 end of the conditional.
6312 When the variable @code{CC} has the value @samp{gcc}, the above example has
6313 this effect:
6315 @example
6316 foo: $(objects)
6317         $(CC) -o foo $(objects) $(libs_for_gcc)
6318 @end example
6320 @noindent
6321 When the variable @code{CC} has any other value, the effect is this:
6323 @example
6324 foo: $(objects)
6325         $(CC) -o foo $(objects) $(normal_libs)
6326 @end example
6328 Equivalent results can be obtained in another way by conditionalizing a
6329 variable assignment and then using the variable unconditionally:
6331 @example
6332 libs_for_gcc = -lgnu
6333 normal_libs =
6335 ifeq ($(CC),gcc)
6336   libs=$(libs_for_gcc)
6337 else
6338   libs=$(normal_libs)
6339 endif
6341 foo: $(objects)
6342         $(CC) -o foo $(objects) $(libs)
6343 @end example
6345 @node Conditional Syntax, Testing Flags, Conditional Example, Conditionals
6346 @section Syntax of Conditionals
6347 @findex ifdef
6348 @findex ifeq
6349 @findex ifndef
6350 @findex ifneq
6351 @findex else
6352 @findex endif
6354 The syntax of a simple conditional with no @code{else} is as follows:
6356 @example
6357 @var{conditional-directive}
6358 @var{text-if-true}
6359 endif
6360 @end example
6362 @noindent
6363 The @var{text-if-true} may be any lines of text, to be considered as part
6364 of the makefile if the condition is true.  If the condition is false, no
6365 text is used instead.
6367 The syntax of a complex conditional is as follows:
6369 @example
6370 @var{conditional-directive}
6371 @var{text-if-true}
6372 else
6373 @var{text-if-false}
6374 endif
6375 @end example
6379 @example
6380 @var{conditional-directive}
6381 @var{text-if-one-is-true}
6382 else @var{conditional-directive}
6383 @var{text-if-true}
6384 else
6385 @var{text-if-false}
6386 endif
6387 @end example
6389 @noindent
6390 There can be as many ``@code{else} @var{conditional-directive}''
6391 clauses as necessary.  Once a given condition is true,
6392 @var{text-if-true} is used and no other clause is used; if no
6393 condition is true then @var{text-if-false} is used.  The
6394 @var{text-if-true} and @var{text-if-false} can be any number of lines
6395 of text.
6397 The syntax of the @var{conditional-directive} is the same whether the
6398 conditional is simple or complex; after an @code{else} or not.  There
6399 are four different directives that test different conditions.  Here is
6400 a table of them:
6402 @table @code
6403 @item ifeq (@var{arg1}, @var{arg2})
6404 @itemx ifeq '@var{arg1}' '@var{arg2}'
6405 @itemx ifeq "@var{arg1}" "@var{arg2}"
6406 @itemx ifeq "@var{arg1}" '@var{arg2}'
6407 @itemx ifeq '@var{arg1}' "@var{arg2}"
6408 Expand all variable references in @var{arg1} and @var{arg2} and
6409 compare them.  If they are identical, the @var{text-if-true} is
6410 effective; otherwise, the @var{text-if-false}, if any, is effective.
6412 Often you want to test if a variable has a non-empty value.  When the
6413 value results from complex expansions of variables and functions,
6414 expansions you would consider empty may actually contain whitespace
6415 characters and thus are not seen as empty.  However, you can use the
6416 @code{strip} function (@pxref{Text Functions}) to avoid interpreting
6417 whitespace as a non-empty value.  For example:
6419 @example
6420 @group
6421 ifeq ($(strip $(foo)),)
6422 @var{text-if-empty}
6423 endif
6424 @end group
6425 @end example
6427 @noindent
6428 will evaluate @var{text-if-empty} even if the expansion of
6429 @code{$(foo)} contains whitespace characters.
6431 @item ifneq (@var{arg1}, @var{arg2})
6432 @itemx ifneq '@var{arg1}' '@var{arg2}'
6433 @itemx ifneq "@var{arg1}" "@var{arg2}"
6434 @itemx ifneq "@var{arg1}" '@var{arg2}'
6435 @itemx ifneq '@var{arg1}' "@var{arg2}"
6436 Expand all variable references in @var{arg1} and @var{arg2} and
6437 compare them.  If they are different, the @var{text-if-true} is
6438 effective; otherwise, the @var{text-if-false}, if any, is effective.
6440 @item ifdef @var{variable-name}
6441 The @code{ifdef} form takes the @emph{name} of a variable as its
6442 argument, not a reference to a variable.  The value of that variable
6443 has a non-empty value, the @var{text-if-true} is effective; otherwise,
6444 the @var{text-if-false}, if any, is effective.  Variables that have
6445 never been defined have an empty value.  The text @var{variable-name}
6446 is expanded, so it could be a variable or function that expands
6447 to the name of a variable.  For example:
6449 @example
6450 bar = true
6451 foo = bar
6452 ifdef $(foo)
6453 frobozz = yes
6454 endif
6455 @end example
6457 The variable reference @code{$(foo)} is expanded, yielding @code{bar},
6458 which is considered to be the name of a variable.  The variable
6459 @code{bar} is not expanded, but its value is examined to determine if
6460 it is non-empty.
6462 Note that @code{ifdef} only tests whether a variable has a value.  It
6463 does not expand the variable to see if that value is nonempty.
6464 Consequently, tests using @code{ifdef} return true for all definitions
6465 except those like @code{foo =}.  To test for an empty value, use
6466 @w{@code{ifeq ($(foo),)}}.  For example,
6468 @example
6469 bar =
6470 foo = $(bar)
6471 ifdef foo
6472 frobozz = yes
6473 else
6474 frobozz = no
6475 endif
6476 @end example
6478 @noindent
6479 sets @samp{frobozz} to @samp{yes}, while:
6481 @example
6482 foo =
6483 ifdef foo
6484 frobozz = yes
6485 else
6486 frobozz = no
6487 endif
6488 @end example
6490 @noindent
6491 sets @samp{frobozz} to @samp{no}.
6493 @item ifndef @var{variable-name}
6494 If the variable @var{variable-name} has an empty value, the
6495 @var{text-if-true} is effective; otherwise, the @var{text-if-false},
6496 if any, is effective.  The rules for expansion and testing of
6497 @var{variable-name} are identical to the @code{ifdef} directive.
6498 @end table
6500 Extra spaces are allowed and ignored at the beginning of the
6501 conditional directive line, but a tab is not allowed.  (If the line
6502 begins with a tab, it will be considered part of a recipe for a rule.)
6503 Aside from this, extra spaces or tabs may be inserted with no effect
6504 anywhere except within the directive name or within an argument.  A
6505 comment starting with @samp{#} may appear at the end of the line.
6507 The other two directives that play a part in a conditional are @code{else}
6508 and @code{endif}.  Each of these directives is written as one word, with no
6509 arguments.  Extra spaces are allowed and ignored at the beginning of the
6510 line, and spaces or tabs at the end.  A comment starting with @samp{#} may
6511 appear at the end of the line.
6513 Conditionals affect which lines of the makefile @code{make} uses.  If
6514 the condition is true, @code{make} reads the lines of the
6515 @var{text-if-true} as part of the makefile; if the condition is false,
6516 @code{make} ignores those lines completely.  It follows that syntactic
6517 units of the makefile, such as rules, may safely be split across the
6518 beginning or the end of the conditional.@refill
6520 @code{make} evaluates conditionals when it reads a makefile.
6521 Consequently, you cannot use automatic variables in the tests of
6522 conditionals because they are not defined until recipes are run
6523 (@pxref{Automatic Variables}).
6525 To prevent intolerable confusion, it is not permitted to start a
6526 conditional in one makefile and end it in another.  However, you may
6527 write an @code{include} directive within a conditional, provided you do
6528 not attempt to terminate the conditional inside the included file.
6530 @node Testing Flags,  , Conditional Syntax, Conditionals
6531 @section Conditionals that Test Flags
6533 You can write a conditional that tests @code{make} command flags such as
6534 @samp{-t} by using the variable @code{MAKEFLAGS} together with the
6535 @code{findstring} function
6536 (@pxref{Text Functions, , Functions for String Substitution and Analysis}).
6537 This is useful when @code{touch} is not enough to make a file appear up
6538 to date.
6540 The @code{findstring} function determines whether one string appears as a
6541 substring of another.  If you want to test for the @samp{-t} flag,
6542 use @samp{t} as the first string and the value of @code{MAKEFLAGS} as
6543 the other.
6545 For example, here is how to arrange to use @samp{ranlib -t} to finish
6546 marking an archive file up to date:
6548 @example
6549 archive.a: @dots{}
6550 ifneq (,$(findstring t,$(MAKEFLAGS)))
6551         +touch archive.a
6552         +ranlib -t archive.a
6553 else
6554         ranlib archive.a
6555 endif
6556 @end example
6558 @noindent
6559 The @samp{+} prefix marks those recipe lines as ``recursive'' so that
6560 they will be executed despite use of the @samp{-t} flag.
6561 @xref{Recursion, ,Recursive Use of @code{make}}.
6563 @node Functions, Running, Conditionals, Top
6564 @chapter Functions for Transforming Text
6565 @cindex functions
6567 @dfn{Functions} allow you to do text processing in the makefile to
6568 compute the files to operate on or the commands to use in recipes.
6569 You use a function in a @dfn{function call}, where you give the name
6570 of the function and some text (the @dfn{arguments}) for the function
6571 to operate on.  The result of the function's processing is substituted
6572 into the makefile at the point of the call, just as a variable might
6573 be substituted.
6575 @menu
6576 * Syntax of Functions::         How to write a function call.
6577 * Text Functions::              General-purpose text manipulation functions.
6578 * File Name Functions::         Functions for manipulating file names.
6579 * Conditional Functions::       Functions that implement conditions.
6580 * Foreach Function::            Repeat some text with controlled variation.
6581 * File Function::               Write text to a file.
6582 * Call Function::               Expand a user-defined function.
6583 * Value Function::              Return the un-expanded value of a variable.
6584 * Eval Function::               Evaluate the arguments as makefile syntax.
6585 * Origin Function::             Find where a variable got its value.
6586 * Flavor Function::             Find out the flavor of a variable.
6587 * Make Control Functions::      Functions that control how make runs.
6588 * Shell Function::              Substitute the output of a shell command.
6589 * Guile Function::              Call the GNU Guile embedded scripting language.
6590 @end menu
6592 @node Syntax of Functions, Text Functions, Functions, Functions
6593 @section Function Call Syntax
6594 @cindex @code{$}, in function call
6595 @cindex dollar sign (@code{$}), in function call
6596 @cindex arguments of functions
6597 @cindex functions, syntax of
6599 A function call resembles a variable reference.  It can appear
6600 anywhere a variable reference can appear, and it is expanded using the
6601 same rules as variable references.  A function call looks like this:
6603 @example
6604 $(@var{function} @var{arguments})
6605 @end example
6607 @noindent
6608 or like this:
6610 @example
6611 $@{@var{function} @var{arguments}@}
6612 @end example
6614 Here @var{function} is a function name; one of a short list of names
6615 that are part of @code{make}.  You can also essentially create your own
6616 functions by using the @code{call} built-in function.
6618 The @var{arguments} are the arguments of the function.  They are
6619 separated from the function name by one or more spaces or tabs, and if
6620 there is more than one argument, then they are separated by commas.
6621 Such whitespace and commas are not part of an argument's value.  The
6622 delimiters which you use to surround the function call, whether
6623 parentheses or braces, can appear in an argument only in matching pairs;
6624 the other kind of delimiters may appear singly.  If the arguments
6625 themselves contain other function calls or variable references, it is
6626 wisest to use the same kind of delimiters for all the references; write
6627 @w{@samp{$(subst a,b,$(x))}}, not @w{@samp{$(subst a,b,$@{x@})}}.  This
6628 is because it is clearer, and because only one type of delimiter is
6629 matched to find the end of the reference.
6631 The text written for each argument is processed by substitution of
6632 variables and function calls to produce the argument value, which
6633 is the text on which the function acts.  The substitution is done in the
6634 order in which the arguments appear.
6636 Commas and unmatched parentheses or braces cannot appear in the text of an
6637 argument as written; leading spaces cannot appear in the text of the first
6638 argument as written.  These characters can be put into the argument value
6639 by variable substitution.  First define variables @code{comma} and
6640 @code{space} whose values are isolated comma and space characters, then
6641 substitute these variables where such characters are wanted, like this:
6643 @example
6644 @group
6645 comma:= ,
6646 empty:=
6647 space:= $(empty) $(empty)
6648 foo:= a b c
6649 bar:= $(subst $(space),$(comma),$(foo))
6650 # @r{bar is now `a,b,c'.}
6651 @end group
6652 @end example
6654 @noindent
6655 Here the @code{subst} function replaces each space with a comma, through
6656 the value of @code{foo}, and substitutes the result.
6658 @node Text Functions, File Name Functions, Syntax of Functions, Functions
6659 @section Functions for String Substitution and Analysis
6660 @cindex functions, for text
6662 Here are some functions that operate on strings:
6664 @table @code
6665 @item $(subst @var{from},@var{to},@var{text})
6666 @findex subst
6667 Performs a textual replacement on the text @var{text}: each occurrence
6668 of @var{from} is replaced by @var{to}.  The result is substituted for
6669 the function call.  For example,
6671 @example
6672 $(subst ee,EE,feet on the street)
6673 @end example
6675 substitutes the string @samp{fEEt on the strEEt}.
6677 @item $(patsubst @var{pattern},@var{replacement},@var{text})
6678 @findex patsubst
6679 Finds whitespace-separated words in @var{text} that match
6680 @var{pattern} and replaces them with @var{replacement}.  Here
6681 @var{pattern} may contain a @samp{%} which acts as a wildcard,
6682 matching any number of any characters within a word.  If
6683 @var{replacement} also contains a @samp{%}, the @samp{%} is replaced
6684 by the text that matched the @samp{%} in @var{pattern}.  Only the first
6685 @samp{%} in the @var{pattern} and @var{replacement} is treated this
6686 way; any subsequent @samp{%} is unchanged.@refill
6688 @cindex @code{%}, quoting in @code{patsubst}
6689 @cindex @code{%}, quoting with @code{\} (backslash)
6690 @cindex @code{\} (backslash), to quote @code{%}
6691 @cindex backslash (@code{\}), to quote @code{%}
6692 @cindex quoting @code{%}, in @code{patsubst}
6693 @samp{%} characters in @code{patsubst} function invocations can be
6694 quoted with preceding backslashes (@samp{\}).  Backslashes that would
6695 otherwise quote @samp{%} characters can be quoted with more backslashes.
6696 Backslashes that quote @samp{%} characters or other backslashes are
6697 removed from the pattern before it is compared file names or has a stem
6698 substituted into it.  Backslashes that are not in danger of quoting
6699 @samp{%} characters go unmolested.  For example, the pattern
6700 @file{the\%weird\\%pattern\\} has @samp{the%weird\} preceding the
6701 operative @samp{%} character, and @samp{pattern\\} following it.  The
6702 final two backslashes are left alone because they cannot affect any
6703 @samp{%} character.@refill
6705 Whitespace between words is folded into single space characters;
6706 leading and trailing whitespace is discarded.
6708 For example,
6710 @example
6711 $(patsubst %.c,%.o,x.c.c bar.c)
6712 @end example
6714 @noindent
6715 produces the value @samp{x.c.o bar.o}.
6717 Substitution references (@pxref{Substitution Refs, ,Substitution
6718 References}) are a simpler way to get the effect of the @code{patsubst}
6719 function:
6721 @example
6722 $(@var{var}:@var{pattern}=@var{replacement})
6723 @end example
6725 @noindent
6726 is equivalent to
6728 @example
6729 $(patsubst @var{pattern},@var{replacement},$(@var{var}))
6730 @end example
6732 The second shorthand simplifies one of the most common uses of
6733 @code{patsubst}: replacing the suffix at the end of file names.
6735 @example
6736 $(@var{var}:@var{suffix}=@var{replacement})
6737 @end example
6739 @noindent
6740 is equivalent to
6742 @example
6743 $(patsubst %@var{suffix},%@var{replacement},$(@var{var}))
6744 @end example
6746 @noindent
6747 For example, you might have a list of object files:
6749 @example
6750 objects = foo.o bar.o baz.o
6751 @end example
6753 @noindent
6754 To get the list of corresponding source files, you could simply write:
6756 @example
6757 $(objects:.o=.c)
6758 @end example
6760 @noindent
6761 instead of using the general form:
6763 @example
6764 $(patsubst %.o,%.c,$(objects))
6765 @end example
6767 @item $(strip @var{string})
6768 @cindex stripping whitespace
6769 @cindex whitespace, stripping
6770 @cindex spaces, stripping
6771 @findex strip
6772 Removes leading and trailing whitespace from @var{string} and replaces
6773 each internal sequence of one or more whitespace characters with a
6774 single space.  Thus, @samp{$(strip a b  c )} results in @w{@samp{a b c}}.
6776 The function @code{strip} can be very useful when used in conjunction
6777 with conditionals.  When comparing something with the empty string
6778 @samp{} using @code{ifeq} or @code{ifneq}, you usually want a string of
6779 just whitespace to match the empty string (@pxref{Conditionals}).
6781 Thus, the following may fail to have the desired results:
6783 @example
6784 .PHONY: all
6785 ifneq   "$(needs_made)" ""
6786 all: $(needs_made)
6787 else
6788 all:;@@echo 'Nothing to make!'
6789 endif
6790 @end example
6792 @noindent
6793 Replacing the variable reference @w{@samp{$(needs_made)}} with the
6794 function call @w{@samp{$(strip $(needs_made))}} in the @code{ifneq}
6795 directive would make it more robust.@refill
6797 @item $(findstring @var{find},@var{in})
6798 @findex findstring
6799 @cindex searching for strings
6800 @cindex finding strings
6801 @cindex strings, searching for
6802 Searches @var{in} for an occurrence of @var{find}.  If it occurs, the
6803 value is @var{find}; otherwise, the value is empty.  You can use this
6804 function in a conditional to test for the presence of a specific
6805 substring in a given string.  Thus, the two examples,
6807 @example
6808 $(findstring a,a b c)
6809 $(findstring a,b c)
6810 @end example
6812 @noindent
6813 produce the values @samp{a} and @samp{} (the empty string),
6814 respectively.  @xref{Testing Flags}, for a practical application of
6815 @code{findstring}.@refill
6817 @need 750
6818 @findex filter
6819 @cindex filtering words
6820 @cindex words, filtering
6821 @item $(filter @var{pattern}@dots{},@var{text})
6822 Returns all whitespace-separated words in @var{text} that @emph{do} match
6823 any of the @var{pattern} words, removing any words that @emph{do not}
6824 match.  The patterns are written using @samp{%}, just like the patterns
6825 used in the @code{patsubst} function above.@refill
6827 The @code{filter} function can be used to separate out different types
6828 of strings (such as file names) in a variable.  For example:
6830 @example
6831 sources := foo.c bar.c baz.s ugh.h
6832 foo: $(sources)
6833         cc $(filter %.c %.s,$(sources)) -o foo
6834 @end example
6836 @noindent
6837 says that @file{foo} depends of @file{foo.c}, @file{bar.c},
6838 @file{baz.s} and @file{ugh.h} but only @file{foo.c}, @file{bar.c} and
6839 @file{baz.s} should be specified in the command to the
6840 compiler.@refill
6842 @item $(filter-out @var{pattern}@dots{},@var{text})
6843 @findex filter-out
6844 @cindex filtering out words
6845 @cindex words, filtering out
6846 Returns all whitespace-separated words in @var{text} that @emph{do not}
6847 match any of the @var{pattern} words, removing the words that @emph{do}
6848 match one or more.  This is the exact opposite of the @code{filter}
6849 function.@refill
6851 For example, given:
6853 @example
6854 @group
6855 objects=main1.o foo.o main2.o bar.o
6856 mains=main1.o main2.o
6857 @end group
6858 @end example
6860 @noindent
6861 the following generates a list which contains all the object files not
6862 in @samp{mains}:
6864 @example
6865 $(filter-out $(mains),$(objects))
6866 @end example
6868 @need 1500
6869 @findex sort
6870 @cindex sorting words
6871 @item $(sort @var{list})
6872 Sorts the words of @var{list} in lexical order, removing duplicate
6873 words.  The output is a list of words separated by single spaces.
6874 Thus,
6876 @example
6877 $(sort foo bar lose)
6878 @end example
6880 @noindent
6881 returns the value @samp{bar foo lose}.
6883 @cindex removing duplicate words
6884 @cindex duplicate words, removing
6885 @cindex words, removing duplicates
6886 Incidentally, since @code{sort} removes duplicate words, you can use
6887 it for this purpose even if you don't care about the sort order.
6889 @item $(word @var{n},@var{text})
6890 @findex word
6891 @cindex word, selecting a
6892 @cindex selecting a word
6893 Returns the @var{n}th word of @var{text}.  The legitimate values of
6894 @var{n} start from 1.  If @var{n} is bigger than the number of words
6895 in @var{text}, the value is empty.  For example,
6897 @example
6898 $(word 2, foo bar baz)
6899 @end example
6901 @noindent
6902 returns @samp{bar}.
6904 @item $(wordlist @var{s},@var{e},@var{text})
6905 @findex wordlist
6906 @cindex words, selecting lists of
6907 @cindex selecting word lists
6908 Returns the list of words in @var{text} starting with word @var{s} and
6909 ending with word @var{e} (inclusive).  The legitimate values of @var{s}
6910 start from 1; @var{e} may start from 0.  If @var{s} is bigger than the
6911 number of words in @var{text}, the value is empty.  If @var{e} is
6912 bigger than the number of words in @var{text}, words up to the end of
6913 @var{text} are returned.  If @var{s} is greater than @var{e}, nothing
6914 is returned.  For example,
6916 @example
6917 $(wordlist 2, 3, foo bar baz)
6918 @end example
6920 @noindent
6921 returns @samp{bar baz}.
6923 @c Following item phrased to prevent overfull hbox.  --RJC 17 Jul 92
6924 @item $(words @var{text})
6925 @findex words
6926 @cindex words, finding number
6927 Returns the number of words in @var{text}.
6928 Thus, the last word of @var{text} is
6929 @w{@code{$(word $(words @var{text}),@var{text})}}.@refill
6931 @item $(firstword @var{names}@dots{})
6932 @findex firstword
6933 @cindex words, extracting first
6934 The argument @var{names} is regarded as a series of names, separated
6935 by whitespace.  The value is the first name in the series.  The rest
6936 of the names are ignored.
6938 For example,
6940 @example
6941 $(firstword foo bar)
6942 @end example
6944 @noindent
6945 produces the result @samp{foo}.  Although @code{$(firstword
6946 @var{text})} is the same as @code{$(word 1,@var{text})}, the
6947 @code{firstword} function is retained for its simplicity.@refill
6950 @item $(lastword @var{names}@dots{})
6951 @findex lastword
6952 @cindex words, extracting last
6953 The argument @var{names} is regarded as a series of names, separated
6954 by whitespace.  The value is the last name in the series.
6956 For example,
6958 @example
6959 $(lastword foo bar)
6960 @end example
6962 @noindent
6963 produces the result @samp{bar}.  Although @code{$(lastword
6964 @var{text})} is the same as @code{$(word $(words @var{text}),@var{text})},
6965 the @code{lastword} function was added for its simplicity and better
6966 performance.@refill
6967 @end table
6970 Here is a realistic example of the use of @code{subst} and
6971 @code{patsubst}.  Suppose that a makefile uses the @code{VPATH} variable
6972 to specify a list of directories that @code{make} should search for
6973 prerequisite files
6974 (@pxref{General Search, , @code{VPATH} Search Path for All Prerequisites}).
6975 This example shows how to
6976 tell the C compiler to search for header files in the same list of
6977 directories.@refill
6979 The value of @code{VPATH} is a list of directories separated by colons,
6980 such as @samp{src:../headers}.  First, the @code{subst} function is used to
6981 change the colons to spaces:
6983 @example
6984 $(subst :, ,$(VPATH))
6985 @end example
6987 @noindent
6988 This produces @samp{src ../headers}.  Then @code{patsubst} is used to turn
6989 each directory name into a @samp{-I} flag.  These can be added to the
6990 value of the variable @code{CFLAGS}, which is passed automatically to the C
6991 compiler, like this:
6993 @example
6994 override CFLAGS += $(patsubst %,-I%,$(subst :, ,$(VPATH)))
6995 @end example
6997 @noindent
6998 The effect is to append the text @samp{-Isrc -I../headers} to the
6999 previously given value of @code{CFLAGS}.  The @code{override} directive is
7000 used so that the new value is assigned even if the previous value of
7001 @code{CFLAGS} was specified with a command argument (@pxref{Override
7002 Directive, , The @code{override} Directive}).
7004 @node File Name Functions, Conditional Functions, Text Functions, Functions
7005 @section Functions for File Names
7006 @cindex functions, for file names
7007 @cindex file name functions
7009 Several of the built-in expansion functions relate specifically to
7010 taking apart file names or lists of file names.
7012 Each of the following functions performs a specific transformation on a
7013 file name.  The argument of the function is regarded as a series of file
7014 names, separated by whitespace.  (Leading and trailing whitespace is
7015 ignored.)  Each file name in the series is transformed in the same way and
7016 the results are concatenated with single spaces between them.
7018 @table @code
7019 @item $(dir @var{names}@dots{})
7020 @findex dir
7021 @cindex directory part
7022 @cindex file name, directory part
7023 Extracts the directory-part of each file name in @var{names}.  The
7024 directory-part of the file name is everything up through (and
7025 including) the last slash in it.  If the file name contains no slash,
7026 the directory part is the string @samp{./}.  For example,
7028 @example
7029 $(dir src/foo.c hacks)
7030 @end example
7032 @noindent
7033 produces the result @samp{src/ ./}.
7035 @item $(notdir @var{names}@dots{})
7036 @findex notdir
7037 @cindex file name, nondirectory part
7038 @cindex nondirectory part
7039 Extracts all but the directory-part of each file name in @var{names}.
7040 If the file name contains no slash, it is left unchanged.  Otherwise,
7041 everything through the last slash is removed from it.
7043 A file name that ends with a slash becomes an empty string.  This is
7044 unfortunate, because it means that the result does not always have the
7045 same number of whitespace-separated file names as the argument had;
7046 but we do not see any other valid alternative.
7048 For example,
7050 @example
7051 $(notdir src/foo.c hacks)
7052 @end example
7054 @noindent
7055 produces the result @samp{foo.c hacks}.
7057 @item $(suffix @var{names}@dots{})
7058 @findex suffix
7059 @cindex suffix, function to find
7060 @cindex file name suffix
7061 Extracts the suffix of each file name in @var{names}.  If the file name
7062 contains a period, the suffix is everything starting with the last
7063 period.  Otherwise, the suffix is the empty string.  This frequently
7064 means that the result will be empty when @var{names} is not, and if
7065 @var{names} contains multiple file names, the result may contain fewer
7066 file names.
7068 For example,
7070 @example
7071 $(suffix src/foo.c src-1.0/bar.c hacks)
7072 @end example
7074 @noindent
7075 produces the result @samp{.c .c}.
7077 @item $(basename @var{names}@dots{})
7078 @findex basename
7079 @cindex basename
7080 @cindex file name, basename of
7081 Extracts all but the suffix of each file name in @var{names}.  If the
7082 file name contains a period, the basename is everything starting up to
7083 (and not including) the last period.  Periods in the directory part are
7084 ignored.  If there is no period, the basename is the entire file name.
7085 For example,
7087 @example
7088 $(basename src/foo.c src-1.0/bar hacks)
7089 @end example
7091 @noindent
7092 produces the result @samp{src/foo src-1.0/bar hacks}.
7094 @c plural convention with dots (be consistent)
7095 @item $(addsuffix @var{suffix},@var{names}@dots{})
7096 @findex addsuffix
7097 @cindex suffix, adding
7098 @cindex file name suffix, adding
7099 The argument @var{names} is regarded as a series of names, separated
7100 by whitespace; @var{suffix} is used as a unit.  The value of
7101 @var{suffix} is appended to the end of each individual name and the
7102 resulting larger names are concatenated with single spaces between
7103 them.  For example,
7105 @example
7106 $(addsuffix .c,foo bar)
7107 @end example
7109 @noindent
7110 produces the result @samp{foo.c bar.c}.
7112 @item $(addprefix @var{prefix},@var{names}@dots{})
7113 @findex addprefix
7114 @cindex prefix, adding
7115 @cindex file name prefix, adding
7116 The argument @var{names} is regarded as a series of names, separated
7117 by whitespace; @var{prefix} is used as a unit.  The value of
7118 @var{prefix} is prepended to the front of each individual name and the
7119 resulting larger names are concatenated with single spaces between
7120 them.  For example,
7122 @example
7123 $(addprefix src/,foo bar)
7124 @end example
7126 @noindent
7127 produces the result @samp{src/foo src/bar}.
7129 @item $(join @var{list1},@var{list2})
7130 @findex join
7131 @cindex joining lists of words
7132 @cindex words, joining lists
7133 Concatenates the two arguments word by word: the two first words (one
7134 from each argument) concatenated form the first word of the result, the
7135 two second words form the second word of the result, and so on.  So the
7136 @var{n}th word of the result comes from the @var{n}th word of each
7137 argument.  If one argument has more words that the other, the extra
7138 words are copied unchanged into the result.
7140 For example, @samp{$(join a b,.c .o)} produces @samp{a.c b.o}.
7142 Whitespace between the words in the lists is not preserved; it is
7143 replaced with a single space.
7145 This function can merge the results of the @code{dir} and
7146 @code{notdir} functions, to produce the original list of files which
7147 was given to those two functions.@refill
7149 @item $(wildcard @var{pattern})
7150 @findex wildcard
7151 @cindex wildcard, function
7152 The argument @var{pattern} is a file name pattern, typically containing
7153 wildcard characters (as in shell file name patterns).  The result of
7154 @code{wildcard} is a space-separated list of the names of existing files
7155 that match the pattern.
7156 @xref{Wildcards, ,Using Wildcard Characters in File Names}.
7158 @item $(realpath @var{names}@dots{})
7159 @findex realpath
7160 @cindex realpath
7161 @cindex file name, realpath of
7162 For each file name in @var{names} return the canonical absolute name.
7163 A canonical name does not contain any @code{.} or @code{..} components,
7164 nor any repeated path separators (@code{/}) or symlinks.  In case of a
7165 failure the empty string is returned.  Consult the @code{realpath(3)}
7166 documentation for a list of possible failure causes.
7168 @item $(abspath @var{names}@dots{})
7169 @findex abspath
7170 @cindex abspath
7171 @cindex file name, abspath of
7172 For each file name in @var{names} return an absolute name that does
7173 not contain any @code{.} or @code{..} components, nor any repeated path
7174 separators (@code{/}).  Note that, in contrast to @code{realpath}
7175 function, @code{abspath} does not resolve symlinks and does not require
7176 the file names to refer to an existing file or directory.  Use the
7177 @code{wildcard} function to test for existence.
7178 @end table
7180 @node Conditional Functions, Foreach Function, File Name Functions, Functions
7181 @section Functions for Conditionals
7182 @findex if
7183 @cindex conditional expansion
7184 There are three functions that provide conditional expansion.  A key
7185 aspect of these functions is that not all of the arguments are
7186 expanded initially.  Only those arguments which need to be expanded,
7187 will be expanded.
7189 @table @code
7190 @item $(if @var{condition},@var{then-part}[,@var{else-part}])
7191 @findex if
7192 The @code{if} function provides support for conditional expansion in a
7193 functional context (as opposed to the GNU @code{make} makefile
7194 conditionals such as @code{ifeq} (@pxref{Conditional Syntax, ,Syntax of
7195 Conditionals}).
7197 The first argument, @var{condition}, first has all preceding and
7198 trailing whitespace stripped, then is expanded.  If it expands to any
7199 non-empty string, then the condition is considered to be true.  If it
7200 expands to an empty string, the condition is considered to be false.
7202 If the condition is true then the second argument, @var{then-part}, is
7203 evaluated and this is used as the result of the evaluation of the entire
7204 @code{if} function.
7206 If the condition is false then the third argument, @var{else-part}, is
7207 evaluated and this is the result of the @code{if} function.  If there is
7208 no third argument, the @code{if} function evaluates to nothing (the
7209 empty string).
7211 Note that only one of the @var{then-part} or the @var{else-part} will be
7212 evaluated, never both.  Thus, either can contain side-effects (such as
7213 @code{shell} function calls, etc.)
7215 @item $(or @var{condition1}[,@var{condition2}[,@var{condition3}@dots{}]])
7216 @findex or
7217 The @code{or} function provides a ``short-circuiting'' OR operation.
7218 Each argument is expanded, in order.  If an argument expands to a
7219 non-empty string the processing stops and the result of the expansion
7220 is that string.  If, after all arguments are expanded, all of them are
7221 false (empty), then the result of the expansion is the empty string.
7223 @item $(and @var{condition1}[,@var{condition2}[,@var{condition3}@dots{}]])
7224 @findex and
7225 The @code{and} function provides a ``short-circuiting'' AND operation.
7226 Each argument is expanded, in order.  If an argument expands to an
7227 empty string the processing stops and the result of the expansion is
7228 the empty string.  If all arguments expand to a non-empty string then
7229 the result of the expansion is the expansion of the last argument.
7231 @end table
7233 @node Foreach Function, File Function, Conditional Functions, Functions
7234 @section The @code{foreach} Function
7235 @findex foreach
7236 @cindex words, iterating over
7238 The @code{foreach} function is very different from other functions.  It
7239 causes one piece of text to be used repeatedly, each time with a different
7240 substitution performed on it.  It resembles the @code{for} command in the
7241 shell @code{sh} and the @code{foreach} command in the C-shell @code{csh}.
7243 The syntax of the @code{foreach} function is:
7245 @example
7246 $(foreach @var{var},@var{list},@var{text})
7247 @end example
7249 @noindent
7250 The first two arguments, @var{var} and @var{list}, are expanded before
7251 anything else is done; note that the last argument, @var{text}, is
7252 @strong{not} expanded at the same time.  Then for each word of the expanded
7253 value of @var{list}, the variable named by the expanded value of @var{var}
7254 is set to that word, and @var{text} is expanded.  Presumably @var{text}
7255 contains references to that variable, so its expansion will be different
7256 each time.
7258 The result is that @var{text} is expanded as many times as there are
7259 whitespace-separated words in @var{list}.  The multiple expansions of
7260 @var{text} are concatenated, with spaces between them, to make the result
7261 of @code{foreach}.
7263 This simple example sets the variable @samp{files} to the list of all files
7264 in the directories in the list @samp{dirs}:
7266 @example
7267 dirs := a b c d
7268 files := $(foreach dir,$(dirs),$(wildcard $(dir)/*))
7269 @end example
7271 Here @var{text} is @samp{$(wildcard $(dir)/*)}.  The first repetition
7272 finds the value @samp{a} for @code{dir}, so it produces the same result
7273 as @samp{$(wildcard a/*)}; the second repetition produces the result
7274 of @samp{$(wildcard b/*)}; and the third, that of @samp{$(wildcard c/*)}.
7276 This example has the same result (except for setting @samp{dirs}) as
7277 the following example:
7279 @example
7280 files := $(wildcard a/* b/* c/* d/*)
7281 @end example
7283 When @var{text} is complicated, you can improve readability by giving it
7284 a name, with an additional variable:
7286 @example
7287 find_files = $(wildcard $(dir)/*)
7288 dirs := a b c d
7289 files := $(foreach dir,$(dirs),$(find_files))
7290 @end example
7292 @noindent
7293 Here we use the variable @code{find_files} this way.  We use plain @samp{=}
7294 to define a recursively-expanding variable, so that its value contains an
7295 actual function call to be re-expanded under the control of @code{foreach};
7296 a simply-expanded variable would not do, since @code{wildcard} would be
7297 called only once at the time of defining @code{find_files}.
7299 The @code{foreach} function has no permanent effect on the variable
7300 @var{var}; its value and flavor after the @code{foreach} function call are
7301 the same as they were beforehand.  The other values which are taken from
7302 @var{list} are in effect only temporarily, during the execution of
7303 @code{foreach}.  The variable @var{var} is a simply-expanded variable
7304 during the execution of @code{foreach}.  If @var{var} was undefined
7305 before the @code{foreach} function call, it is undefined after the call.
7306 @xref{Flavors, ,The Two Flavors of Variables}.@refill
7308 You must take care when using complex variable expressions that result in
7309 variable names because many strange things are valid variable names, but
7310 are probably not what you intended.  For example,
7312 @smallexample
7313 files := $(foreach Esta-escrito-en-espanol!,b c ch,$(find_files))
7314 @end smallexample
7316 @noindent
7317 might be useful if the value of @code{find_files} references the variable
7318 whose name is @samp{Esta-escrito-en-espanol!} (es un nombre bastante largo,
7319 no?), but it is more likely to be a mistake.
7321 @node File Function, Call Function, Foreach Function, Functions
7322 @section The @code{file} Function
7323 @findex file
7324 @cindex writing to a file
7325 @cindex file, writing to
7327 The @code{file} function allows the makefile to write to a file.  Two
7328 modes of writing are supported: overwrite, where the text is written
7329 to the beginning of the file and any existing content is lost, and
7330 append, where the text is written to the end of the file, preserving
7331 the existing content.  In all cases the file is created if it does not
7332 exist.
7334 The syntax of the @code{file} function is:
7336 @example
7337 $(file @var{op} @var{filename},@var{text})
7338 @end example
7340 The operator @var{op} can be either @code{>} which indicates overwrite
7341 mode, or @code{>>} which indicates append mode.  The @var{filename}
7342 indicates the file to be written to.  There may optionally be
7343 whitespace between the operator and the file name.
7345 When the @code{file} function is expanded all its arguments are
7346 expanded first, then the file indicated by @var{filename} will be
7347 opened in the mode described by @var{op}.  Finally @var{text} will be
7348 written to the file.  If @var{text} does not already end in a newline,
7349 a final newline will be written.  The result of evaluating the
7350 @code{file} function is always the empty string.
7352 It is a fatal error if the file cannot be opened for writing, or if
7353 the write operation fails.
7355 For example, the @code{file} function can be useful if your build
7356 system has a limited command line size and your recipe runs a command
7357 that can accept arguments from a file as well.  Many commands use the
7358 convention that an argument prefixed with an @code{@@} specifies a
7359 file containing more arguments.  Then you might write your recipe in
7360 this way:
7362 @example
7363 @group
7364 program: $(OBJECTS)
7365         $(file >$@@.in,$^)
7366         $(CMD) $(CMDFLAGS) @@$@@.in
7367         @@rm $@@.in
7368 @end group
7369 @end example
7371 If the command required each argument to be on a separate line of the
7372 input file, you might write your recipe like this:
7374 @example
7375 @group
7376 program: $(OBJECTS)
7377         $(file >$@@.in,) $(foreach O,$^,$(file >>$@@.in,$O))
7378         $(CMD) $(CMDFLAGS) @@$@@.in
7379         @@rm $@@.in
7380 @end group
7381 @end example
7383 @node Call Function, Value Function, File Function, Functions
7384 @section The @code{call} Function
7385 @findex call
7386 @cindex functions, user defined
7387 @cindex user defined functions
7389 The @code{call} function is unique in that it can be used to create new
7390 parameterized functions.  You can write a complex expression as the
7391 value of a variable, then use @code{call} to expand it with different
7392 values.
7394 The syntax of the @code{call} function is:
7396 @example
7397 $(call @var{variable},@var{param},@var{param},@dots{})
7398 @end example
7400 When @code{make} expands this function, it assigns each @var{param} to
7401 temporary variables @code{$(1)}, @code{$(2)}, etc.  The variable
7402 @code{$(0)} will contain @var{variable}.  There is no maximum number of
7403 parameter arguments.  There is no minimum, either, but it doesn't make
7404 sense to use @code{call} with no parameters.
7406 Then @var{variable} is expanded as a @code{make} variable in the context
7407 of these temporary assignments.  Thus, any reference to @code{$(1)} in
7408 the value of @var{variable} will resolve to the first @var{param} in the
7409 invocation of @code{call}.
7411 Note that @var{variable} is the @emph{name} of a variable, not a
7412 @emph{reference} to that variable.  Therefore you would not normally use
7413 a @samp{$} or parentheses when writing it.  (You can, however, use a
7414 variable reference in the name if you want the name not to be a
7415 constant.)
7417 If @var{variable} is the name of a built-in function, the built-in function
7418 is always invoked (even if a @code{make} variable by that name also
7419 exists).
7421 The @code{call} function expands the @var{param} arguments before
7422 assigning them to temporary variables.  This means that @var{variable}
7423 values containing references to built-in functions that have special
7424 expansion rules, like @code{foreach} or @code{if}, may not work as you
7425 expect.
7427 Some examples may make this clearer.
7429 This macro simply reverses its arguments:
7431 @smallexample
7432 reverse = $(2) $(1)
7434 foo = $(call reverse,a,b)
7435 @end smallexample
7437 @noindent
7438 Here @var{foo} will contain @samp{b a}.
7440 This one is slightly more interesting: it defines a macro to search for
7441 the first instance of a program in @code{PATH}:
7443 @smallexample
7444 pathsearch = $(firstword $(wildcard $(addsuffix /$(1),$(subst :, ,$(PATH)))))
7446 LS := $(call pathsearch,ls)
7447 @end smallexample
7449 @noindent
7450 Now the variable LS contains @code{/bin/ls} or similar.
7452 The @code{call} function can be nested.  Each recursive invocation gets
7453 its own local values for @code{$(1)}, etc.@: that mask the values of
7454 higher-level @code{call}.  For example, here is an implementation of a
7455 @dfn{map} function:
7457 @smallexample
7458 map = $(foreach a,$(2),$(call $(1),$(a)))
7459 @end smallexample
7461 Now you can @var{map} a function that normally takes only one argument,
7462 such as @code{origin}, to multiple values in one step:
7464 @smallexample
7465 o = $(call map,origin,o map MAKE)
7466 @end smallexample
7468 and end up with @var{o} containing something like @samp{file file default}.
7470 A final caution: be careful when adding whitespace to the arguments to
7471 @code{call}.  As with other functions, any whitespace contained in the
7472 second and subsequent arguments is kept; this can cause strange
7473 effects.  It's generally safest to remove all extraneous whitespace when
7474 providing parameters to @code{call}.
7476 @node Value Function, Eval Function, Call Function, Functions
7477 @comment  node-name,  next,  previous,  up
7478 @section The @code{value} Function
7479 @findex value
7480 @cindex variables, unexpanded value
7482 The @code{value} function provides a way for you to use the value of a
7483 variable @emph{without} having it expanded.  Please note that this
7484 does not undo expansions which have already occurred; for example if
7485 you create a simply expanded variable its value is expanded during the
7486 definition; in that case the @code{value} function will return the
7487 same result as using the variable directly.
7489 The syntax of the @code{value} function is:
7491 @example
7492 $(value @var{variable})
7493 @end example
7495 Note that @var{variable} is the @emph{name} of a variable, not a
7496 @emph{reference} to that variable.  Therefore you would not normally
7497 use a @samp{$} or parentheses when writing it.  (You can, however, use
7498 a variable reference in the name if you want the name not to be a
7499 constant.)
7501 The result of this function is a string containing the value of
7502 @var{variable}, without any expansion occurring.  For example, in this
7503 makefile:
7505 @example
7506 @group
7507 FOO = $PATH
7509 all:
7510         @@echo $(FOO)
7511         @@echo $(value FOO)
7512 @end group
7513 @end example
7515 @noindent
7516 The first output line would be @code{ATH}, since the ``$P'' would be
7517 expanded as a @code{make} variable, while the second output line would
7518 be the current value of your @code{$PATH} environment variable, since
7519 the @code{value} function avoided the expansion.
7521 The @code{value} function is most often used in conjunction with the
7522 @code{eval} function (@pxref{Eval Function}).
7524 @node Eval Function, Origin Function, Value Function, Functions
7525 @comment  node-name,  next,  previous,  up
7526 @section The @code{eval} Function
7527 @findex eval
7528 @cindex evaluating makefile syntax
7529 @cindex makefile syntax, evaluating
7531 The @code{eval} function is very special: it allows you to define new
7532 makefile constructs that are not constant; which are the result of
7533 evaluating other variables and functions.  The argument to the
7534 @code{eval} function is expanded, then the results of that expansion
7535 are parsed as makefile syntax.  The expanded results can define new
7536 @code{make} variables, targets, implicit or explicit rules, etc.
7538 The result of the @code{eval} function is always the empty string;
7539 thus, it can be placed virtually anywhere in a makefile without
7540 causing syntax errors.
7542 It's important to realize that the @code{eval} argument is expanded
7543 @emph{twice}; first by the @code{eval} function, then the results of
7544 that expansion are expanded again when they are parsed as makefile
7545 syntax.  This means you may need to provide extra levels of escaping
7546 for ``$'' characters when using @code{eval}.  The @code{value}
7547 function (@pxref{Value Function}) can sometimes be useful in these
7548 situations, to circumvent unwanted expansions.
7550 Here is an example of how @code{eval} can be used; this example
7551 combines a number of concepts and other functions.  Although it might
7552 seem overly complex to use @code{eval} in this example, rather than
7553 just writing out the rules, consider two things: first, the template
7554 definition (in @code{PROGRAM_template}) could need to be much more
7555 complex than it is here; and second, you might put the complex,
7556 ``generic'' part of this example into another makefile, then include
7557 it in all the individual makefiles.  Now your individual makefiles are
7558 quite straightforward.
7560 @example
7561 @group
7562 PROGRAMS    = server client
7564 server_OBJS = server.o server_priv.o server_access.o
7565 server_LIBS = priv protocol
7567 client_OBJS = client.o client_api.o client_mem.o
7568 client_LIBS = protocol
7570 # Everything after this is generic
7572 .PHONY: all
7573 all: $(PROGRAMS)
7575 define PROGRAM_template =
7576  $(1): $$($(1)_OBJS) $$($(1)_LIBS:%=-l%)
7577  ALL_OBJS   += $$($(1)_OBJS)
7578 endef
7580 $(foreach prog,$(PROGRAMS),$(eval $(call PROGRAM_template,$(prog))))
7582 $(PROGRAMS):
7583         $(LINK.o) $^ $(LDLIBS) -o $@@
7585 clean:
7586         rm -f $(ALL_OBJS) $(PROGRAMS)
7587 @end group
7588 @end example
7590 @node Origin Function, Flavor Function, Eval Function, Functions
7591 @section The @code{origin} Function
7592 @findex origin
7593 @cindex variables, origin of
7594 @cindex origin of variable
7596 The @code{origin} function is unlike most other functions in that it does
7597 not operate on the values of variables; it tells you something @emph{about}
7598 a variable.  Specifically, it tells you where it came from.
7600 The syntax of the @code{origin} function is:
7602 @example
7603 $(origin @var{variable})
7604 @end example
7606 Note that @var{variable} is the @emph{name} of a variable to inquire about,
7607 not a @emph{reference} to that variable.  Therefore you would not normally
7608 use a @samp{$} or parentheses when writing it.  (You can, however, use a
7609 variable reference in the name if you want the name not to be a constant.)
7611 The result of this function is a string telling you how the variable
7612 @var{variable} was defined:
7614 @table @samp
7615 @item undefined
7617 if @var{variable} was never defined.
7619 @item default
7621 if @var{variable} has a default definition, as is usual with @code{CC}
7622 and so on.  @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
7623 Note that if you have redefined a default variable, the @code{origin}
7624 function will return the origin of the later definition.
7626 @item environment
7628 if @var{variable} was inherited from the environment provided to
7629 @code{make}.
7631 @item environment override
7633 if @var{variable} was inherited from the environment provided to
7634 @code{make}, and is overriding a setting for @var{variable} in the
7635 makefile as a result of the @w{@samp{-e}} option (@pxref{Options
7636 Summary, ,Summary of Options}).@refill
7638 @item file
7640 if @var{variable} was defined in a makefile.
7642 @item command line
7644 if @var{variable} was defined on the command line.
7646 @item override
7648 if @var{variable} was defined with an @code{override} directive in a
7649 makefile (@pxref{Override Directive, ,The @code{override} Directive}).
7651 @item automatic
7653 if @var{variable} is an automatic variable defined for the execution
7654 of the recipe for each rule (@pxref{Automatic Variables}).
7655 @end table
7657 This information is primarily useful (other than for your curiosity) to
7658 determine if you want to believe the value of a variable.  For example,
7659 suppose you have a makefile @file{foo} that includes another makefile
7660 @file{bar}.  You want a variable @code{bletch} to be defined in @file{bar}
7661 if you run the command @w{@samp{make -f bar}}, even if the environment contains
7662 a definition of @code{bletch}.  However, if @file{foo} defined
7663 @code{bletch} before including @file{bar}, you do not want to override that
7664 definition.  This could be done by using an @code{override} directive in
7665 @file{foo}, giving that definition precedence over the later definition in
7666 @file{bar}; unfortunately, the @code{override} directive would also
7667 override any command line definitions.  So, @file{bar} could
7668 include:@refill
7670 @example
7671 @group
7672 ifdef bletch
7673 ifeq "$(origin bletch)" "environment"
7674 bletch = barf, gag, etc.
7675 endif
7676 endif
7677 @end group
7678 @end example
7680 @noindent
7681 If @code{bletch} has been defined from the environment, this will redefine
7684 If you want to override a previous definition of @code{bletch} if it came
7685 from the environment, even under @samp{-e}, you could instead write:
7687 @example
7688 @group
7689 ifneq "$(findstring environment,$(origin bletch))" ""
7690 bletch = barf, gag, etc.
7691 endif
7692 @end group
7693 @end example
7695 Here the redefinition takes place if @samp{$(origin bletch)} returns either
7696 @samp{environment} or @samp{environment override}.
7697 @xref{Text Functions, , Functions for String Substitution and Analysis}.
7699 @node Flavor Function, Make Control Functions, Origin Function, Functions
7700 @section The @code{flavor} Function
7701 @findex flavor
7702 @cindex variables, flavor of
7703 @cindex flavor of variable
7705 The @code{flavor} function, like the @code{origin} function, does not
7706 operate on the values of variables but rather it tells you something
7707 @emph{about} a variable.  Specifically, it tells you the flavor of a
7708 variable (@pxref{Flavors, ,The Two Flavors of Variables}).
7710 The syntax of the @code{flavor} function is:
7712 @example
7713 $(flavor @var{variable})
7714 @end example
7716 Note that @var{variable} is the @emph{name} of a variable to inquire about,
7717 not a @emph{reference} to that variable.  Therefore you would not normally
7718 use a @samp{$} or parentheses when writing it.  (You can, however, use a
7719 variable reference in the name if you want the name not to be a constant.)
7721 The result of this function is a string that identifies the flavor of the
7722 variable @var{variable}:
7724 @table @samp
7725 @item undefined
7727 if @var{variable} was never defined.
7729 @item recursive
7731 if @var{variable} is a recursively expanded variable.
7733 @item simple
7735 if @var{variable} is a simply expanded variable.
7737 @end table
7739 @node Make Control Functions, Shell Function, Flavor Function, Functions
7740 @section Functions That Control Make
7741 @cindex functions, for controlling make
7742 @cindex controlling make
7744 These functions control the way make runs.  Generally, they are used to
7745 provide information to the user of the makefile or to cause make to stop
7746 if some sort of environmental error is detected.
7748 @table @code
7749 @item $(error @var{text}@dots{})
7750 @findex error
7751 @cindex error, stopping on
7752 @cindex stopping make
7753 Generates a fatal error where the message is @var{text}.  Note that
7754 the error is generated whenever this function is evaluated.  So, if
7755 you put it inside a recipe or on the right side of a recursive
7756 variable assignment, it won't be evaluated until later.  The
7757 @var{text} will be expanded before the error is generated.
7759 For example,
7761 @example
7762 ifdef ERROR1
7763 $(error error is $(ERROR1))
7764 endif
7765 @end example
7767 @noindent
7768 will generate a fatal error during the read of the makefile if the
7769 @code{make} variable @code{ERROR1} is defined.  Or,
7771 @example
7772 ERR = $(error found an error!)
7774 .PHONY: err
7775 err: ; $(ERR)
7776 @end example
7778 @noindent
7779 will generate a fatal error while @code{make} is running, if the
7780 @code{err} target is invoked.
7782 @item $(warning @var{text}@dots{})
7783 @findex warning
7784 @cindex warnings, printing
7785 @cindex printing user warnings
7786 This function works similarly to the @code{error} function, above,
7787 except that @code{make} doesn't exit.  Instead, @var{text} is expanded
7788 and the resulting message is displayed, but processing of the makefile
7789 continues.
7791 The result of the expansion of this function is the empty string.
7793 @item $(info @var{text}@dots{})
7794 @findex info
7795 @cindex printing messages
7796 This function does nothing more than print its (expanded) argument(s)
7797 to standard output.  No makefile name or line number is added.  The
7798 result of the expansion of this function is the empty string.
7799 @end table
7801 @node Shell Function, Guile Function, Make Control Functions, Functions
7802 @section The @code{shell} Function
7803 @findex shell
7804 @cindex command expansion
7805 @cindex backquotes
7806 @cindex shell command, function for
7808 The @code{shell} function is unlike any other function other than the
7809 @code{wildcard} function
7810 (@pxref{Wildcard Function, ,The Function @code{wildcard}}) in that it
7811 communicates with the world outside of @code{make}.
7813 The @code{shell} function performs the same function that backquotes
7814 (@samp{`}) perform in most shells: it does @dfn{command expansion}.
7815 This means that it takes as an argument a shell command and evaluates
7816 to the output of the command.  The only processing @code{make} does on
7817 the result is to convert each newline (or carriage-return / newline
7818 pair) to a single space.  If there is a trailing (carriage-return
7819 and) newline it will simply be removed.@refill
7821 The commands run by calls to the @code{shell} function are run when the
7822 function calls are expanded (@pxref{Reading Makefiles, , How
7823 @code{make} Reads a Makefile}).  Because this function involves
7824 spawning a new shell, you should carefully consider the performance
7825 implications of using the @code{shell} function within recursively
7826 expanded variables vs.@: simply expanded variables (@pxref{Flavors, ,The
7827 Two Flavors of Variables}).
7829 Here are some examples of the use of the @code{shell} function:
7831 @example
7832 contents := $(shell cat foo)
7833 @end example
7835 @noindent
7836 sets @code{contents} to the contents of the file @file{foo}, with a space
7837 (rather than a newline) separating each line.
7839 @example
7840 files := $(shell echo *.c)
7841 @end example
7843 @noindent
7844 sets @code{files} to the expansion of @samp{*.c}.  Unless @code{make} is
7845 using a very strange shell, this has the same result as
7846 @w{@samp{$(wildcard *.c)}} (as long as at least one @samp{.c} file
7847 exists).@refill
7849 @node Guile Function,  , Shell Function, Functions
7850 @section The @code{guile} Function
7851 @findex guile
7852 @cindex Guile
7854 GNU make may be built with support for GNU Guile as an embedded
7855 extension language.  You can check the @code{.FEATURES} variable for
7856 the word @samp{guile} to determine if your version of GNU make
7857 provides this capability.
7859 GNU Guile implements the Scheme language.  A review of GNU Guile and
7860 the Scheme language and its features is beyond the scope of this
7861 manual: see the documentation for GNU Guile and Scheme.
7863 If GNU Guile is available as an extension language, there will be one
7864 new @code{make} function available: @code{guile}.  The @code{guile}
7865 function takes one argument which is first expanded by @code{make} in
7866 the normal fashion, then passed to the GNU Guile evaluator.  The
7867 result of the evaluator is converted into a string and used as the
7868 expansion of the @code{guile} function in the makefile.
7870 Similarly, there are Guile procedures exposed by @code{make} for use
7871 in Guile scripts.
7873 @menu
7874 * Guile Types::                 Converting Guile types to @code{make} strings.
7875 * Guile Interface::             Invoking @code{make} functions from Guile.
7876 * Guile Example::               Example using Guile in @code{make}.
7877 @end menu
7879 @node Guile Types, Guile Interface, Guile Function, Guile Function
7880 @subsection Conversion of Guile Types
7881 @cindex convert guile types
7882 @cindex guile, conversion of types
7883 @cindex types, conversion of
7885 There is only one ``data type'' in @code{make}: a string.  GNU Guile,
7886 on the other hand, provides a rich variety of different data types.
7887 An important aspect of the interface between @code{make} and GNU Guile
7888 is the conversion of Guile data types into @code{make} strings.
7890 This conversion is relevant in two places: when a makefile invokes the
7891 @code{guile} function to evaluate a Guile expression, the result of
7892 that evaluation must be converted into a make string so it can be
7893 further evaluated by @code{make}.  And secondly, when a Guile script
7894 invokes one of the procedures exported by @code{make} the argument
7895 provided to the procedure must be converted into a string.
7897 The conversion of Guile types into @code{make} strings is as below:
7899 @table @code
7900 @item #f
7901 False is converted into the empty string: in @code{make} conditionals
7902 the empty string is considered false.
7904 @item #t
7905 True is converted to the string @samp{#t}: in @code{make} conditionals
7906 any non-empty string is considered true.
7908 @item symbol
7909 @item number
7910 A symbol or number is converted into the string representation of that
7911 symbol or number.
7913 @item character
7914 A printable character is converted to the same character.
7916 @item string
7917 A string containing only printable characters is converted to the same
7918 string.
7920 @item list
7921 A list is converted recursively according to the above rules.  This
7922 implies that any structured list will be flattened (that is, a result
7923 of @samp{'(a b (c d) e)} will be converted to the @code{make} string
7924 @samp{a b c d e}).
7926 @item other
7927 Any other Guile type results in an error.  In future versions of
7928 @code{make}, other Guile types may be converted.
7930 @end table
7932 The translation of @samp{#f} (to the empty string) and @samp{#t} (to
7933 the non-empty string @samp{#t}) is designed to allow you to use Guile
7934 boolean results directly as @code{make} boolean conditions.  For
7935 example:
7937 @example
7938 $(if $(guile (access? "myfile" R_OK)),$(info myfile exists))
7939 @end example
7941 As a consequence of these conversion rules you must consider the
7942 result of your Guile script, as that result will be converted into a
7943 string and parsed by @code{make}.  If there is no natural result for
7944 the script (that is, the script exists solely for its side-effects),
7945 you should add @samp{#f} as the final expression in order to avoid
7946 syntax errors in your makefile.
7948 @node Guile Interface, Guile Example, Guile Types, Guile Function
7949 @subsection Interfaces from Guile to @code{make}
7950 @cindex make interface to guile
7951 @cindex make procedures in guile
7953 In addition to the @code{guile} function available in makefiles,
7954 @code{make} exposes some procedures for use in your Guile scripts.  At
7955 startup @code{make} creates a new Guile module, @code{gnu make}, and
7956 exports these procedures as public interfaces from that module:
7958 @table @code
7959 @item gmk-expand
7960 This procedure takes a single argument which is converted into a
7961 string.  The string is expanded by @code{make} using normal
7962 @code{make} expansion rules.  The result of the expansion is converted
7963 into a Guile string and provided as the result of the procedure.
7965 @item gmk-eval
7966 This procedure takes a single argument which is converted into a
7967 string.  The string is evaluated by @code{make} as if it were a
7968 makefile.  This is the same capability available via the @code{eval}
7969 function (@pxref{Eval Function}).  The result of the @code{gmk-eval}
7970 procedure is always the empty string.
7972 @item gmk-var
7973 This procedure takes a single argument which is converted into a
7974 string.  The string is assumed to be the name of a @code{make}
7975 variable, which is then expanded.  The expansion is converted into a
7976 string and provided as the result of the procedure.
7978 @end table
7980 @node Guile Example,  , Guile Interface, Guile Function
7981 @subsection Example Using Guile in @code{make}
7982 @cindex Guile example
7983 @cindex example using Guile
7985 Here is a very simple example using GNU Guile to manage writing to a
7986 file.  These Guile procedures simply open a file, allow writing to the
7987 file (one string per line), and close the file.  Note that because we
7988 cannot store complex values such as Guile ports in @code{make}
7989 variables, we'll keep the port as a global variable in the Guile
7990 interpreter.
7992 You can create Guile functions easily using @code{define}/@code{endef}
7993 to create a Guile script, then use the @code{guile} function to
7994 internalize it:
7996 @example
7997 @group
7998 define GUILEIO
7999 ;; A simple Guile IO library for GNU make
8001 (define MKPORT #f)
8003 (define (mkopen name mode)
8004   (set! MKPORT (open-file name mode))
8005   #f)
8007 (define (mkwrite s)
8008   (display s MKPORT)
8009   (newline MKPORT)
8010   #f)
8012 (define (mkclose)
8013   (close-port MKPORT)
8014   #f)
8017 endef
8019 # Internalize the Guile IO functions
8020 $(guile $(GUILEIO))
8021 @end group
8022 @end example
8024 If you have a significant amount of Guile support code, you might
8025 consider keeping it in a different file (e.g., @file{guileio.scm}) and
8026 then loading it in your makefile using the @code{guile} function:
8028 @example
8029 $(guile (load "guileio.scm"))
8030 @end example
8032 An advantage to this method is that when editing @file{guileio.scm},
8033 your editor will understand that this file contains Scheme syntax
8034 rather than makefile syntax.
8036 Now you can use these Guile functions to create files.  Suppose you
8037 need to operate on a very large list, which cannot fit on the command
8038 line, but the utility you're using accepts the list as input as well:
8040 @example
8041 @group
8042 prog: $(PREREQS)
8043         @@$(guile (mkopen "tmp.out" "w")) \
8044          $(foreach X,$^,$(guile (mkwrite "$(X)"))) \
8045          $(guile (mkclose))
8046         $(LINK) < tmp.out
8047 @end group
8048 @end example
8050 A more comprehensive suite of file manipulation procedures is possible
8051 of course.  You could, for example, maintain multiple output files at
8052 the same time by choosing a symbol for each one and using it as the
8053 key to a hash table, where the value is a port, then returning the
8054 symbol to be stored in a @code{make} variable.
8057 @node Running, Implicit Rules, Functions, Top
8058 @chapter How to Run @code{make}
8060 A makefile that says how to recompile a program can be used in more
8061 than one way.  The simplest use is to recompile every file that is out
8062 of date.  Usually, makefiles are written so that if you run
8063 @code{make} with no arguments, it does just that.
8065 But you might want to update only some of the files; you might want to use
8066 a different compiler or different compiler options; you might want just to
8067 find out which files are out of date without changing them.
8069 By giving arguments when you run @code{make}, you can do any of these
8070 things and many others.
8072 @cindex exit status of make
8073 The exit status of @code{make} is always one of three values:
8074 @table @code
8075 @item 0
8076 The exit status is zero if @code{make} is successful.
8077 @item 2
8078 The exit status is two if @code{make} encounters any errors.
8079 It will print messages describing the particular errors.
8080 @item 1
8081 The exit status is one if you use the @samp{-q} flag and @code{make}
8082 determines that some target is not already up to date.
8083 @xref{Instead of Execution, ,Instead of Executing Recipes}.
8084 @end table
8086 @menu
8087 * Makefile Arguments::          How to specify which makefile to use.
8088 * Goals::                       How to use goal arguments to specify which
8089                                   parts of the makefile to use.
8090 * Instead of Execution::        How to use mode flags to specify what
8091                                   kind of thing to do with the recipes
8092                                   in the makefile other than simply
8093                                   execute them.
8094 * Avoiding Compilation::        How to avoid recompiling certain files.
8095 * Overriding::                  How to override a variable to specify
8096                                   an alternate compiler and other things.
8097 * Testing::                     How to proceed past some errors, to
8098                                   test compilation.
8099 * Options Summary::             Summary of Options
8100 @end menu
8102 @node Makefile Arguments, Goals, Running, Running
8103 @section Arguments to Specify the Makefile
8104 @cindex @code{--file}
8105 @cindex @code{--makefile}
8106 @cindex @code{-f}
8108 The way to specify the name of the makefile is with the @samp{-f} or
8109 @samp{--file} option (@samp{--makefile} also works).  For example,
8110 @samp{-f altmake} says to use the file @file{altmake} as the makefile.
8112 If you use the @samp{-f} flag several times and follow each @samp{-f}
8113 with an argument, all the specified files are used jointly as
8114 makefiles.
8116 If you do not use the @samp{-f} or @samp{--file} flag, the default is
8117 to try @file{GNUmakefile}, @file{makefile}, and @file{Makefile}, in
8118 that order, and use the first of these three which exists or can be made
8119 (@pxref{Makefiles, ,Writing Makefiles}).@refill
8121 @node Goals, Instead of Execution, Makefile Arguments, Running
8122 @section Arguments to Specify the Goals
8123 @cindex goal, how to specify
8125 The @dfn{goals} are the targets that @code{make} should strive ultimately
8126 to update.  Other targets are updated as well if they appear as
8127 prerequisites of goals, or prerequisites of prerequisites of goals, etc.
8129 By default, the goal is the first target in the makefile (not counting
8130 targets that start with a period).  Therefore, makefiles are usually
8131 written so that the first target is for compiling the entire program or
8132 programs they describe.  If the first rule in the makefile has several
8133 targets, only the first target in the rule becomes the default goal, not
8134 the whole list.  You can manage the selection of the default goal from
8135 within your makefile using the @code{.DEFAULT_GOAL} variable
8136 (@pxref{Special Variables, , Other Special Variables}).
8138 You can also specify a different goal or goals with command line
8139 arguments to @code{make}.  Use the name of the goal as an argument.
8140 If you specify several goals, @code{make} processes each of them in
8141 turn, in the order you name them.
8143 Any target in the makefile may be specified as a goal (unless it
8144 starts with @samp{-} or contains an @samp{=}, in which case it will be
8145 parsed as a switch or variable definition, respectively).  Even
8146 targets not in the makefile may be specified, if @code{make} can find
8147 implicit rules that say how to make them.
8149 @vindex MAKECMDGOALS
8150 @code{Make} will set the special variable @code{MAKECMDGOALS} to the
8151 list of goals you specified on the command line.  If no goals were given
8152 on the command line, this variable is empty.  Note that this variable
8153 should be used only in special circumstances.
8155 An example of appropriate use is to avoid including @file{.d} files
8156 during @code{clean} rules (@pxref{Automatic Prerequisites}), so
8157 @code{make} won't create them only to immediately remove them
8158 again:@refill
8160 @example
8161 @group
8162 sources = foo.c bar.c
8164 ifneq ($(MAKECMDGOALS),clean)
8165 include $(sources:.c=.d)
8166 endif
8167 @end group
8168 @end example
8170 One use of specifying a goal is if you want to compile only a part of
8171 the program, or only one of several programs.  Specify as a goal each
8172 file that you wish to remake.  For example, consider a directory containing
8173 several programs, with a makefile that starts like this:
8175 @example
8176 .PHONY: all
8177 all: size nm ld ar as
8178 @end example
8180 If you are working on the program @code{size}, you might want to say
8181 @w{@samp{make size}} so that only the files of that program are recompiled.
8183 Another use of specifying a goal is to make files that are not normally
8184 made.  For example, there may be a file of debugging output, or a
8185 version of the program that is compiled specially for testing, which has
8186 a rule in the makefile but is not a prerequisite of the default goal.
8188 Another use of specifying a goal is to run the recipe associated with
8189 a phony target (@pxref{Phony Targets}) or empty target (@pxref{Empty
8190 Targets, ,Empty Target Files to Record Events}).  Many makefiles contain
8191 a phony target named @file{clean} which deletes everything except source
8192 files.  Naturally, this is done only if you request it explicitly with
8193 @w{@samp{make clean}}.  Following is a list of typical phony and empty
8194 target names.  @xref{Standard Targets}, for a detailed list of all the
8195 standard target names which GNU software packages use.
8197 @table @file
8198 @item all
8199 @cindex @code{all} @r{(standard target)}
8200 Make all the top-level targets the makefile knows about.
8202 @item clean
8203 @cindex @code{clean} @r{(standard target)}
8204 Delete all files that are normally created by running @code{make}.
8206 @item mostlyclean
8207 @cindex @code{mostlyclean} @r{(standard target)}
8208 Like @samp{clean}, but may refrain from deleting a few files that people
8209 normally don't want to recompile.  For example, the @samp{mostlyclean}
8210 target for GCC does not delete @file{libgcc.a}, because recompiling it
8211 is rarely necessary and takes a lot of time.
8213 @item distclean
8214 @cindex @code{distclean} @r{(standard target)}
8215 @itemx realclean
8216 @cindex @code{realclean} @r{(standard target)}
8217 @itemx clobber
8218 @cindex @code{clobber} @r{(standard target)}
8219 Any of these targets might be defined to delete @emph{more} files than
8220 @samp{clean} does.  For example, this would delete configuration files
8221 or links that you would normally create as preparation for compilation,
8222 even if the makefile itself cannot create these files.
8224 @item install
8225 @cindex @code{install} @r{(standard target)}
8226 Copy the executable file into a directory that users typically search
8227 for commands; copy any auxiliary files that the executable uses into
8228 the directories where it will look for them.
8230 @item print
8231 @cindex @code{print} @r{(standard target)}
8232 Print listings of the source files that have changed.
8234 @item tar
8235 @cindex @code{tar} @r{(standard target)}
8236 Create a tar file of the source files.
8238 @item shar
8239 @cindex @code{shar} @r{(standard target)}
8240 Create a shell archive (shar file) of the source files.
8242 @item dist
8243 @cindex @code{dist} @r{(standard target)}
8244 Create a distribution file of the source files.  This might
8245 be a tar file, or a shar file, or a compressed version of one of the
8246 above, or even more than one of the above.
8248 @item TAGS
8249 @cindex @code{TAGS} @r{(standard target)}
8250 Update a tags table for this program.
8252 @item check
8253 @cindex @code{check} @r{(standard target)}
8254 @itemx test
8255 @cindex @code{test} @r{(standard target)}
8256 Perform self tests on the program this makefile builds.
8257 @end table
8259 @node Instead of Execution, Avoiding Compilation, Goals, Running
8260 @section Instead of Executing Recipes
8261 @cindex execution, instead of
8262 @cindex recipes, instead of executing
8264 The makefile tells @code{make} how to tell whether a target is up to date,
8265 and how to update each target.  But updating the targets is not always
8266 what you want.  Certain options specify other activities for @code{make}.
8268 @comment Extra blank lines make it print better.
8269 @table @samp
8270 @item -n
8271 @itemx --just-print
8272 @itemx --dry-run
8273 @itemx --recon
8274 @cindex @code{--just-print}
8275 @cindex @code{--dry-run}
8276 @cindex @code{--recon}
8277 @cindex @code{-n}
8279 ``No-op''.  Causes @code{make} to print the recipes that are needed to
8280 make the targets up to date, but not actually execute them.  Note that
8281 some recipes are still executed, even with this flag (@pxref{MAKE
8282 Variable, ,How the @code{MAKE} Variable Works}).  Also any recipes
8283 needed to update included makefiles are still executed
8284 (@pxref{Remaking Makefiles, ,How Makefiles Are Remade}).
8286 @item -t
8287 @itemx --touch
8288 @cindex @code{--touch}
8289 @cindex touching files
8290 @cindex target, touching
8291 @cindex @code{-t}
8293 ``Touch''.  Marks targets as up to date without actually changing
8294 them.  In other words, @code{make} pretends to update the targets but
8295 does not really change their contents; instead only their modified
8296 times are updated.
8298 @item -q
8299 @itemx --question
8300 @cindex @code{--question}
8301 @cindex @code{-q}
8302 @cindex question mode
8304 ``Question''.  Silently check whether the targets are up to date, but
8305 do not execute recipes; the exit code shows whether any updates are
8306 needed.
8308 @item -W @var{file}
8309 @itemx --what-if=@var{file}
8310 @itemx --assume-new=@var{file}
8311 @itemx --new-file=@var{file}
8312 @cindex @code{--what-if}
8313 @cindex @code{-W}
8314 @cindex @code{--assume-new}
8315 @cindex @code{--new-file}
8316 @cindex what if
8317 @cindex files, assuming new
8319 ``What if''.  Each @samp{-W} flag is followed by a file name.  The given
8320 files' modification times are recorded by @code{make} as being the present
8321 time, although the actual modification times remain the same.
8322 You can use the @samp{-W} flag in conjunction with the @samp{-n} flag
8323 to see what would happen if you were to modify specific files.@refill
8324 @end table
8326 With the @samp{-n} flag, @code{make} prints the recipe that it would
8327 normally execute but usually does not execute it.
8329 With the @samp{-t} flag, @code{make} ignores the recipes in the rules
8330 and uses (in effect) the command @code{touch} for each target that needs to
8331 be remade.  The @code{touch} command is also printed, unless @samp{-s} or
8332 @code{.SILENT} is used.  For speed, @code{make} does not actually invoke
8333 the program @code{touch}.  It does the work directly.
8335 With the @samp{-q} flag, @code{make} prints nothing and executes no
8336 recipes, but the exit status code it returns is zero if and only if the
8337 targets to be considered are already up to date.  If the exit status is
8338 one, then some updating needs to be done.  If @code{make} encounters an
8339 error, the exit status is two, so you can distinguish an error from a
8340 target that is not up to date.
8342 It is an error to use more than one of these three flags in the same
8343 invocation of @code{make}.
8345 @cindex +, and recipe execution
8346 The @samp{-n}, @samp{-t}, and @samp{-q} options do not affect recipe
8347 lines that begin with @samp{+} characters or contain the strings
8348 @samp{$(MAKE)} or @samp{$@{MAKE@}}.  Note that only the line containing
8349 the @samp{+} character or the strings @samp{$(MAKE)} or @samp{$@{MAKE@}}
8350 is run regardless of these options.  Other lines in the same rule are
8351 not run unless they too begin with @samp{+} or contain @samp{$(MAKE)} or
8352 @samp{$@{MAKE@}} (@xref{MAKE Variable, ,How the @code{MAKE} Variable Works}.)
8354 @cindex phony targets and recipe execution
8355 The @samp{-t} flag prevents phony targets (@pxref{Phony Targets}) from
8356 being updated, unless there are recipe lines beginning with @samp{+}
8357 or containing @samp{$(MAKE)} or @samp{$@{MAKE@}}.
8359 The @samp{-W} flag provides two features:
8361 @itemize @bullet
8362 @item
8363 If you also use the @samp{-n} or @samp{-q} flag, you can see what
8364 @code{make} would do if you were to modify some files.
8366 @item
8367 Without the @samp{-n} or @samp{-q} flag, when @code{make} is actually
8368 executing recipes, the @samp{-W} flag can direct @code{make} to act as
8369 if some files had been modified, without actually running the recipes
8370 for those files.@refill
8371 @end itemize
8373 Note that the options @samp{-p} and @samp{-v} allow you to obtain other
8374 information about @code{make} or about the makefiles in use
8375 (@pxref{Options Summary, ,Summary of Options}).@refill
8377 @node Avoiding Compilation, Overriding, Instead of Execution, Running
8378 @section Avoiding Recompilation of Some Files
8379 @cindex @code{-o}
8380 @cindex @code{--old-file}
8381 @cindex @code{--assume-old}
8382 @cindex files, assuming old
8383 @cindex files, avoiding recompilation of
8384 @cindex recompilation, avoiding
8386 Sometimes you may have changed a source file but you do not want to
8387 recompile all the files that depend on it.  For example, suppose you add
8388 a macro or a declaration to a header file that many other files depend
8389 on.  Being conservative, @code{make} assumes that any change in the
8390 header file requires recompilation of all dependent files, but you know
8391 that they do not need to be recompiled and you would rather not waste
8392 the time waiting for them to compile.
8394 If you anticipate the problem before changing the header file, you can
8395 use the @samp{-t} flag.  This flag tells @code{make} not to run the
8396 recipes in the rules, but rather to mark the target up to date by
8397 changing its last-modification date.  You would follow this procedure:
8399 @enumerate
8400 @item
8401 Use the command @samp{make} to recompile the source files that really
8402 need recompilation, ensuring that the object files are up-to-date
8403 before you begin.
8405 @item
8406 Make the changes in the header files.
8408 @item
8409 Use the command @samp{make -t} to mark all the object files as
8410 up to date.  The next time you run @code{make}, the changes in the
8411 header files will not cause any recompilation.
8412 @end enumerate
8414 If you have already changed the header file at a time when some files
8415 do need recompilation, it is too late to do this.  Instead, you can
8416 use the @w{@samp{-o @var{file}}} flag, which marks a specified file as
8417 ``old'' (@pxref{Options Summary, ,Summary of Options}).  This means
8418 that the file itself will not be remade, and nothing else will be
8419 remade on its account.  Follow this procedure:
8421 @enumerate
8422 @item
8423 Recompile the source files that need compilation for reasons independent
8424 of the particular header file, with @samp{make -o @var{headerfile}}.
8425 If several header files are involved, use a separate @samp{-o} option
8426 for each header file.
8428 @item
8429 Touch all the object files with @samp{make -t}.
8430 @end enumerate
8432 @node Overriding, Testing, Avoiding Compilation, Running
8433 @section Overriding Variables
8434 @cindex overriding variables with arguments
8435 @cindex variables, overriding with arguments
8436 @cindex command line variables
8437 @cindex variables, command line
8439 An argument that contains @samp{=} specifies the value of a variable:
8440 @samp{@var{v}=@var{x}} sets the value of the variable @var{v} to @var{x}.
8441 If you specify a value in this way, all ordinary assignments of the same
8442 variable in the makefile are ignored; we say they have been
8443 @dfn{overridden} by the command line argument.
8445 The most common way to use this facility is to pass extra flags to
8446 compilers.  For example, in a properly written makefile, the variable
8447 @code{CFLAGS} is included in each recipe that runs the C compiler, so a
8448 file @file{foo.c} would be compiled something like this:
8450 @example
8451 cc -c $(CFLAGS) foo.c
8452 @end example
8454 Thus, whatever value you set for @code{CFLAGS} affects each compilation
8455 that occurs.  The makefile probably specifies the usual value for
8456 @code{CFLAGS}, like this:
8458 @example
8459 CFLAGS=-g
8460 @end example
8462 Each time you run @code{make}, you can override this value if you
8463 wish.  For example, if you say @samp{make CFLAGS='-g -O'}, each C
8464 compilation will be done with @samp{cc -c -g -O}.  (This also
8465 illustrates how you can use quoting in the shell to enclose spaces and
8466 other special characters in the value of a variable when you override
8467 it.)
8469 The variable @code{CFLAGS} is only one of many standard variables that
8470 exist just so that you can change them this way.  @xref{Implicit
8471 Variables, , Variables Used by Implicit Rules}, for a complete list.
8473 You can also program the makefile to look at additional variables of your
8474 own, giving the user the ability to control other aspects of how the
8475 makefile works by changing the variables.
8477 When you override a variable with a command line argument, you can
8478 define either a recursively-expanded variable or a simply-expanded
8479 variable.  The examples shown above make a recursively-expanded
8480 variable; to make a simply-expanded variable, write @samp{:=} or
8481 @samp{::=} instead of @samp{=}.  But, unless you want to include a
8482 variable reference or function call in the @emph{value} that you
8483 specify, it makes no difference which kind of variable you create.
8485 There is one way that the makefile can change a variable that you have
8486 overridden.  This is to use the @code{override} directive, which is a line
8487 that looks like this: @samp{override @var{variable} = @var{value}}
8488 (@pxref{Override Directive, ,The @code{override} Directive}).
8490 @node Testing, Options Summary, Overriding, Running
8491 @section Testing the Compilation of a Program
8492 @cindex testing compilation
8493 @cindex compilation, testing
8495 Normally, when an error happens in executing a shell command, @code{make}
8496 gives up immediately, returning a nonzero status.  No further recipes are
8497 executed for any target.  The error implies that the goal cannot be
8498 correctly remade, and @code{make} reports this as soon as it knows.
8500 When you are compiling a program that you have just changed, this is not
8501 what you want.  Instead, you would rather that @code{make} try compiling
8502 every file that can be tried, to show you as many compilation errors
8503 as possible.
8505 @cindex @code{-k}
8506 @cindex @code{--keep-going}
8507 On these occasions, you should use the @samp{-k} or
8508 @samp{--keep-going} flag.  This tells @code{make} to continue to
8509 consider the other prerequisites of the pending targets, remaking them
8510 if necessary, before it gives up and returns nonzero status.  For
8511 example, after an error in compiling one object file, @samp{make -k}
8512 will continue compiling other object files even though it already
8513 knows that linking them will be impossible.  In addition to continuing
8514 after failed shell commands, @samp{make -k} will continue as much as
8515 possible after discovering that it does not know how to make a target
8516 or prerequisite file.  This will always cause an error message, but
8517 without @samp{-k}, it is a fatal error (@pxref{Options Summary,
8518 ,Summary of Options}).@refill
8520 The usual behavior of @code{make} assumes that your purpose is to get the
8521 goals up to date; once @code{make} learns that this is impossible, it might
8522 as well report the failure immediately.  The @samp{-k} flag says that the
8523 real purpose is to test as much as possible of the changes made in the
8524 program, perhaps to find several independent problems so that you can
8525 correct them all before the next attempt to compile.  This is why Emacs'
8526 @kbd{M-x compile} command passes the @samp{-k} flag by default.
8528 @node Options Summary,  , Testing, Running
8529 @section Summary of Options
8530 @cindex options
8531 @cindex flags
8532 @cindex switches
8534 Here is a table of all the options @code{make} understands:
8536 @table @samp
8537 @item -b
8538 @cindex @code{-b}
8539 @itemx -m
8540 @cindex @code{-m}
8541 These options are ignored for compatibility with other versions of @code{make}.
8543 @item -B
8544 @cindex @code{-B}
8545 @itemx --always-make
8546 @cindex @code{--always-make}
8547 Consider all targets out-of-date.  GNU @code{make} proceeds to
8548 consider targets and their prerequisites using the normal algorithms;
8549 however, all targets so considered are always remade regardless of the
8550 status of their prerequisites.  To avoid infinite recursion, if
8551 @code{MAKE_RESTARTS} (@pxref{Special Variables, , Other Special
8552 Variables}) is set to a number greater than 0 this option is disabled
8553 when considering whether to remake makefiles (@pxref{Remaking
8554 Makefiles, , How Makefiles Are Remade}).
8556 @item -C @var{dir}
8557 @cindex @code{-C}
8558 @itemx --directory=@var{dir}
8559 @cindex @code{--directory}
8560 Change to directory @var{dir} before reading the makefiles.  If multiple
8561 @samp{-C} options are specified, each is interpreted relative to the
8562 previous one: @samp{-C / -C etc} is equivalent to @samp{-C /etc}.
8563 This is typically used with recursive invocations of @code{make}
8564 (@pxref{Recursion, ,Recursive Use of @code{make}}).
8566 @item -d
8567 @cindex @code{-d}
8568 @c Extra blank line here makes the table look better.
8570 Print debugging information in addition to normal processing.  The
8571 debugging information says which files are being considered for
8572 remaking, which file-times are being compared and with what results,
8573 which files actually need to be remade, which implicit rules are
8574 considered and which are applied---everything interesting about how
8575 @code{make} decides what to do.  The @code{-d} option is equivalent to
8576 @samp{--debug=a} (see below).
8578 @item --debug[=@var{options}]
8579 @cindex @code{--debug}
8580 @c Extra blank line here makes the table look better.
8582 Print debugging information in addition to normal processing.  Various
8583 levels and types of output can be chosen.  With no arguments, print the
8584 ``basic'' level of debugging.  Possible arguments are below; only the
8585 first character is considered, and values must be comma- or
8586 space-separated.
8588 @table @code
8589 @item a (@i{all})
8590 All types of debugging output are enabled.  This is equivalent to using
8591 @samp{-d}.
8593 @item b (@i{basic})
8594 Basic debugging prints each target that was found to be out-of-date, and
8595 whether the build was successful or not.
8597 @item v (@i{verbose})
8598 A level above @samp{basic}; includes messages about which makefiles were
8599 parsed, prerequisites that did not need to be rebuilt, etc.  This option
8600 also enables @samp{basic} messages.
8602 @item i (@i{implicit})
8603 Prints messages describing the implicit rule searches for each target.
8604 This option also enables @samp{basic} messages.
8606 @item j (@i{jobs})
8607 Prints messages giving details on the invocation of specific sub-commands.
8609 @item m (@i{makefile})
8610 By default, the above messages are not enabled while trying to remake
8611 the makefiles.  This option enables messages while rebuilding makefiles,
8612 too.  Note that the @samp{all} option does enable this option.  This
8613 option also enables @samp{basic} messages.
8614 @end table
8616 @item -e
8617 @cindex @code{-e}
8618 @itemx --environment-overrides
8619 @cindex @code{--environment-overrides}
8620 Give variables taken from the environment precedence
8621 over variables from makefiles.
8622 @xref{Environment, ,Variables from the Environment}.
8624 @item --eval=@var{string}
8625 @cindex @code{--eval}
8626 @c Extra blank line here makes the table look better.
8628 Evaluate @var{string} as makefile syntax.  This is a command-line
8629 version of the @code{eval} function (@pxref{Eval Function}).  The
8630 evaluation is performed after the default rules and variables have
8631 been defined, but before any makefiles are read.
8633 @item -f @var{file}
8634 @cindex @code{-f}
8635 @itemx --file=@var{file}
8636 @cindex @code{--file}
8637 @itemx --makefile=@var{file}
8638 @cindex @code{--makefile}
8639 Read the file named @var{file} as a makefile.
8640 @xref{Makefiles, ,Writing Makefiles}.
8642 @item -h
8643 @cindex @code{-h}
8644 @itemx --help
8645 @cindex @code{--help}
8646 @c Extra blank line here makes the table look better.
8648 Remind you of the options that @code{make} understands and then exit.
8650 @item -i
8651 @cindex @code{-i}
8652 @itemx --ignore-errors
8653 @cindex @code{--ignore-errors}
8654 Ignore all errors in recipes executed to remake files.
8655 @xref{Errors, ,Errors in Recipes}.
8657 @item -I @var{dir}
8658 @cindex @code{-I}
8659 @itemx --include-dir=@var{dir}
8660 @cindex @code{--include-dir}
8661 Specifies a directory @var{dir} to search for included makefiles.
8662 @xref{Include, ,Including Other Makefiles}.  If several @samp{-I}
8663 options are used to specify several directories, the directories are
8664 searched in the order specified.
8666 @item -j [@var{jobs}]
8667 @cindex @code{-j}
8668 @itemx --jobs[=@var{jobs}]
8669 @cindex @code{--jobs}
8670 Specifies the number of recipes (jobs) to run simultaneously.  With no
8671 argument, @code{make} runs as many recipes simultaneously as possible.
8672 If there is more than one @samp{-j} option, the last one is effective.
8673 @xref{Parallel, ,Parallel Execution}, for more information on how
8674 recipes are run.  Note that this option is ignored on MS-DOS.
8676 @item -k
8677 @cindex @code{-k}
8678 @itemx --keep-going
8679 @cindex @code{--keep-going}
8680 Continue as much as possible after an error.  While the target that
8681 failed, and those that depend on it, cannot be remade, the other
8682 prerequisites of these targets can be processed all the same.
8683 @xref{Testing, ,Testing the Compilation of a Program}.
8685 @item -l [@var{load}]
8686 @cindex @code{-l}
8687 @itemx --load-average[=@var{load}]
8688 @cindex @code{--load-average}
8689 @itemx --max-load[=@var{load}]
8690 @cindex @code{--max-load}
8691 Specifies that no new recipes should be started if there are other
8692 recipes running and the load average is at least @var{load} (a
8693 floating-point number).  With no argument, removes a previous load
8694 limit.  @xref{Parallel, ,Parallel Execution}.
8696 @item -L
8697 @cindex @code{-L}
8698 @itemx --check-symlink-times
8699 @cindex @code{--check-symlink-times}
8700 On systems that support symbolic links, this option causes @code{make}
8701 to consider the timestamps on any symbolic links in addition to the
8702 timestamp on the file referenced by those links.  When this option is
8703 provided, the most recent timestamp among the file and the symbolic
8704 links is taken as the modification time for this target file.
8706 @item -n
8707 @cindex @code{-n}
8708 @itemx --just-print
8709 @cindex @code{--just-print}
8710 @itemx --dry-run
8711 @cindex @code{--dry-run}
8712 @itemx --recon
8713 @cindex @code{--recon}
8714 @c Extra blank line here makes the table look better.
8716 Print the recipe that would be executed, but do not execute it (except
8717 in certain circumstances).
8718 @xref{Instead of Execution, ,Instead of Executing Recipes}.
8720 @item -o @var{file}
8721 @cindex @code{-o}
8722 @itemx --old-file=@var{file}
8723 @cindex @code{--old-file}
8724 @itemx --assume-old=@var{file}
8725 @cindex @code{--assume-old}
8726 Do not remake the file @var{file} even if it is older than its
8727 prerequisites, and do not remake anything on account of changes in
8728 @var{file}.  Essentially the file is treated as very old and its rules
8729 are ignored.  @xref{Avoiding Compilation, ,Avoiding Recompilation of
8730 Some Files}.@refill
8732 @item -p
8733 @cindex @code{-p}
8734 @itemx --print-data-base
8735 @cindex @code{--print-data-base}
8736 @cindex data base of @code{make} rules
8737 @cindex predefined rules and variables, printing
8738 Print the data base (rules and variable values) that results from
8739 reading the makefiles; then execute as usual or as otherwise
8740 specified.  This also prints the version information given by the
8741 @samp{-v} switch (see below).  To print the data base without trying
8742 to remake any files, use @w{@samp{make -qp}}.  To print the data base
8743 of predefined rules and variables, use @w{@samp{make -p -f /dev/null}}.
8744 The data base output contains file name and line number information for
8745 recipe and variable definitions, so it can be a useful debugging tool
8746 in complex environments.
8748 @item -q
8749 @cindex @code{-q}
8750 @itemx --question
8751 @cindex @code{--question}
8752 ``Question mode''.  Do not run any recipes, or print anything; just
8753 return an exit status that is zero if the specified targets are already
8754 up to date, one if any remaking is required, or two if an error is
8755 encountered.  @xref{Instead of Execution, ,Instead of Executing
8756 Recipes}.@refill
8758 @item -r
8759 @cindex @code{-r}
8760 @itemx --no-builtin-rules
8761 @cindex @code{--no-builtin-rules}
8762 Eliminate use of the built-in implicit rules (@pxref{Implicit Rules,
8763 ,Using Implicit Rules}).  You can still define your own by writing
8764 pattern rules (@pxref{Pattern Rules, ,Defining and Redefining Pattern
8765 Rules}).  The @samp{-r} option also clears out the default list of
8766 suffixes for suffix rules (@pxref{Suffix Rules, ,Old-Fashioned Suffix
8767 Rules}).  But you can still define your own suffixes with a rule for
8768 @code{.SUFFIXES}, and then define your own suffix rules.  Note that only
8769 @emph{rules} are affected by the @code{-r} option; default variables
8770 remain in effect (@pxref{Implicit Variables, ,Variables Used by Implicit
8771 Rules}); see the @samp{-R} option below.
8773 @item -R
8774 @cindex @code{-R}
8775 @itemx --no-builtin-variables
8776 @cindex @code{--no-builtin-variables}
8777 Eliminate use of the built-in rule-specific variables (@pxref{Implicit
8778 Variables, ,Variables Used by Implicit Rules}).  You can still define
8779 your own, of course.  The @samp{-R} option also automatically enables
8780 the @samp{-r} option (see above), since it doesn't make sense to have
8781 implicit rules without any definitions for the variables that they use.
8783 @item -s
8784 @cindex @code{-s}
8785 @itemx --silent
8786 @cindex @code{--silent}
8787 @itemx --quiet
8788 @cindex @code{--quiet}
8789 @c Extra blank line here makes the table look better.
8791 Silent operation; do not print the recipes as they are executed.
8792 @xref{Echoing, ,Recipe Echoing}.
8794 @item -S
8795 @cindex @code{-S}
8796 @itemx --no-keep-going
8797 @cindex @code{--no-keep-going}
8798 @itemx --stop
8799 @cindex @code{--stop}
8800 @c Extra blank line here makes the table look better.
8802 Cancel the effect of the @samp{-k} option.  This is never necessary
8803 except in a recursive @code{make} where @samp{-k} might be inherited
8804 from the top-level @code{make} via @code{MAKEFLAGS}
8805 (@pxref{Recursion, ,Recursive Use of @code{make}})
8806 or if you set @samp{-k} in @code{MAKEFLAGS} in your environment.@refill
8808 @item -t
8809 @cindex @code{-t}
8810 @itemx --touch
8811 @cindex @code{--touch}
8812 @c Extra blank line here makes the table look better.
8814 Touch files (mark them up to date without really changing them)
8815 instead of running their recipes.  This is used to pretend that the
8816 recipes were done, in order to fool future invocations of
8817 @code{make}.  @xref{Instead of Execution, ,Instead of Executing Recipes}.
8819 @item --trace
8820 @cindex @code{--trace}
8821 @c Extra blank line here makes the table look better.
8823 Print the entire recipe to be executed, even for recipes that are
8824 normally silent (due to @code{.SILENT} or @samp{@@}).  Also print the
8825 makefile name and line number where the recipe was defined.
8827 @item -v
8828 @cindex @code{-v}
8829 @itemx --version
8830 @cindex @code{--version}
8831 Print the version of the @code{make} program plus a copyright, a list
8832 of authors, and a notice that there is no warranty; then exit.
8834 @item -w
8835 @cindex @code{-w}
8836 @itemx --print-directory
8837 @cindex @code{--print-directory}
8838 Print a message containing the working directory both before and after
8839 executing the makefile.  This may be useful for tracking down errors
8840 from complicated nests of recursive @code{make} commands.
8841 @xref{Recursion, ,Recursive Use of @code{make}}.  (In practice, you
8842 rarely need to specify this option since @samp{make} does it for you;
8843 see @ref{-w Option, ,The @samp{--print-directory} Option}.)
8845 @itemx --no-print-directory
8846 @cindex @code{--no-print-directory}
8847 Disable printing of the working directory under @code{-w}.
8848 This option is useful when @code{-w} is turned on automatically,
8849 but you do not want to see the extra messages.
8850 @xref{-w Option, ,The @samp{--print-directory} Option}.
8852 @item -W @var{file}
8853 @cindex @code{-W}
8854 @itemx --what-if=@var{file}
8855 @cindex @code{--what-if}
8856 @itemx --new-file=@var{file}
8857 @cindex @code{--new-file}
8858 @itemx --assume-new=@var{file}
8859 @cindex @code{--assume-new}
8860 Pretend that the target @var{file} has just been modified.  When used
8861 with the @samp{-n} flag, this shows you what would happen if you were
8862 to modify that file.  Without @samp{-n}, it is almost the same as
8863 running a @code{touch} command on the given file before running
8864 @code{make}, except that the modification time is changed only in the
8865 imagination of @code{make}.
8866 @xref{Instead of Execution, ,Instead of Executing Recipes}.
8868 @item --warn-undefined-variables
8869 @cindex @code{--warn-undefined-variables}
8870 @cindex variables, warning for undefined
8871 @cindex undefined variables, warning message
8872 Issue a warning message whenever @code{make} sees a reference to an
8873 undefined variable.  This can be helpful when you are trying to debug
8874 makefiles which use variables in complex ways.
8875 @end table
8877 @node Implicit Rules, Archives, Running, Top
8878 @chapter Using Implicit Rules
8879 @cindex implicit rule
8880 @cindex rule, implicit
8882 Certain standard ways of remaking target files are used very often.  For
8883 example, one customary way to make an object file is from a C source file
8884 using the C compiler, @code{cc}.
8886 @dfn{Implicit rules} tell @code{make} how to use customary techniques so
8887 that you do not have to specify them in detail when you want to use
8888 them.  For example, there is an implicit rule for C compilation.  File
8889 names determine which implicit rules are run.  For example, C
8890 compilation typically takes a @file{.c} file and makes a @file{.o} file.
8891 So @code{make} applies the implicit rule for C compilation when it sees
8892 this combination of file name endings.@refill
8894 A chain of implicit rules can apply in sequence; for example, @code{make}
8895 will remake a @file{.o} file from a @file{.y} file by way of a @file{.c} file.
8896 @iftex
8897 @xref{Chained Rules, ,Chains of Implicit Rules}.
8898 @end iftex
8900 The built-in implicit rules use several variables in their recipes so
8901 that, by changing the values of the variables, you can change the way the
8902 implicit rule works.  For example, the variable @code{CFLAGS} controls the
8903 flags given to the C compiler by the implicit rule for C compilation.
8904 @iftex
8905 @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
8906 @end iftex
8908 You can define your own implicit rules by writing @dfn{pattern rules}.
8909 @iftex
8910 @xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.
8911 @end iftex
8913 @dfn{Suffix rules} are a more limited way to define implicit rules.
8914 Pattern rules are more general and clearer, but suffix rules are
8915 retained for compatibility.
8916 @iftex
8917 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
8918 @end iftex
8920 @menu
8921 * Using Implicit::              How to use an existing implicit rule
8922                                   to get the recipes for updating a file.
8923 * Catalogue of Rules::          A list of built-in implicit rules.
8924 * Implicit Variables::          How to change what predefined rules do.
8925 * Chained Rules::               How to use a chain of implicit rules.
8926 * Pattern Rules::               How to define new implicit rules.
8927 * Last Resort::                 How to define a recipe for rules which
8928                                   cannot find any.
8929 * Suffix Rules::                The old-fashioned style of implicit rule.
8930 * Implicit Rule Search::        The precise algorithm for applying
8931                                   implicit rules.
8932 @end menu
8934 @node Using Implicit, Catalogue of Rules, Implicit Rules, Implicit Rules
8935 @section Using Implicit Rules
8936 @cindex implicit rule, how to use
8937 @cindex rule, implicit, how to use
8939 To allow @code{make} to find a customary method for updating a target
8940 file, all you have to do is refrain from specifying recipes yourself.
8941 Either write a rule with no recipe, or don't write a rule at all.
8942 Then @code{make} will figure out which implicit rule to use based on
8943 which kind of source file exists or can be made.
8945 For example, suppose the makefile looks like this:
8947 @example
8948 foo : foo.o bar.o
8949         cc -o foo foo.o bar.o $(CFLAGS) $(LDFLAGS)
8950 @end example
8952 @noindent
8953 Because you mention @file{foo.o} but do not give a rule for it, @code{make}
8954 will automatically look for an implicit rule that tells how to update it.
8955 This happens whether or not the file @file{foo.o} currently exists.
8957 If an implicit rule is found, it can supply both a recipe and one or
8958 more prerequisites (the source files).  You would want to write a rule
8959 for @file{foo.o} with no recipe if you need to specify additional
8960 prerequisites, such as header files, that the implicit rule cannot
8961 supply.
8963 Each implicit rule has a target pattern and prerequisite patterns.  There may
8964 be many implicit rules with the same target pattern.  For example, numerous
8965 rules make @samp{.o} files: one, from a @samp{.c} file with the C compiler;
8966 another, from a @samp{.p} file with the Pascal compiler; and so on.  The rule
8967 that actually applies is the one whose prerequisites exist or can be made.
8968 So, if you have a file @file{foo.c}, @code{make} will run the C compiler;
8969 otherwise, if you have a file @file{foo.p}, @code{make} will run the Pascal
8970 compiler; and so on.
8972 Of course, when you write the makefile, you know which implicit rule you
8973 want @code{make} to use, and you know it will choose that one because you
8974 know which possible prerequisite files are supposed to exist.
8975 @xref{Catalogue of Rules, ,Catalogue of Implicit Rules},
8976 for a catalogue of all the predefined implicit rules.
8978 Above, we said an implicit rule applies if the required prerequisites ``exist
8979 or can be made''.  A file ``can be made'' if it is mentioned explicitly in
8980 the makefile as a target or a prerequisite, or if an implicit rule can be
8981 recursively found for how to make it.  When an implicit prerequisite is the
8982 result of another implicit rule, we say that @dfn{chaining} is occurring.
8983 @xref{Chained Rules, ,Chains of Implicit Rules}.
8985 In general, @code{make} searches for an implicit rule for each target, and
8986 for each double-colon rule, that has no recipe.  A file that is mentioned
8987 only as a prerequisite is considered a target whose rule specifies nothing,
8988 so implicit rule search happens for it.  @xref{Implicit Rule Search, ,Implicit Rule Search Algorithm}, for the
8989 details of how the search is done.
8991 Note that explicit prerequisites do not influence implicit rule search.
8992 For example, consider this explicit rule:
8994 @example
8995 foo.o: foo.p
8996 @end example
8998 @noindent
8999 The prerequisite on @file{foo.p} does not necessarily mean that
9000 @code{make} will remake @file{foo.o} according to the implicit rule to
9001 make an object file, a @file{.o} file, from a Pascal source file, a
9002 @file{.p} file.  For example, if @file{foo.c} also exists, the implicit
9003 rule to make an object file from a C source file is used instead,
9004 because it appears before the Pascal rule in the list of predefined
9005 implicit rules (@pxref{Catalogue of Rules, , Catalogue of Implicit
9006 Rules}).
9008 If you do not want an implicit rule to be used for a target that has no
9009 recipe, you can give that target an empty recipe by writing a semicolon
9010 (@pxref{Empty Recipes, ,Defining Empty Recipes}).
9012 @node Catalogue of Rules, Implicit Variables, Using Implicit, Implicit Rules
9013 @section Catalogue of Implicit Rules
9014 @cindex implicit rule, predefined
9015 @cindex rule, implicit, predefined
9017 Here is a catalogue of predefined implicit rules which are always
9018 available unless the makefile explicitly overrides or cancels them.
9019 @xref{Canceling Rules, ,Canceling Implicit Rules}, for information on
9020 canceling or overriding an implicit rule.  The @samp{-r} or
9021 @samp{--no-builtin-rules} option cancels all predefined rules.
9023 This manual only documents the default rules available on POSIX-based
9024 operating systems.  Other operating systems, such as VMS, Windows,
9025 OS/2, etc. may have different sets of default rules.  To see the full
9026 list of default rules and variables available in your version of GNU
9027 @code{make}, run @samp{make -p} in a directory with no makefile.
9029 Not all of these rules will always be defined, even when the @samp{-r}
9030 option is not given.  Many of the predefined implicit rules are
9031 implemented in @code{make} as suffix rules, so which ones will be
9032 defined depends on the @dfn{suffix list} (the list of prerequisites of
9033 the special target @code{.SUFFIXES}).  The default suffix list is:
9034 @code{.out}, @code{.a}, @code{.ln}, @code{.o}, @code{.c}, @code{.cc},
9035 @code{.C}, @code{.cpp}, @code{.p}, @code{.f}, @code{.F}, @code{.m},
9036 @code{.r}, @code{.y}, @code{.l}, @code{.ym}, @code{.lm}, @code{.s},
9037 @code{.S}, @code{.mod}, @code{.sym}, @code{.def}, @code{.h},
9038 @code{.info}, @code{.dvi}, @code{.tex}, @code{.texinfo}, @code{.texi},
9039 @code{.txinfo}, @code{.w}, @code{.ch} @code{.web}, @code{.sh},
9040 @code{.elc}, @code{.el}.  All of the implicit rules described below
9041 whose prerequisites have one of these suffixes are actually suffix
9042 rules.  If you modify the suffix list, the only predefined suffix
9043 rules in effect will be those named by one or two of the suffixes that
9044 are on the list you specify; rules whose suffixes fail to be on the
9045 list are disabled.  @xref{Suffix Rules, ,Old-Fashioned Suffix Rules},
9046 for full details on suffix rules.
9048 @table @asis
9049 @item Compiling C programs
9050 @cindex C, rule to compile
9051 @pindex cc
9052 @pindex gcc
9053 @pindex .o
9054 @pindex .c
9055 @file{@var{n}.o} is made automatically from @file{@var{n}.c} with
9056 a recipe of the form @samp{$(CC) $(CPPFLAGS) $(CFLAGS) -c}.@refill
9058 @item Compiling C++ programs
9059 @cindex C++, rule to compile
9060 @pindex g++
9061 @pindex .cc
9062 @pindex .cpp
9063 @pindex .C
9064 @file{@var{n}.o} is made automatically from @file{@var{n}.cc},
9065 @file{@var{n}.cpp}, or @file{@var{n}.C} with a recipe of the form
9066 @samp{$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c}.  We encourage you to use the
9067 suffix @samp{.cc} for C++ source files instead of @samp{.C}.@refill
9069 @item Compiling Pascal programs
9070 @cindex Pascal, rule to compile
9071 @pindex pc
9072 @pindex .p
9073 @file{@var{n}.o} is made automatically from @file{@var{n}.p}
9074 with the recipe @samp{$(PC) $(PFLAGS) -c}.@refill
9076 @item Compiling Fortran and Ratfor programs
9077 @cindex Fortran, rule to compile
9078 @cindex Ratfor, rule to compile
9079 @pindex f77
9080 @pindex .f
9081 @pindex .r
9082 @pindex .F
9083 @file{@var{n}.o} is made automatically from @file{@var{n}.r},
9084 @file{@var{n}.F} or @file{@var{n}.f} by running the
9085 Fortran compiler.  The precise recipe used is as follows:@refill
9087 @table @samp
9088 @item .f
9089 @samp{$(FC) $(FFLAGS) -c}.
9090 @item .F
9091 @samp{$(FC) $(FFLAGS) $(CPPFLAGS) -c}.
9092 @item .r
9093 @samp{$(FC) $(FFLAGS) $(RFLAGS) -c}.
9094 @end table
9096 @item Preprocessing Fortran and Ratfor programs
9097 @file{@var{n}.f} is made automatically from @file{@var{n}.r} or
9098 @file{@var{n}.F}.  This rule runs just the preprocessor to convert a
9099 Ratfor or preprocessable Fortran program into a strict Fortran
9100 program.  The precise recipe used is as follows:@refill
9102 @table @samp
9103 @item .F
9104 @samp{$(FC) $(CPPFLAGS) $(FFLAGS) -F}.
9105 @item .r
9106 @samp{$(FC) $(FFLAGS) $(RFLAGS) -F}.
9107 @end table
9109 @item Compiling Modula-2 programs
9110 @cindex Modula-2, rule to compile
9111 @pindex m2c
9112 @pindex .sym
9113 @pindex .def
9114 @pindex .mod
9115 @file{@var{n}.sym} is made from @file{@var{n}.def} with a recipe
9116 of the form @samp{$(M2C) $(M2FLAGS) $(DEFFLAGS)}.  @file{@var{n}.o}
9117 is made from @file{@var{n}.mod}; the form is:
9118 @w{@samp{$(M2C) $(M2FLAGS) $(MODFLAGS)}}.@refill
9120 @need 1200
9121 @item Assembling and preprocessing assembler programs
9122 @cindex assembly, rule to compile
9123 @pindex as
9124 @pindex .s
9125 @file{@var{n}.o} is made automatically from @file{@var{n}.s} by
9126 running the assembler, @code{as}.  The precise recipe is
9127 @samp{$(AS) $(ASFLAGS)}.@refill
9129 @pindex .S
9130 @file{@var{n}.s} is made automatically from @file{@var{n}.S} by
9131 running the C preprocessor, @code{cpp}.  The precise recipe is
9132 @w{@samp{$(CPP) $(CPPFLAGS)}}.
9134 @item Linking a single object file
9135 @cindex linking, predefined rule for
9136 @pindex ld
9137 @pindex .o
9138 @file{@var{n}} is made automatically from @file{@var{n}.o} by running
9139 the linker (usually called @code{ld}) via the C compiler.  The precise
9140 recipe used is @w{@samp{$(CC) $(LDFLAGS) @var{n}.o $(LOADLIBES) $(LDLIBS)}}.
9142 This rule does the right thing for a simple program with only one
9143 source file.  It will also do the right thing if there are multiple
9144 object files (presumably coming from various other source files), one
9145 of which has a name matching that of the executable file.  Thus,
9147 @example
9148 x: y.o z.o
9149 @end example
9151 @noindent
9152 when @file{x.c}, @file{y.c} and @file{z.c} all exist will execute:
9154 @example
9155 @group
9156 cc -c x.c -o x.o
9157 cc -c y.c -o y.o
9158 cc -c z.c -o z.o
9159 cc x.o y.o z.o -o x
9160 rm -f x.o
9161 rm -f y.o
9162 rm -f z.o
9163 @end group
9164 @end example
9166 @noindent
9167 In more complicated cases, such as when there is no object file whose
9168 name derives from the executable file name, you must write an explicit
9169 recipe for linking.
9171 Each kind of file automatically made into @samp{.o} object files will
9172 be automatically linked by using the compiler (@samp{$(CC)},
9173 @samp{$(FC)} or @samp{$(PC)}; the C compiler @samp{$(CC)} is used to
9174 assemble @samp{.s} files) without the @samp{-c} option.  This could be
9175 done by using the @samp{.o} object files as intermediates, but it is
9176 faster to do the compiling and linking in one step, so that's how it's
9177 done.@refill
9179 @item Yacc for C programs
9180 @pindex yacc
9181 @cindex Yacc, rule to run
9182 @pindex .y
9183 @file{@var{n}.c} is made automatically from @file{@var{n}.y} by
9184 running Yacc with the recipe @samp{$(YACC) $(YFLAGS)}.
9186 @item Lex for C programs
9187 @pindex lex
9188 @cindex Lex, rule to run
9189 @pindex .l
9190 @file{@var{n}.c} is made automatically from @file{@var{n}.l} by
9191 running Lex.  The actual recipe is @samp{$(LEX) $(LFLAGS)}.
9193 @item Lex for Ratfor programs
9194 @file{@var{n}.r} is made automatically from @file{@var{n}.l} by
9195 running Lex.  The actual recipe is @samp{$(LEX) $(LFLAGS)}.
9197 The convention of using the same suffix @samp{.l} for all Lex files
9198 regardless of whether they produce C code or Ratfor code makes it
9199 impossible for @code{make} to determine automatically which of the two
9200 languages you are using in any particular case.  If @code{make} is
9201 called upon to remake an object file from a @samp{.l} file, it must
9202 guess which compiler to use.  It will guess the C compiler, because
9203 that is more common.  If you are using Ratfor, make sure @code{make}
9204 knows this by mentioning @file{@var{n}.r} in the makefile.  Or, if you
9205 are using Ratfor exclusively, with no C files, remove @samp{.c} from
9206 the list of implicit rule suffixes with:@refill
9208 @example
9209 @group
9210 .SUFFIXES:
9211 .SUFFIXES: .o .r .f .l @dots{}
9212 @end group
9213 @end example
9215 @item Making Lint Libraries from C, Yacc, or Lex programs
9216 @pindex lint
9217 @cindex @code{lint}, rule to run
9218 @pindex .ln
9219 @file{@var{n}.ln} is made from @file{@var{n}.c} by running @code{lint}.
9220 The precise recipe is @w{@samp{$(LINT) $(LINTFLAGS) $(CPPFLAGS) -i}}.
9221 The same recipe is used on the C code produced from
9222 @file{@var{n}.y} or @file{@var{n}.l}.@refill
9224 @item @TeX{} and Web
9225 @cindex @TeX{}, rule to run
9226 @cindex Web, rule to run
9227 @pindex tex
9228 @pindex cweave
9229 @pindex weave
9230 @pindex tangle
9231 @pindex ctangle
9232 @pindex .dvi
9233 @pindex .tex
9234 @pindex .web
9235 @pindex .w
9236 @pindex .ch
9237 @file{@var{n}.dvi} is made from @file{@var{n}.tex} with the recipe
9238 @samp{$(TEX)}.  @file{@var{n}.tex} is made from @file{@var{n}.web} with
9239 @samp{$(WEAVE)}, or from @file{@var{n}.w} (and from @file{@var{n}.ch} if
9240 it exists or can be made) with @samp{$(CWEAVE)}.  @file{@var{n}.p} is
9241 made from @file{@var{n}.web} with @samp{$(TANGLE)} and @file{@var{n}.c}
9242 is made from @file{@var{n}.w} (and from @file{@var{n}.ch} if it exists
9243 or can be made) with @samp{$(CTANGLE)}.@refill
9245 @item Texinfo and Info
9246 @cindex Texinfo, rule to format
9247 @cindex Info, rule to format
9248 @pindex texi2dvi
9249 @pindex makeinfo
9250 @pindex .texinfo
9251 @pindex .info
9252 @pindex .texi
9253 @pindex .txinfo
9254 @file{@var{n}.dvi} is made from @file{@var{n}.texinfo},
9255 @file{@var{n}.texi}, or @file{@var{n}.txinfo}, with the recipe
9256 @w{@samp{$(TEXI2DVI) $(TEXI2DVI_FLAGS)}}.  @file{@var{n}.info} is made from
9257 @file{@var{n}.texinfo}, @file{@var{n}.texi}, or @file{@var{n}.txinfo}, with
9258 the recipe @w{@samp{$(MAKEINFO) $(MAKEINFO_FLAGS)}}.
9260 @item RCS
9261 @cindex RCS, rule to extract from
9262 @pindex co
9263 @pindex ,v @r{(RCS file extension)}
9264 Any file @file{@var{n}} is extracted if necessary from an RCS file
9265 named either @file{@var{n},v} or @file{RCS/@var{n},v}.  The precise
9266 recipe used is @w{@samp{$(CO) $(COFLAGS)}}.  @file{@var{n}} will not be
9267 extracted from RCS if it already exists, even if the RCS file is
9268 newer.  The rules for RCS are terminal
9269 (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}),
9270 so RCS files cannot be generated from another source; they must
9271 actually exist.@refill
9273 @item SCCS
9274 @cindex SCCS, rule to extract from
9275 @pindex get
9276 @pindex s. @r{(SCCS file prefix)}
9277 Any file @file{@var{n}} is extracted if necessary from an SCCS file
9278 named either @file{s.@var{n}} or @file{SCCS/s.@var{n}}.  The precise
9279 recipe used is @w{@samp{$(GET) $(GFLAGS)}}.  The rules for SCCS are
9280 terminal (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}),
9281 so SCCS files cannot be generated from another source; they must
9282 actually exist.@refill
9284 @pindex .sh
9285 For the benefit of SCCS, a file @file{@var{n}} is copied from
9286 @file{@var{n}.sh} and made executable (by everyone).  This is for
9287 shell scripts that are checked into SCCS.  Since RCS preserves the
9288 execution permission of a file, you do not need to use this feature
9289 with RCS.@refill
9291 We recommend that you avoid using of SCCS.  RCS is widely held to be
9292 superior, and is also free.  By choosing free software in place of
9293 comparable (or inferior) proprietary software, you support the free
9294 software movement.
9295 @end table
9297 Usually, you want to change only the variables listed in the table
9298 above, which are documented in the following section.
9300 However, the recipes in built-in implicit rules actually use
9301 variables such as @code{COMPILE.c}, @code{LINK.p}, and
9302 @code{PREPROCESS.S}, whose values contain the recipes listed above.
9304 @code{make} follows the convention that the rule to compile a
9305 @file{.@var{x}} source file uses the variable @code{COMPILE.@var{x}}.
9306 Similarly, the rule to produce an executable from a @file{.@var{x}}
9307 file uses @code{LINK.@var{x}}; and the rule to preprocess a
9308 @file{.@var{x}} file uses @code{PREPROCESS.@var{x}}.
9310 @vindex OUTPUT_OPTION
9311 Every rule that produces an object file uses the variable
9312 @code{OUTPUT_OPTION}.  @code{make} defines this variable either to
9313 contain @samp{-o $@@}, or to be empty, depending on a compile-time
9314 option.  You need the @samp{-o} option to ensure that the output goes
9315 into the right file when the source file is in a different directory,
9316 as when using @code{VPATH} (@pxref{Directory Search}).  However,
9317 compilers on some systems do not accept a @samp{-o} switch for object
9318 files.  If you use such a system, and use @code{VPATH}, some
9319 compilations will put their output in the wrong place.
9320 A possible workaround for this problem is to give @code{OUTPUT_OPTION}
9321 the value @w{@samp{; mv $*.o $@@}}.
9323 @node Implicit Variables, Chained Rules, Catalogue of Rules, Implicit Rules
9324 @section Variables Used by Implicit Rules
9325 @cindex flags for compilers
9327 The recipes in built-in implicit rules make liberal use of certain
9328 predefined variables.  You can alter the values of these variables in
9329 the makefile, with arguments to @code{make}, or in the environment to
9330 alter how the implicit rules work without redefining the rules
9331 themselves.  You can cancel all variables used by implicit rules with
9332 the @samp{-R} or @samp{--no-builtin-variables} option.
9334 For example, the recipe used to compile a C source file actually says
9335 @samp{$(CC) -c $(CFLAGS) $(CPPFLAGS)}.  The default values of the variables
9336 used are @samp{cc} and nothing, resulting in the command @samp{cc -c}.  By
9337 redefining @samp{CC} to @samp{ncc}, you could cause @samp{ncc} to be
9338 used for all C compilations performed by the implicit rule.  By redefining
9339 @samp{CFLAGS} to be @samp{-g}, you could pass the @samp{-g} option to
9340 each compilation.  @emph{All} implicit rules that do C compilation use
9341 @samp{$(CC)} to get the program name for the compiler and @emph{all}
9342 include @samp{$(CFLAGS)} among the arguments given to the compiler.@refill
9344 The variables used in implicit rules fall into two classes: those that are
9345 names of programs (like @code{CC}) and those that contain arguments for the
9346 programs (like @code{CFLAGS}).  (The ``name of a program'' may also contain
9347 some command arguments, but it must start with an actual executable program
9348 name.)  If a variable value contains more than one argument, separate them
9349 with spaces.
9351 The following tables describe of some of the more commonly-used predefined
9352 variables.  This list is not exhaustive, and the default values shown here may
9353 not be what @code{make} selects for your environment.  To see the
9354 complete list of predefined variables for your instance of GNU @code{make} you
9355 can run @samp{make -p} in a directory with no makefiles.
9357 Here is a table of some of the more common variables used as names of
9358 programs in built-in rules:
9360 @table @code
9361 @item AR
9362 @vindex AR
9363 Archive-maintaining program; default @samp{ar}.
9364 @pindex ar
9366 @item AS
9367 @vindex AS
9368 Program for compiling assembly files; default @samp{as}.
9369 @pindex as
9371 @item CC
9372 @vindex CC
9373 Program for compiling C programs; default @samp{cc}.
9374 @pindex cc
9376 @item CXX
9377 @vindex CXX
9378 Program for compiling C++ programs; default @samp{g++}.
9379 @pindex g++
9381 @item CPP
9382 @vindex CPP
9383 Program for running the C preprocessor, with results to standard output;
9384 default @samp{$(CC) -E}.
9386 @item FC
9387 @vindex FC
9388 Program for compiling or preprocessing Fortran and Ratfor programs;
9389 default @samp{f77}.
9390 @pindex f77
9392 @item M2C
9393 @vindex M2C
9394 Program to use to compile Modula-2 source code; default @samp{m2c}.
9395 @pindex m2c
9397 @item PC
9398 @vindex PC
9399 Program for compiling Pascal programs; default @samp{pc}.
9400 @pindex pc
9402 @item CO
9403 @vindex CO
9404 Program for extracting a file from RCS; default @samp{co}.
9405 @pindex co
9407 @item GET
9408 @vindex GET
9409 Program for extracting a file from SCCS; default @samp{get}.
9410 @pindex get
9412 @item LEX
9413 @vindex LEX
9414 Program to use to turn Lex grammars into source code; default @samp{lex}.
9415 @pindex lex
9417 @item YACC
9418 @vindex YACC
9419 Program to use to turn Yacc grammars into source code; default @samp{yacc}.
9420 @pindex yacc
9422 @item LINT
9423 @vindex LINT
9424 Program to use to run lint on source code; default @samp{lint}.
9425 @pindex lint
9427 @item MAKEINFO
9428 @vindex MAKEINFO
9429 Program to convert a Texinfo source file into an Info file; default
9430 @samp{makeinfo}.
9431 @pindex makeinfo
9433 @item TEX
9434 @vindex TEX
9435 Program to make @TeX{} @sc{dvi} files from @TeX{} source;
9436 default @samp{tex}.
9437 @pindex tex
9439 @item TEXI2DVI
9440 @vindex TEXI2DVI
9441 Program to make @TeX{} @sc{dvi} files from Texinfo source;
9442 default @samp{texi2dvi}.
9443 @pindex texi2dvi
9445 @item WEAVE
9446 @vindex WEAVE
9447 Program to translate Web into @TeX{}; default @samp{weave}.
9448 @pindex weave
9450 @item CWEAVE
9451 @vindex CWEAVE
9452 Program to translate C Web into @TeX{}; default @samp{cweave}.
9453 @pindex cweave
9455 @item TANGLE
9456 @vindex TANGLE
9457 Program to translate Web into Pascal; default @samp{tangle}.
9458 @pindex tangle
9460 @item CTANGLE
9461 @vindex CTANGLE
9462 Program to translate C Web into C; default @samp{ctangle}.
9463 @pindex ctangle
9465 @item RM
9466 @vindex RM
9467 Command to remove a file; default @samp{rm -f}.
9468 @pindex rm
9469 @end table
9471 Here is a table of variables whose values are additional arguments for the
9472 programs above.  The default values for all of these is the empty
9473 string, unless otherwise noted.
9475 @table @code
9476 @item ARFLAGS
9477 @vindex ARFLAGS
9478 Flags to give the archive-maintaining program; default @samp{rv}.
9480 @item ASFLAGS
9481 @vindex ASFLAGS
9482 Extra flags to give to the assembler (when explicitly
9483 invoked on a @samp{.s} or @samp{.S} file).
9485 @item CFLAGS
9486 @vindex CFLAGS
9487 Extra flags to give to the C compiler.
9489 @item CXXFLAGS
9490 @vindex CXXFLAGS
9491 Extra flags to give to the C++ compiler.
9493 @item COFLAGS
9494 @vindex COFLAGS
9495 Extra flags to give to the RCS @code{co} program.
9497 @item CPPFLAGS
9498 @vindex CPPFLAGS
9499 Extra flags to give to the C preprocessor and programs
9500 that use it (the C and Fortran compilers).
9502 @item FFLAGS
9503 @vindex FFLAGS
9504 Extra flags to give to the Fortran compiler.
9506 @item GFLAGS
9507 @vindex GFLAGS
9508 Extra flags to give to the SCCS @code{get} program.
9510 @item LDFLAGS
9511 @vindex LDFLAGS
9512 Extra flags to give to compilers when they are supposed to invoke the linker,
9513 @samp{ld}.
9515 @item LDLIBS
9516 @vindex LDLIBS
9517 @vindex LOADLIBES
9518 Library flags or names given to compilers when they are supposed to
9519 invoke the linker, @samp{ld}.  @code{LOADLIBES} is a deprecated (but
9520 still supported) alternative to @code{LDLIBS}.
9522 @item LFLAGS
9523 @vindex LFLAGS
9524 Extra flags to give to Lex.
9526 @item YFLAGS
9527 @vindex YFLAGS
9528 Extra flags to give to Yacc.
9530 @item PFLAGS
9531 @vindex PFLAGS
9532 Extra flags to give to the Pascal compiler.
9534 @item RFLAGS
9535 @vindex RFLAGS
9536 Extra flags to give to the Fortran compiler for Ratfor programs.
9538 @item LINTFLAGS
9539 @vindex LINTFLAGS
9540 Extra flags to give to lint.
9541 @end table
9543 @node Chained Rules, Pattern Rules, Implicit Variables, Implicit Rules
9544 @section Chains of Implicit Rules
9546 @cindex chains of rules
9547 @cindex rule, implicit, chains of
9548 Sometimes a file can be made by a sequence of implicit rules.  For example,
9549 a file @file{@var{n}.o} could be made from @file{@var{n}.y} by running
9550 first Yacc and then @code{cc}.  Such a sequence is called a @dfn{chain}.
9552 If the file @file{@var{n}.c} exists, or is mentioned in the makefile, no
9553 special searching is required: @code{make} finds that the object file can
9554 be made by C compilation from @file{@var{n}.c}; later on, when considering
9555 how to make @file{@var{n}.c}, the rule for running Yacc is
9556 used.  Ultimately both @file{@var{n}.c} and @file{@var{n}.o} are
9557 updated.@refill
9559 @cindex intermediate files
9560 @cindex files, intermediate
9561 However, even if @file{@var{n}.c} does not exist and is not mentioned,
9562 @code{make} knows how to envision it as the missing link between
9563 @file{@var{n}.o} and @file{@var{n}.y}!  In this case, @file{@var{n}.c} is
9564 called an @dfn{intermediate file}.  Once @code{make} has decided to use the
9565 intermediate file, it is entered in the data base as if it had been
9566 mentioned in the makefile, along with the implicit rule that says how to
9567 create it.@refill
9569 Intermediate files are remade using their rules just like all other
9570 files.  But intermediate files are treated differently in two ways.
9572 The first difference is what happens if the intermediate file does not
9573 exist.  If an ordinary file @var{b} does not exist, and @code{make}
9574 considers a target that depends on @var{b}, it invariably creates
9575 @var{b} and then updates the target from @var{b}.  But if @var{b} is an
9576 intermediate file, then @code{make} can leave well enough alone.  It
9577 won't bother updating @var{b}, or the ultimate target, unless some
9578 prerequisite of @var{b} is newer than that target or there is some other
9579 reason to update that target.
9581 The second difference is that if @code{make} @emph{does} create @var{b}
9582 in order to update something else, it deletes @var{b} later on after it
9583 is no longer needed.  Therefore, an intermediate file which did not
9584 exist before @code{make} also does not exist after @code{make}.
9585 @code{make} reports the deletion to you by printing a @samp{rm -f}
9586 command showing which file it is deleting.
9588 Ordinarily, a file cannot be intermediate if it is mentioned in the
9589 makefile as a target or prerequisite.  However, you can explicitly mark a
9590 file as intermediate by listing it as a prerequisite of the special target
9591 @code{.INTERMEDIATE}.  This takes effect even if the file is mentioned
9592 explicitly in some other way.
9594 @cindex intermediate files, preserving
9595 @cindex preserving intermediate files
9596 @cindex secondary files
9597 You can prevent automatic deletion of an intermediate file by marking it
9598 as a @dfn{secondary} file.  To do this, list it as a prerequisite of the
9599 special target @code{.SECONDARY}.  When a file is secondary, @code{make}
9600 will not create the file merely because it does not already exist, but
9601 @code{make} does not automatically delete the file.  Marking a file as
9602 secondary also marks it as intermediate.
9604 You can list the target pattern of an implicit rule (such as @samp{%.o})
9605 as a prerequisite of the special target @code{.PRECIOUS} to preserve
9606 intermediate files made by implicit rules whose target patterns match
9607 that file's name; see @ref{Interrupts}.@refill
9608 @cindex preserving with @code{.PRECIOUS}
9609 @cindex @code{.PRECIOUS} intermediate files
9611 A chain can involve more than two implicit rules.  For example, it is
9612 possible to make a file @file{foo} from @file{RCS/foo.y,v} by running RCS,
9613 Yacc and @code{cc}.  Then both @file{foo.y} and @file{foo.c} are
9614 intermediate files that are deleted at the end.@refill
9616 No single implicit rule can appear more than once in a chain.  This means
9617 that @code{make} will not even consider such a ridiculous thing as making
9618 @file{foo} from @file{foo.o.o} by running the linker twice.  This
9619 constraint has the added benefit of preventing any infinite loop in the
9620 search for an implicit rule chain.
9622 There are some special implicit rules to optimize certain cases that would
9623 otherwise be handled by rule chains.  For example, making @file{foo} from
9624 @file{foo.c} could be handled by compiling and linking with separate
9625 chained rules, using @file{foo.o} as an intermediate file.  But what
9626 actually happens is that a special rule for this case does the compilation
9627 and linking with a single @code{cc} command.  The optimized rule is used in
9628 preference to the step-by-step chain because it comes earlier in the
9629 ordering of rules.
9631 @node Pattern Rules, Last Resort, Chained Rules, Implicit Rules
9632 @section Defining and Redefining Pattern Rules
9634 You define an implicit rule by writing a @dfn{pattern rule}.  A pattern
9635 rule looks like an ordinary rule, except that its target contains the
9636 character @samp{%} (exactly one of them).  The target is considered a
9637 pattern for matching file names; the @samp{%} can match any nonempty
9638 substring, while other characters match only themselves.  The prerequisites
9639 likewise use @samp{%} to show how their names relate to the target name.
9641 Thus, a pattern rule @samp{%.o : %.c} says how to make any file
9642 @file{@var{stem}.o} from another file @file{@var{stem}.c}.@refill
9644 Note that expansion using @samp{%} in pattern rules occurs
9645 @strong{after} any variable or function expansions, which take place
9646 when the makefile is read.  @xref{Using Variables, , How to Use
9647 Variables}, and @ref{Functions, ,Functions for Transforming Text}.
9649 @menu
9650 * Pattern Intro::               An introduction to pattern rules.
9651 * Pattern Examples::            Examples of pattern rules.
9652 * Automatic Variables::         How to use automatic variables in the
9653                                   recipe of implicit rules.
9654 * Pattern Match::               How patterns match.
9655 * Match-Anything Rules::        Precautions you should take prior to
9656                                   defining rules that can match any
9657                                   target file whatever.
9658 * Canceling Rules::             How to override or cancel built-in rules.
9659 @end menu
9661 @node Pattern Intro, Pattern Examples, Pattern Rules, Pattern Rules
9662 @subsection Introduction to Pattern Rules
9663 @cindex pattern rule
9664 @cindex rule, pattern
9666 A pattern rule contains the character @samp{%} (exactly one of them)
9667 in the target; otherwise, it looks exactly like an ordinary rule.  The
9668 target is a pattern for matching file names; the @samp{%} matches any
9669 nonempty substring, while other characters match only themselves.
9670 @cindex target pattern, implicit
9671 @cindex @code{%}, in pattern rules
9673 For example, @samp{%.c} as a pattern matches any file name that ends in
9674 @samp{.c}.  @samp{s.%.c} as a pattern matches any file name that starts
9675 with @samp{s.}, ends in @samp{.c} and is at least five characters long.
9676 (There must be at least one character to match the @samp{%}.)  The substring
9677 that the @samp{%} matches is called the @dfn{stem}.@refill
9679 @samp{%} in a prerequisite of a pattern rule stands for the same stem
9680 that was matched by the @samp{%} in the target.  In order for the
9681 pattern rule to apply, its target pattern must match the file name
9682 under consideration and all of its prerequisites (after pattern
9683 substitution) must name files that exist or can be made.  These files
9684 become prerequisites of the target.
9685 @cindex prerequisite pattern, implicit
9687 Thus, a rule of the form
9689 @example
9690 %.o : %.c ; @var{recipe}@dots{}
9691 @end example
9693 @noindent
9694 specifies how to make a file @file{@var{n}.o}, with another file
9695 @file{@var{n}.c} as its prerequisite, provided that @file{@var{n}.c}
9696 exists or can be made.
9698 There may also be prerequisites that do not use @samp{%}; such a prerequisite
9699 attaches to every file made by this pattern rule.  These unvarying
9700 prerequisites are useful occasionally.
9702 A pattern rule need not have any prerequisites that contain @samp{%}, or
9703 in fact any prerequisites at all.  Such a rule is effectively a general
9704 wildcard.  It provides a way to make any file that matches the target
9705 pattern.  @xref{Last Resort}.
9707 More than one pattern rule may match a target.  In this case
9708 @code{make} will choose the ``best fit'' rule.  @xref{Pattern Match,
9709 ,How Patterns Match}.
9711 @c !!! The end of of this paragraph should be rewritten.  --bob
9712 Pattern rules may have more than one target.  Unlike normal rules,
9713 this does not act as many different rules with the same prerequisites
9714 and recipe.  If a pattern rule has multiple targets, @code{make} knows
9715 that the rule's recipe is responsible for making all of the targets.
9716 The recipe is executed only once to make all the targets.  When
9717 searching for a pattern rule to match a target, the target patterns of
9718 a rule other than the one that matches the target in need of a rule
9719 are incidental: @code{make} worries only about giving a recipe and
9720 prerequisites to the file presently in question.  However, when this
9721 file's recipe is run, the other targets are marked as having been
9722 updated themselves.
9723 @cindex multiple targets, in pattern rule
9724 @cindex target, multiple in pattern rule
9726 @node Pattern Examples, Automatic Variables, Pattern Intro, Pattern Rules
9727 @subsection Pattern Rule Examples
9729 Here are some examples of pattern rules actually predefined in
9730 @code{make}.  First, the rule that compiles @samp{.c} files into @samp{.o}
9731 files:@refill
9733 @example
9734 %.o : %.c
9735         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@@
9736 @end example
9738 @noindent
9739 defines a rule that can make any file @file{@var{x}.o} from
9740 @file{@var{x}.c}.  The recipe uses the automatic variables @samp{$@@} and
9741 @samp{$<} to substitute the names of the target file and the source file
9742 in each case where the rule applies (@pxref{Automatic Variables}).@refill
9744 Here is a second built-in rule:
9746 @example
9747 % :: RCS/%,v
9748         $(CO) $(COFLAGS) $<
9749 @end example
9751 @noindent
9752 defines a rule that can make any file @file{@var{x}} whatsoever from a
9753 corresponding file @file{@var{x},v} in the sub-directory @file{RCS}.  Since
9754 the target is @samp{%}, this rule will apply to any file whatever, provided
9755 the appropriate prerequisite file exists.  The double colon makes the rule
9756 @dfn{terminal}, which means that its prerequisite may not be an intermediate
9757 file (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}).@refill
9759 @need 500
9760 This pattern rule has two targets:
9762 @example
9763 @group
9764 %.tab.c %.tab.h: %.y
9765         bison -d $<
9766 @end group
9767 @end example
9769 @noindent
9770 @c The following paragraph is rewritten to avoid overfull hboxes
9771 This tells @code{make} that the recipe @samp{bison -d @var{x}.y} will
9772 make both @file{@var{x}.tab.c} and @file{@var{x}.tab.h}.  If the file
9773 @file{foo} depends on the files @file{parse.tab.o} and @file{scan.o}
9774 and the file @file{scan.o} depends on the file @file{parse.tab.h},
9775 when @file{parse.y} is changed, the recipe @samp{bison -d parse.y}
9776 will be executed only once, and the prerequisites of both
9777 @file{parse.tab.o} and @file{scan.o} will be satisfied.  (Presumably
9778 the file @file{parse.tab.o} will be recompiled from @file{parse.tab.c}
9779 and the file @file{scan.o} from @file{scan.c}, while @file{foo} is
9780 linked from @file{parse.tab.o}, @file{scan.o}, and its other
9781 prerequisites, and it will execute happily ever after.)@refill
9783 @node Automatic Variables, Pattern Match, Pattern Examples, Pattern Rules
9784 @subsection Automatic Variables
9785 @cindex automatic variables
9786 @cindex variables, automatic
9787 @cindex variables, and implicit rule
9789 Suppose you are writing a pattern rule to compile a @samp{.c} file into a
9790 @samp{.o} file: how do you write the @samp{cc} command so that it operates
9791 on the right source file name?  You cannot write the name in the recipe,
9792 because the name is different each time the implicit rule is applied.
9794 What you do is use a special feature of @code{make}, the @dfn{automatic
9795 variables}.  These variables have values computed afresh for each rule that
9796 is executed, based on the target and prerequisites of the rule.  In this
9797 example, you would use @samp{$@@} for the object file name and @samp{$<}
9798 for the source file name.
9800 @cindex automatic variables in prerequisites
9801 @cindex prerequisites, and automatic variables
9802 It's very important that you recognize the limited scope in which
9803 automatic variable values are available: they only have values within
9804 the recipe.  In particular, you cannot use them anywhere
9805 within the target list of a rule; they have no value there and will
9806 expand to the empty string.  Also, they cannot be accessed directly
9807 within the prerequisite list of a rule.  A common mistake is
9808 attempting to use @code{$@@} within the prerequisites list; this will
9809 not work.  However, there is a special feature of GNU @code{make},
9810 secondary expansion (@pxref{Secondary Expansion}), which will allow
9811 automatic variable values to be used in prerequisite lists.
9813 Here is a table of automatic variables:
9815 @table @code
9816 @vindex $@@
9817 @vindex @@ @r{(automatic variable)}
9818 @item $@@
9819 The file name of the target of the rule.  If the target is an archive
9820 member, then @samp{$@@} is the name of the archive file.  In a pattern
9821 rule that has multiple targets (@pxref{Pattern Intro, ,Introduction to
9822 Pattern Rules}), @samp{$@@} is the name of whichever target caused the
9823 rule's recipe to be run.
9825 @vindex $%
9826 @vindex % @r{(automatic variable)}
9827 @item $%
9828 The target member name, when the target is an archive member.
9829 @xref{Archives}.  For example, if the target is @file{foo.a(bar.o)} then
9830 @samp{$%} is @file{bar.o} and @samp{$@@} is @file{foo.a}.  @samp{$%} is
9831 empty when the target is not an archive member.
9833 @vindex $<
9834 @vindex < @r{(automatic variable)}
9835 @item $<
9836 The name of the first prerequisite.  If the target got its recipe from
9837 an implicit rule, this will be the first prerequisite added by the
9838 implicit rule (@pxref{Implicit Rules}).
9840 @vindex $?
9841 @vindex ? @r{(automatic variable)}
9842 @item $?
9843 The names of all the prerequisites that are newer than the target, with
9844 spaces between them.  For prerequisites which are archive members, only
9845 the named member is used (@pxref{Archives}).
9846 @cindex prerequisites, list of changed
9847 @cindex list of changed prerequisites
9849 @vindex $^
9850 @vindex ^ @r{(automatic variable)}
9851 @item $^
9852 The names of all the prerequisites, with spaces between them.  For
9853 prerequisites which are archive members, only the named member is used
9854 (@pxref{Archives}).  A target has only one prerequisite on each other file
9855 it depends on, no matter how many times each file is listed as a
9856 prerequisite.  So if you list a prerequisite more than once for a target,
9857 the value of @code{$^} contains just one copy of the name.  This list
9858 does @strong{not} contain any of the order-only prerequisites; for those
9859 see the @samp{$|} variable, below.
9860 @cindex prerequisites, list of all
9861 @cindex list of all prerequisites
9863 @vindex $+
9864 @vindex + @r{(automatic variable)}
9865 @item $+
9866 This is like @samp{$^}, but prerequisites listed more than once are
9867 duplicated in the order they were listed in the makefile.  This is
9868 primarily useful for use in linking commands where it is meaningful to
9869 repeat library file names in a particular order.
9871 @vindex $|
9872 @vindex | @r{(automatic variable)}
9873 @item $|
9874 The names of all the order-only prerequisites, with spaces between
9875 them.
9877 @vindex $*
9878 @vindex * @r{(automatic variable)}
9879 @item $*
9880 The stem with which an implicit rule matches (@pxref{Pattern Match, ,How
9881 Patterns Match}).  If the target is @file{dir/a.foo.b} and the target
9882 pattern is @file{a.%.b} then the stem is @file{dir/foo}.  The stem is
9883 useful for constructing names of related files.@refill
9884 @cindex stem, variable for
9886 In a static pattern rule, the stem is part of the file name that matched
9887 the @samp{%} in the target pattern.
9889 In an explicit rule, there is no stem; so @samp{$*} cannot be determined
9890 in that way.  Instead, if the target name ends with a recognized suffix
9891 (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}), @samp{$*} is set to
9892 the target name minus the suffix.  For example, if the target name is
9893 @samp{foo.c}, then @samp{$*} is set to @samp{foo}, since @samp{.c} is a
9894 suffix.  GNU @code{make} does this bizarre thing only for compatibility
9895 with other implementations of @code{make}.  You should generally avoid
9896 using @samp{$*} except in implicit rules or static pattern rules.@refill
9898 If the target name in an explicit rule does not end with a recognized
9899 suffix, @samp{$*} is set to the empty string for that rule.
9900 @end table
9902 @samp{$?} is useful even in explicit rules when you wish to operate on only
9903 the prerequisites that have changed.  For example, suppose that an archive
9904 named @file{lib} is supposed to contain copies of several object files.
9905 This rule copies just the changed object files into the archive:
9907 @example
9908 @group
9909 lib: foo.o bar.o lose.o win.o
9910         ar r lib $?
9911 @end group
9912 @end example
9914 Of the variables listed above, four have values that are single file
9915 names, and three have values that are lists of file names.  These seven
9916 have variants that get just the file's directory name or just the file
9917 name within the directory.  The variant variables' names are formed by
9918 appending @samp{D} or @samp{F}, respectively.  These variants are
9919 semi-obsolete in GNU @code{make} since the functions @code{dir} and
9920 @code{notdir} can be used to get a similar effect (@pxref{File Name
9921 Functions, , Functions for File Names}).  Note, however, that the
9922 @samp{D} variants all omit the trailing slash which always appears in
9923 the output of the @code{dir} function.  Here is a table of the variants:
9925 @table @samp
9926 @vindex $(@@D)
9927 @vindex @@D @r{(automatic variable)}
9928 @item $(@@D)
9929 The directory part of the file name of the target, with the trailing
9930 slash removed.  If the value of @samp{$@@} is @file{dir/foo.o} then
9931 @samp{$(@@D)} is @file{dir}.  This value is @file{.} if @samp{$@@} does
9932 not contain a slash.
9934 @vindex $(@@F)
9935 @vindex @@F @r{(automatic variable)}
9936 @item $(@@F)
9937 The file-within-directory part of the file name of the target.  If the
9938 value of @samp{$@@} is @file{dir/foo.o} then @samp{$(@@F)} is
9939 @file{foo.o}.  @samp{$(@@F)} is equivalent to @samp{$(notdir $@@)}.
9941 @vindex $(*D)
9942 @vindex *D @r{(automatic variable)}
9943 @item $(*D)
9944 @vindex $(*F)
9945 @vindex *F @r{(automatic variable)}
9946 @itemx $(*F)
9947 The directory part and the file-within-directory
9948 part of the stem; @file{dir} and @file{foo} in this example.
9950 @vindex $(%D)
9951 @vindex %D @r{(automatic variable)}
9952 @item $(%D)
9953 @vindex $(%F)
9954 @vindex %F @r{(automatic variable)}
9955 @itemx $(%F)
9956 The directory part and the file-within-directory part of the target
9957 archive member name.  This makes sense only for archive member targets
9958 of the form @file{@var{archive}(@var{member})} and is useful only when
9959 @var{member} may contain a directory name.  (@xref{Archive Members,
9960 ,Archive Members as Targets}.)
9962 @vindex $(<D)
9963 @vindex <D @r{(automatic variable)}
9964 @item $(<D)
9965 @vindex $(<F)
9966 @vindex <F @r{(automatic variable)}
9967 @itemx $(<F)
9968 The directory part and the file-within-directory
9969 part of the first prerequisite.
9971 @vindex $(^D)
9972 @vindex ^D @r{(automatic variable)}
9973 @item $(^D)
9974 @vindex $(^F)
9975 @vindex ^F @r{(automatic variable)}
9976 @itemx $(^F)
9977 Lists of the directory parts and the file-within-directory
9978 parts of all prerequisites.
9980 @vindex $(+D)
9981 @vindex +D @r{(automatic variable)}
9982 @item $(+D)
9983 @vindex $(+F)
9984 @vindex +F @r{(automatic variable)}
9985 @itemx $(+F)
9986 Lists of the directory parts and the file-within-directory
9987 parts of all prerequisites, including multiple instances of duplicated
9988 prerequisites.
9990 @vindex $(?D)
9991 @vindex ?D @r{(automatic variable)}
9992 @item $(?D)
9993 @vindex $(?F)
9994 @vindex ?F @r{(automatic variable)}
9995 @itemx $(?F)
9996 Lists of the directory parts and the file-within-directory parts of
9997 all prerequisites that are newer than the target.
9998 @end table
10000 Note that we use a special stylistic convention when we talk about these
10001 automatic variables; we write ``the value of @samp{$<}'', rather than
10002 @w{``the variable @code{<}''} as we would write for ordinary variables
10003 such as @code{objects} and @code{CFLAGS}.  We think this convention
10004 looks more natural in this special case.  Please do not assume it has a
10005 deep significance; @samp{$<} refers to the variable named @code{<} just
10006 as @samp{$(CFLAGS)} refers to the variable named @code{CFLAGS}.
10007 You could just as well use @samp{$(<)} in place of @samp{$<}.
10009 @node Pattern Match, Match-Anything Rules, Automatic Variables, Pattern Rules
10010 @subsection How Patterns Match
10012 @cindex stem
10013 A target pattern is composed of a @samp{%} between a prefix and a suffix,
10014 either or both of which may be empty.  The pattern matches a file name only
10015 if the file name starts with the prefix and ends with the suffix, without
10016 overlap.  The text between the prefix and the suffix is called the
10017 @dfn{stem}.  Thus, when the pattern @samp{%.o} matches the file name
10018 @file{test.o}, the stem is @samp{test}.  The pattern rule prerequisites are
10019 turned into actual file names by substituting the stem for the character
10020 @samp{%}.  Thus, if in the same example one of the prerequisites is written
10021 as @samp{%.c}, it expands to @samp{test.c}.@refill
10023 When the target pattern does not contain a slash (and it usually does
10024 not), directory names in the file names are removed from the file name
10025 before it is compared with the target prefix and suffix.  After the
10026 comparison of the file name to the target pattern, the directory
10027 names, along with the slash that ends them, are added on to the
10028 prerequisite file names generated from the pattern rule's prerequisite
10029 patterns and the file name.  The directories are ignored only for the
10030 purpose of finding an implicit rule to use, not in the application of
10031 that rule.  Thus, @samp{e%t} matches the file name @file{src/eat},
10032 with @samp{src/a} as the stem.  When prerequisites are turned into file
10033 names, the directories from the stem are added at the front, while the
10034 rest of the stem is substituted for the @samp{%}.  The stem
10035 @samp{src/a} with a prerequisite pattern @samp{c%r} gives the file name
10036 @file{src/car}.@refill
10038 @cindex pattern rules, order of
10039 @cindex order of pattern rules
10040 A pattern rule can be used to build a given file only if there is a
10041 target pattern that matches the file name, @emph{and} all
10042 prerequisites in that rule either exist or can be built.  The rules
10043 you write take precedence over those that are built in. Note however,
10044 that a rule whose prerequisites actually exist or are mentioned always
10045 takes priority over a rule with prerequisites that must be made by
10046 chaining other implicit rules.
10048 @cindex stem, shortest
10049 It is possible that more than one pattern rule will meet these
10050 criteria.  In that case, @code{make} will choose the rule with the
10051 shortest stem (that is, the pattern that matches most specifically).
10052 If more than one pattern rule has the shortest stem, @code{make} will
10053 choose the first one found in the makefile.
10055 This algorithm results in more specific rules being preferred over
10056 more generic ones; for example:
10058 @example
10059 %.o: %.c
10060         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@@
10062 %.o : %.f
10063         $(COMPILE.F) $(OUTPUT_OPTION) $<
10065 lib/%.o: lib/%.c
10066         $(CC) -fPIC -c $(CFLAGS) $(CPPFLAGS) $< -o $@@
10067 @end example
10069 Given these rules and asked to build @file{bar.o} where both
10070 @file{bar.c} and @file{bar.f} exist, @code{make} will choose the first
10071 rule and compile @file{bar.c} into @file{bar.o}.  In the same
10072 situation where @file{bar.c} does not exist, then @code{make} will
10073 choose the second rule and compile @file{bar.f} into @file{bar.o}.
10075 If @code{make} is asked to build @file{lib/bar.o} and both
10076 @file{lib/bar.c} and @file{lib/bar.f} exist, then the third rule will
10077 be chosen since the stem for this rule (@samp{bar}) is shorter than
10078 the stem for the first rule (@samp{lib/bar}).  If @file{lib/bar.c}
10079 does not exist then the third rule is not eligible and the second rule
10080 will be used, even though the stem is longer.
10082 @node Match-Anything Rules, Canceling Rules, Pattern Match, Pattern Rules
10083 @subsection Match-Anything Pattern Rules
10085 @cindex match-anything rule
10086 @cindex terminal rule
10087 When a pattern rule's target is just @samp{%}, it matches any file name
10088 whatever.  We call these rules @dfn{match-anything} rules.  They are very
10089 useful, but it can take a lot of time for @code{make} to think about them,
10090 because it must consider every such rule for each file name listed either
10091 as a target or as a prerequisite.
10093 Suppose the makefile mentions @file{foo.c}.  For this target, @code{make}
10094 would have to consider making it by linking an object file @file{foo.c.o},
10095 or by C compilation-and-linking in one step from @file{foo.c.c}, or by
10096 Pascal compilation-and-linking from @file{foo.c.p}, and many other
10097 possibilities.
10099 We know these possibilities are ridiculous since @file{foo.c} is a C source
10100 file, not an executable.  If @code{make} did consider these possibilities,
10101 it would ultimately reject them, because files such as @file{foo.c.o} and
10102 @file{foo.c.p} would not exist.  But these possibilities are so
10103 numerous that @code{make} would run very slowly if it had to consider
10104 them.@refill
10106 To gain speed, we have put various constraints on the way @code{make}
10107 considers match-anything rules.  There are two different constraints that
10108 can be applied, and each time you define a match-anything rule you must
10109 choose one or the other for that rule.
10111 One choice is to mark the match-anything rule as @dfn{terminal} by defining
10112 it with a double colon.  When a rule is terminal, it does not apply unless
10113 its prerequisites actually exist.  Prerequisites that could be made with
10114 other implicit rules are not good enough.  In other words, no further
10115 chaining is allowed beyond a terminal rule.
10117 For example, the built-in implicit rules for extracting sources from RCS
10118 and SCCS files are terminal; as a result, if the file @file{foo.c,v} does
10119 not exist, @code{make} will not even consider trying to make it as an
10120 intermediate file from @file{foo.c,v.o} or from @file{RCS/SCCS/s.foo.c,v}.
10121 RCS and SCCS files are generally ultimate source files, which should not be
10122 remade from any other files; therefore, @code{make} can save time by not
10123 looking for ways to remake them.@refill
10125 If you do not mark the match-anything rule as terminal, then it is
10126 non-terminal.  A non-terminal match-anything rule cannot apply to a file name
10127 that indicates a specific type of data.  A file name indicates a specific
10128 type of data if some non-match-anything implicit rule target matches it.
10130 For example, the file name @file{foo.c} matches the target for the pattern
10131 rule @samp{%.c : %.y} (the rule to run Yacc).  Regardless of whether this
10132 rule is actually applicable (which happens only if there is a file
10133 @file{foo.y}), the fact that its target matches is enough to prevent
10134 consideration of any non-terminal match-anything rules for the file
10135 @file{foo.c}.  Thus, @code{make} will not even consider trying to make
10136 @file{foo.c} as an executable file from @file{foo.c.o}, @file{foo.c.c},
10137 @file{foo.c.p}, etc.@refill
10139 The motivation for this constraint is that non-terminal match-anything
10140 rules are used for making files containing specific types of data (such as
10141 executable files) and a file name with a recognized suffix indicates some
10142 other specific type of data (such as a C source file).
10144 Special built-in dummy pattern rules are provided solely to recognize
10145 certain file names so that non-terminal match-anything rules will not be
10146 considered.  These dummy rules have no prerequisites and no recipes, and
10147 they are ignored for all other purposes.  For example, the built-in
10148 implicit rule
10150 @example
10151 %.p :
10152 @end example
10154 @noindent
10155 exists to make sure that Pascal source files such as @file{foo.p} match a
10156 specific target pattern and thereby prevent time from being wasted looking
10157 for @file{foo.p.o} or @file{foo.p.c}.
10159 Dummy pattern rules such as the one for @samp{%.p} are made for every
10160 suffix listed as valid for use in suffix rules (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}).
10162 @node Canceling Rules,  , Match-Anything Rules, Pattern Rules
10163 @subsection Canceling Implicit Rules
10165 You can override a built-in implicit rule (or one you have defined
10166 yourself) by defining a new pattern rule with the same target and
10167 prerequisites, but a different recipe.  When the new rule is defined, the
10168 built-in one is replaced.  The new rule's position in the sequence of
10169 implicit rules is determined by where you write the new rule.
10171 You can cancel a built-in implicit rule by defining a pattern rule with the
10172 same target and prerequisites, but no recipe.  For example, the following
10173 would cancel the rule that runs the assembler:
10175 @example
10176 %.o : %.s
10177 @end example
10179 @node Last Resort, Suffix Rules, Pattern Rules, Implicit Rules
10180 @section Defining Last-Resort Default Rules
10181 @cindex last-resort default rules
10182 @cindex default rules, last-resort
10184 You can define a last-resort implicit rule by writing a terminal
10185 match-anything pattern rule with no prerequisites (@pxref{Match-Anything
10186 Rules}).  This is just like any other pattern rule; the only thing
10187 special about it is that it will match any target.  So such a rule's
10188 recipe is used for all targets and prerequisites that have no recipe
10189 of their own and for which no other implicit rule applies.
10191 For example, when testing a makefile, you might not care if the source
10192 files contain real data, only that they exist.  Then you might do this:
10194 @example
10196         touch $@@
10197 @end example
10199 @noindent
10200 to cause all the source files needed (as prerequisites) to be created
10201 automatically.
10203 @findex .DEFAULT
10204 You can instead define a recipe to be used for targets for which there
10205 are no rules at all, even ones which don't specify recipes.  You do
10206 this by writing a rule for the target @code{.DEFAULT}.  Such a rule's
10207 recipe is used for all prerequisites which do not appear as targets in
10208 any explicit rule, and for which no implicit rule applies.  Naturally,
10209 there is no @code{.DEFAULT} rule unless you write one.
10211 If you use @code{.DEFAULT} with no recipe or prerequisites:
10213 @example
10214 .DEFAULT:
10215 @end example
10217 @noindent
10218 the recipe previously stored for @code{.DEFAULT} is cleared.  Then
10219 @code{make} acts as if you had never defined @code{.DEFAULT} at all.
10221 If you do not want a target to get the recipe from a match-anything
10222 pattern rule or @code{.DEFAULT}, but you also do not want any recipe
10223 to be run for the target, you can give it an empty recipe
10224 (@pxref{Empty Recipes, ,Defining Empty Recipes}).@refill
10226 You can use a last-resort rule to override part of another makefile.
10227 @xref{Overriding Makefiles, , Overriding Part of Another Makefile}.
10229 @node Suffix Rules, Implicit Rule Search, Last Resort, Implicit Rules
10230 @section Old-Fashioned Suffix Rules
10231 @cindex old-fashioned suffix rules
10232 @cindex suffix rule
10234 @dfn{Suffix rules} are the old-fashioned way of defining implicit rules for
10235 @code{make}.  Suffix rules are obsolete because pattern rules are more
10236 general and clearer.  They are supported in GNU @code{make} for
10237 compatibility with old makefiles.  They come in two kinds:
10238 @dfn{double-suffix} and @dfn{single-suffix}.@refill
10240 A double-suffix rule is defined by a pair of suffixes: the target suffix
10241 and the source suffix.  It matches any file whose name ends with the
10242 target suffix.  The corresponding implicit prerequisite is made by
10243 replacing the target suffix with the source suffix in the file name.  A
10244 two-suffix rule whose target and source suffixes are @samp{.o} and
10245 @samp{.c} is equivalent to the pattern rule @samp{%.o : %.c}.
10247 A single-suffix rule is defined by a single suffix, which is the source
10248 suffix.  It matches any file name, and the corresponding implicit
10249 prerequisite name is made by appending the source suffix.  A single-suffix
10250 rule whose source suffix is @samp{.c} is equivalent to the pattern rule
10251 @samp{% : %.c}.
10253 Suffix rule definitions are recognized by comparing each rule's target
10254 against a defined list of known suffixes.  When @code{make} sees a rule
10255 whose target is a known suffix, this rule is considered a single-suffix
10256 rule.  When @code{make} sees a rule whose target is two known suffixes
10257 concatenated, this rule is taken as a double-suffix rule.
10259 For example, @samp{.c} and @samp{.o} are both on the default list of
10260 known suffixes.  Therefore, if you define a rule whose target is
10261 @samp{.c.o}, @code{make} takes it to be a double-suffix rule with source
10262 suffix @samp{.c} and target suffix @samp{.o}.  Here is the old-fashioned
10263 way to define the rule for compiling a C source file:@refill
10265 @example
10266 .c.o:
10267         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
10268 @end example
10270 Suffix rules cannot have any prerequisites of their own.  If they have any,
10271 they are treated as normal files with funny names, not as suffix rules.
10272 Thus, the rule:
10274 @example
10275 .c.o: foo.h
10276         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
10277 @end example
10279 @noindent
10280 tells how to make the file @file{.c.o} from the prerequisite file
10281 @file{foo.h}, and is not at all like the pattern rule:
10283 @example
10284 %.o: %.c foo.h
10285         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
10286 @end example
10288 @noindent
10289 which tells how to make @samp{.o} files from @samp{.c} files, and makes all
10290 @samp{.o} files using this pattern rule also depend on @file{foo.h}.
10292 Suffix rules with no recipe are also meaningless.  They do not remove
10293 previous rules as do pattern rules with no recipe (@pxref{Canceling
10294 Rules, , Canceling Implicit Rules}).  They simply enter the suffix or
10295 pair of suffixes concatenated as a target in the data base.@refill
10297 @findex .SUFFIXES
10298 The known suffixes are simply the names of the prerequisites of the special
10299 target @code{.SUFFIXES}.  You can add your own suffixes by writing a rule
10300 for @code{.SUFFIXES} that adds more prerequisites, as in:
10302 @example
10303 .SUFFIXES: .hack .win
10304 @end example
10306 @noindent
10307 which adds @samp{.hack} and @samp{.win} to the end of the list of suffixes.
10309 If you wish to eliminate the default known suffixes instead of just adding
10310 to them, write a rule for @code{.SUFFIXES} with no prerequisites.  By
10311 special dispensation, this eliminates all existing prerequisites of
10312 @code{.SUFFIXES}.  You can then write another rule to add the suffixes you
10313 want.  For example,
10315 @example
10316 @group
10317 .SUFFIXES:            # @r{Delete the default suffixes}
10318 .SUFFIXES: .c .o .h   # @r{Define our suffix list}
10319 @end group
10320 @end example
10322 The @samp{-r} or @samp{--no-builtin-rules} flag causes the default
10323 list of suffixes to be empty.
10325 @vindex SUFFIXES
10326 The variable @code{SUFFIXES} is defined to the default list of suffixes
10327 before @code{make} reads any makefiles.  You can change the list of suffixes
10328 with a rule for the special target @code{.SUFFIXES}, but that does not alter
10329 this variable.
10331 @node Implicit Rule Search,  , Suffix Rules, Implicit Rules
10332 @section Implicit Rule Search Algorithm
10333 @cindex implicit rule, search algorithm
10334 @cindex search algorithm, implicit rule
10336 Here is the procedure @code{make} uses for searching for an implicit rule
10337 for a target @var{t}.  This procedure is followed for each double-colon
10338 rule with no recipe, for each target of ordinary rules none of which have
10339 a recipe, and for each prerequisite that is not the target of any rule.  It
10340 is also followed recursively for prerequisites that come from implicit
10341 rules, in the search for a chain of rules.
10343 Suffix rules are not mentioned in this algorithm because suffix rules are
10344 converted to equivalent pattern rules once the makefiles have been read in.
10346 For an archive member target of the form
10347 @samp{@var{archive}(@var{member})}, the following algorithm is run
10348 twice, first using the entire target name @var{t}, and second using
10349 @samp{(@var{member})} as the target @var{t} if the first run found no
10350 rule.@refill
10352 @enumerate
10353 @item
10354 Split @var{t} into a directory part, called @var{d}, and the rest,
10355 called @var{n}.  For example, if @var{t} is @samp{src/foo.o}, then
10356 @var{d} is @samp{src/} and @var{n} is @samp{foo.o}.@refill
10358 @item
10359 Make a list of all the pattern rules one of whose targets matches
10360 @var{t} or @var{n}.  If the target pattern contains a slash, it is
10361 matched against @var{t}; otherwise, against @var{n}.
10363 @item
10364 If any rule in that list is @emph{not} a match-anything rule, then
10365 remove all non-terminal match-anything rules from the list.
10367 @item
10368 Remove from the list all rules with no recipe.
10370 @item
10371 For each pattern rule in the list:
10373 @enumerate a
10374 @item
10375 Find the stem @var{s}, which is the nonempty part of @var{t} or @var{n}
10376 matched by the @samp{%} in the target pattern.@refill
10378 @item
10379 Compute the prerequisite names by substituting @var{s} for @samp{%}; if
10380 the target pattern does not contain a slash, append @var{d} to
10381 the front of each prerequisite name.@refill
10383 @item
10384 Test whether all the prerequisites exist or ought to exist.  (If a
10385 file name is mentioned in the makefile as a target or as an explicit
10386 prerequisite, then we say it ought to exist.)
10388 If all prerequisites exist or ought to exist, or there are no prerequisites,
10389 then this rule applies.
10390 @end enumerate
10392 @item
10393 If no pattern rule has been found so far, try harder.
10394 For each pattern rule in the list:
10396 @enumerate a
10397 @item
10398 If the rule is terminal, ignore it and go on to the next rule.
10400 @item
10401 Compute the prerequisite names as before.
10403 @item
10404 Test whether all the prerequisites exist or ought to exist.
10406 @item
10407 For each prerequisite that does not exist, follow this algorithm
10408 recursively to see if the prerequisite can be made by an implicit
10409 rule.
10411 @item
10412 If all prerequisites exist, ought to exist, or can be
10413 made by implicit rules, then this rule applies.
10414 @end enumerate
10416 @item
10417 If no implicit rule applies, the rule for @code{.DEFAULT}, if any,
10418 applies.  In that case, give @var{t} the same recipe that
10419 @code{.DEFAULT} has.  Otherwise, there is no recipe for @var{t}.
10420 @end enumerate
10422 Once a rule that applies has been found, for each target pattern of
10423 the rule other than the one that matched @var{t} or @var{n}, the
10424 @samp{%} in the pattern is replaced with @var{s} and the resultant
10425 file name is stored until the recipe to remake the target file @var{t}
10426 is executed.  After the recipe is executed, each of these stored file
10427 names are entered into the data base and marked as having been updated
10428 and having the same update status as the file @var{t}.
10430 When the recipe of a pattern rule is executed for @var{t}, the
10431 automatic variables are set corresponding to the target and
10432 prerequisites.  @xref{Automatic Variables}.
10434 @node Archives, Features, Implicit Rules, Top
10435 @chapter Using @code{make} to Update Archive Files
10436 @cindex archive
10438 @dfn{Archive files} are files containing named sub-files called
10439 @dfn{members}; they are maintained with the program @code{ar} and their
10440 main use is as subroutine libraries for linking.
10442 @menu
10443 * Archive Members::             Archive members as targets.
10444 * Archive Update::              The implicit rule for archive member targets.
10445 * Archive Pitfalls::            Dangers to watch out for when using archives.
10446 * Archive Suffix Rules::        You can write a special kind of suffix rule
10447                                   for updating archives.
10448 @end menu
10450 @node Archive Members, Archive Update, Archives, Archives
10451 @section Archive Members as Targets
10452 @cindex archive member targets
10454 An individual member of an archive file can be used as a target or
10455 prerequisite in @code{make}.  You specify the member named @var{member} in
10456 archive file @var{archive} as follows:
10458 @example
10459 @var{archive}(@var{member})
10460 @end example
10462 @noindent
10463 This construct is available only in targets and prerequisites, not in
10464 recipes!  Most programs that you might use in recipes do not support
10465 this syntax and cannot act directly on archive members.  Only
10466 @code{ar} and other programs specifically designed to operate on
10467 archives can do so.  Therefore, valid recipes to update an archive
10468 member target probably must use @code{ar}.  For example, this rule
10469 says to create a member @file{hack.o} in archive @file{foolib} by
10470 copying the file @file{hack.o}:
10472 @example
10473 foolib(hack.o) : hack.o
10474         ar cr foolib hack.o
10475 @end example
10477 In fact, nearly all archive member targets are updated in just this way
10478 and there is an implicit rule to do it for you.  @strong{Please note:} The
10479 @samp{c} flag to @code{ar} is required if the archive file does not
10480 already exist.
10482 To specify several members in the same archive, you can write all the
10483 member names together between the parentheses.  For example:
10485 @example
10486 foolib(hack.o kludge.o)
10487 @end example
10489 @noindent
10490 is equivalent to:
10492 @example
10493 foolib(hack.o) foolib(kludge.o)
10494 @end example
10496 @cindex wildcard, in archive member
10497 You can also use shell-style wildcards in an archive member reference.
10498 @xref{Wildcards, ,Using Wildcard Characters in File Names}.  For
10499 example, @w{@samp{foolib(*.o)}} expands to all existing members of the
10500 @file{foolib} archive whose names end in @samp{.o}; perhaps
10501 @samp{@w{foolib(hack.o)} @w{foolib(kludge.o)}}.
10503 @node Archive Update, Archive Pitfalls, Archive Members, Archives
10504 @section Implicit Rule for Archive Member Targets
10506 Recall that a target that looks like @file{@var{a}(@var{m})} stands for the
10507 member named @var{m} in the archive file @var{a}.
10509 When @code{make} looks for an implicit rule for such a target, as a special
10510 feature it considers implicit rules that match @file{(@var{m})}, as well as
10511 those that match the actual target @file{@var{a}(@var{m})}.
10513 This causes one special rule whose target is @file{(%)} to match.  This
10514 rule updates the target @file{@var{a}(@var{m})} by copying the file @var{m}
10515 into the archive.  For example, it will update the archive member target
10516 @file{foo.a(bar.o)} by copying the @emph{file} @file{bar.o} into the
10517 archive @file{foo.a} as a @emph{member} named @file{bar.o}.
10519 When this rule is chained with others, the result is very powerful.
10520 Thus, @samp{make "foo.a(bar.o)"} (the quotes are needed to protect the
10521 @samp{(} and @samp{)} from being interpreted specially by the shell) in
10522 the presence of a file @file{bar.c} is enough to cause the following
10523 recipe to be run, even without a makefile:
10525 @example
10526 cc -c bar.c -o bar.o
10527 ar r foo.a bar.o
10528 rm -f bar.o
10529 @end example
10531 @noindent
10532 Here @code{make} has envisioned the file @file{bar.o} as an intermediate
10533 file.  @xref{Chained Rules, ,Chains of Implicit Rules}.
10535 Implicit rules such as this one are written using the automatic variable
10536 @samp{$%}.  @xref{Automatic Variables}.
10538 An archive member name in an archive cannot contain a directory name, but
10539 it may be useful in a makefile to pretend that it does.  If you write an
10540 archive member target @file{foo.a(dir/file.o)}, @code{make} will perform
10541 automatic updating with this recipe:
10543 @example
10544 ar r foo.a dir/file.o
10545 @end example
10547 @noindent
10548 which has the effect of copying the file @file{dir/file.o} into a member
10549 named @file{file.o}.  In connection with such usage, the automatic variables
10550 @code{%D} and @code{%F} may be useful.
10552 @menu
10553 * Archive Symbols::             How to update archive symbol directories.
10554 @end menu
10556 @node Archive Symbols,  , Archive Update, Archive Update
10557 @subsection Updating Archive Symbol Directories
10558 @cindex @code{__.SYMDEF}
10559 @cindex updating archive symbol directories
10560 @cindex archive symbol directory updating
10561 @cindex symbol directories, updating archive
10562 @cindex directories, updating archive symbol
10564 An archive file that is used as a library usually contains a special member
10565 named @file{__.SYMDEF} that contains a directory of the external symbol
10566 names defined by all the other members.  After you update any other
10567 members, you need to update @file{__.SYMDEF} so that it will summarize the
10568 other members properly.  This is done by running the @code{ranlib} program:
10570 @example
10571 ranlib @var{archivefile}
10572 @end example
10574 Normally you would put this command in the rule for the archive file,
10575 and make all the members of the archive file prerequisites of that rule.
10576 For example,
10578 @example
10579 libfoo.a: libfoo.a(x.o) libfoo.a(y.o) @dots{}
10580         ranlib libfoo.a
10581 @end example
10583 @noindent
10584 The effect of this is to update archive members @file{x.o}, @file{y.o},
10585 etc., and then update the symbol directory member @file{__.SYMDEF} by
10586 running @code{ranlib}.  The rules for updating the members are not shown
10587 here; most likely you can omit them and use the implicit rule which copies
10588 files into the archive, as described in the preceding section.
10590 This is not necessary when using the GNU @code{ar} program, which
10591 updates the @file{__.SYMDEF} member automatically.
10593 @node Archive Pitfalls, Archive Suffix Rules, Archive Update, Archives
10594 @section Dangers When Using Archives
10595 @cindex archive, and parallel execution
10596 @cindex parallel execution, and archive update
10597 @cindex archive, and @code{-j}
10598 @cindex @code{-j}, and archive update
10600 It is important to be careful when using parallel execution (the
10601 @code{-j} switch; @pxref{Parallel, ,Parallel Execution}) and archives.
10602 If multiple @code{ar} commands run at the same time on the same archive
10603 file, they will not know about each other and can corrupt the file.
10605 Possibly a future version of @code{make} will provide a mechanism to
10606 circumvent this problem by serializing all recipes that operate on the
10607 same archive file.  But for the time being, you must either write your
10608 makefiles to avoid this problem in some other way, or not use @code{-j}.
10610 @node Archive Suffix Rules,  , Archive Pitfalls, Archives
10611 @section Suffix Rules for Archive Files
10612 @cindex suffix rule, for archive
10613 @cindex archive, suffix rule for
10614 @cindex library archive, suffix rule for
10615 @cindex @code{.a} (archives)
10617 You can write a special kind of suffix rule for dealing with archive
10618 files.  @xref{Suffix Rules}, for a full explanation of suffix rules.
10619 Archive suffix rules are obsolete in GNU @code{make}, because pattern
10620 rules for archives are a more general mechanism (@pxref{Archive
10621 Update}).  But they are retained for compatibility with other
10622 @code{make}s.
10624 To write a suffix rule for archives, you simply write a suffix rule
10625 using the target suffix @samp{.a} (the usual suffix for archive files).
10626 For example, here is the old-fashioned suffix rule to update a library
10627 archive from C source files:
10629 @example
10630 @group
10631 .c.a:
10632         $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
10633         $(AR) r $@@ $*.o
10634         $(RM) $*.o
10635 @end group
10636 @end example
10638 @noindent
10639 This works just as if you had written the pattern rule:
10641 @example
10642 @group
10643 (%.o): %.c
10644         $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
10645         $(AR) r $@@ $*.o
10646         $(RM) $*.o
10647 @end group
10648 @end example
10650 In fact, this is just what @code{make} does when it sees a suffix rule
10651 with @samp{.a} as the target suffix.  Any double-suffix rule
10652 @w{@samp{.@var{x}.a}} is converted to a pattern rule with the target
10653 pattern @samp{(%.o)} and a prerequisite pattern of @samp{%.@var{x}}.
10655 Since you might want to use @samp{.a} as the suffix for some other kind
10656 of file, @code{make} also converts archive suffix rules to pattern rules
10657 in the normal way (@pxref{Suffix Rules}).  Thus a double-suffix rule
10658 @w{@samp{.@var{x}.a}} produces two pattern rules: @samp{@w{(%.o):}
10659 @w{%.@var{x}}} and @samp{@w{%.a}: @w{%.@var{x}}}.@refill
10661 @node Features, Missing, Archives, Top
10662 @chapter Features of GNU @code{make}
10663 @cindex features of GNU @code{make}
10664 @cindex portability
10665 @cindex compatibility
10667 Here is a summary of the features of GNU @code{make}, for comparison
10668 with and credit to other versions of @code{make}.  We consider the
10669 features of @code{make} in 4.2 BSD systems as a baseline.  If you are
10670 concerned with writing portable makefiles, you should not use the
10671 features of @code{make} listed here, nor the ones in @ref{Missing}.
10673 Many features come from the version of @code{make} in System V.
10675 @itemize @bullet
10676 @item
10677 The @code{VPATH} variable and its special meaning.
10678 @xref{Directory Search, , Searching Directories for Prerequisites}.
10679 This feature exists in System V @code{make}, but is undocumented.
10680 It is documented in 4.3 BSD @code{make} (which says it mimics System V's
10681 @code{VPATH} feature).@refill
10683 @item
10684 Included makefiles.  @xref{Include, ,Including Other Makefiles}.
10685 Allowing multiple files to be included with a single directive is a GNU
10686 extension.
10688 @item
10689 Variables are read from and communicated via the environment.
10690 @xref{Environment, ,Variables from the Environment}.
10692 @item
10693 Options passed through the variable @code{MAKEFLAGS} to recursive
10694 invocations of @code{make}.
10695 @xref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
10697 @item
10698 The automatic variable @code{$%} is set to the member name
10699 in an archive reference.  @xref{Automatic Variables}.
10701 @item
10702 The automatic variables @code{$@@}, @code{$*}, @code{$<}, @code{$%},
10703 and @code{$?} have corresponding forms like @code{$(@@F)} and
10704 @code{$(@@D)}.  We have generalized this to @code{$^} as an obvious
10705 extension.  @xref{Automatic Variables}.@refill
10707 @item
10708 Substitution variable references.
10709 @xref{Reference, ,Basics of Variable References}.
10711 @item
10712 The command line options @samp{-b} and @samp{-m}, accepted and
10713 ignored.  In System V @code{make}, these options actually do something.
10715 @item
10716 Execution of recursive commands to run @code{make} via the variable
10717 @code{MAKE} even if @samp{-n}, @samp{-q} or @samp{-t} is specified.
10718 @xref{Recursion, ,Recursive Use of @code{make}}.
10720 @item
10721 Support for suffix @samp{.a} in suffix rules.  @xref{Archive Suffix
10722 Rules}.  This feature is obsolete in GNU @code{make}, because the
10723 general feature of rule chaining (@pxref{Chained Rules, ,Chains of
10724 Implicit Rules}) allows one pattern rule for installing members in an
10725 archive (@pxref{Archive Update}) to be sufficient.
10727 @item
10728 The arrangement of lines and backslash-newline combinations in
10729 recipes is retained when the recipes are printed, so they appear as
10730 they do in the makefile, except for the stripping of initial
10731 whitespace.
10732 @end itemize
10734 The following features were inspired by various other versions of
10735 @code{make}.  In some cases it is unclear exactly which versions inspired
10736 which others.
10738 @itemize @bullet
10739 @item
10740 Pattern rules using @samp{%}.
10741 This has been implemented in several versions of @code{make}.
10742 We're not sure who invented it first, but it's been spread around a bit.
10743 @xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.@refill
10745 @item
10746 Rule chaining and implicit intermediate files.
10747 This was implemented by Stu Feldman in his version of @code{make}
10748 for AT&T Eighth Edition Research Unix, and later by Andrew Hume of
10749 AT&T Bell Labs in his @code{mk} program (where he terms it
10750 ``transitive closure'').  We do not really know if
10751 we got this from either of them or thought it up ourselves at the
10752 same time.  @xref{Chained Rules, ,Chains of Implicit Rules}.
10754 @item
10755 The automatic variable @code{$^} containing a list of all prerequisites
10756 of the current target.  We did not invent this, but we have no idea who
10757 did.  @xref{Automatic Variables}.  The automatic variable
10758 @code{$+} is a simple extension of @code{$^}.
10760 @item
10761 The ``what if'' flag (@samp{-W} in GNU @code{make}) was (as far as we know)
10762 invented by Andrew Hume in @code{mk}.
10763 @xref{Instead of Execution, ,Instead of Executing Recipes}.
10765 @item
10766 The concept of doing several things at once (parallelism) exists in
10767 many incarnations of @code{make} and similar programs, though not in the
10768 System V or BSD implementations.  @xref{Execution, ,Recipe Execution}.
10770 @item
10771 Modified variable references using pattern substitution come from
10772 SunOS 4.  @xref{Reference, ,Basics of Variable References}.
10773 This functionality was provided in GNU @code{make} by the
10774 @code{patsubst} function before the alternate syntax was implemented
10775 for compatibility with SunOS 4.  It is not altogether clear who
10776 inspired whom, since GNU @code{make} had @code{patsubst} before SunOS
10777 4 was released.@refill
10779 @item
10780 The special significance of @samp{+} characters preceding recipe lines
10781 (@pxref{Instead of Execution, ,Instead of Executing Recipes}) is
10782 mandated by @cite{IEEE Standard 1003.2-1992} (POSIX.2).
10784 @item
10785 The @samp{+=} syntax to append to the value of a variable comes from SunOS
10786 4 @code{make}.  @xref{Appending, , Appending More Text to Variables}.
10788 @item
10789 The syntax @w{@samp{@var{archive}(@var{mem1} @var{mem2}@dots{})}} to list
10790 multiple members in a single archive file comes from SunOS 4 @code{make}.
10791 @xref{Archive Members}.
10793 @item
10794 The @code{-include} directive to include makefiles with no error for a
10795 nonexistent file comes from SunOS 4 @code{make}.  (But note that SunOS 4
10796 @code{make} does not allow multiple makefiles to be specified in one
10797 @code{-include} directive.)  The same feature appears with the name
10798 @code{sinclude} in SGI @code{make} and perhaps others.
10800 @item
10801 The @code{!=} shell assignment operator exists in many BSD of
10802 @code{make} and is purposefully implemented here to behave identically
10803 to those implementations.
10804 @end itemize
10806 The remaining features are inventions new in GNU @code{make}:
10808 @itemize @bullet
10809 @item
10810 Use the @samp{-v} or @samp{--version} option to print version and
10811 copyright information.
10813 @item
10814 Use the @samp{-h} or @samp{--help} option to summarize the options to
10815 @code{make}.
10817 @item
10818 Simply-expanded variables.  @xref{Flavors, ,The Two Flavors of Variables}.
10820 @item
10821 Pass command line variable assignments automatically through the
10822 variable @code{MAKE} to recursive @code{make} invocations.
10823 @xref{Recursion, ,Recursive Use of @code{make}}.
10825 @item
10826 Use the @samp{-C} or @samp{--directory} command option to change
10827 directory.  @xref{Options Summary, ,Summary of Options}.
10829 @item
10830 Make verbatim variable definitions with @code{define}.
10831 @xref{Multi-Line, ,Defining Multi-Line Variables}.
10833 @item
10834 Declare phony targets with the special target @code{.PHONY}.
10836 Andrew Hume of AT&T Bell Labs implemented a similar feature with a
10837 different syntax in his @code{mk} program.  This seems to be a case of
10838 parallel discovery.  @xref{Phony Targets, ,Phony Targets}.
10840 @item
10841 Manipulate text by calling functions.
10842 @xref{Functions, ,Functions for Transforming Text}.
10844 @item
10845 Use the @samp{-o} or @samp{--old-file}
10846 option to pretend a file's modification-time is old.
10847 @xref{Avoiding Compilation, ,Avoiding Recompilation of Some Files}.
10849 @item
10850 Conditional execution.
10852 This feature has been implemented numerous times in various versions
10853 of @code{make}; it seems a natural extension derived from the features
10854 of the C preprocessor and similar macro languages and is not a
10855 revolutionary concept.  @xref{Conditionals, ,Conditional Parts of Makefiles}.
10857 @item
10858 Specify a search path for included makefiles.
10859 @xref{Include, ,Including Other Makefiles}.
10861 @item
10862 Specify extra makefiles to read with an environment variable.
10863 @xref{MAKEFILES Variable, ,The Variable @code{MAKEFILES}}.
10865 @item
10866 Strip leading sequences of @samp{./} from file names, so that
10867 @file{./@var{file}} and @file{@var{file}} are considered to be the
10868 same file.@refill
10870 @item
10871 Use a special search method for library prerequisites written in the
10872 form @samp{-l@var{name}}.
10873 @xref{Libraries/Search, ,Directory Search for Link Libraries}.
10875 @item
10876 Allow suffixes for suffix rules
10877 (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}) to contain any
10878 characters.  In other versions of @code{make}, they must begin with
10879 @samp{.} and not contain any @samp{/} characters.
10881 @item
10882 Keep track of the current level of @code{make} recursion using the
10883 variable @code{MAKELEVEL}.  @xref{Recursion, ,Recursive Use of @code{make}}.
10885 @item
10886 Provide any goals given on the command line in the variable
10887 @code{MAKECMDGOALS}.  @xref{Goals, ,Arguments to Specify the Goals}.
10889 @item
10890 Specify static pattern rules.  @xref{Static Pattern, ,Static Pattern Rules}.
10892 @item
10893 Provide selective @code{vpath} search.
10894 @xref{Directory Search, ,Searching Directories for Prerequisites}.
10896 @item
10897 Provide computed variable references.
10898 @xref{Reference, ,Basics of Variable References}.
10900 @item
10901 Update makefiles.  @xref{Remaking Makefiles, ,How Makefiles Are Remade}.
10902 System V @code{make} has a very, very limited form of this
10903 functionality in that it will check out SCCS files for makefiles.
10905 @item
10906 Various new built-in implicit rules.
10907 @xref{Catalogue of Rules, ,Catalogue of Implicit Rules}.
10909 @item
10910 The built-in variable @samp{MAKE_VERSION} gives the version number of
10911 @code{make}.
10912 @vindex MAKE_VERSION
10913 @end itemize
10915 @node Missing, Makefile Conventions, Features, Top
10916 @chapter Incompatibilities and Missing Features
10917 @cindex incompatibilities
10918 @cindex missing features
10919 @cindex features, missing
10921 The @code{make} programs in various other systems support a few features
10922 that are not implemented in GNU @code{make}.  The POSIX.2 standard
10923 (@cite{IEEE Standard 1003.2-1992}) which specifies @code{make} does not
10924 require any of these features.@refill
10926 @itemize @bullet
10927 @item
10928 A target of the form @samp{@var{file}((@var{entry}))} stands for a member
10929 of archive file @var{file}.  The member is chosen, not by name, but by
10930 being an object file which defines the linker symbol @var{entry}.@refill
10932 This feature was not put into GNU @code{make} because of the
10933 non-modularity of putting knowledge into @code{make} of the internal
10934 format of archive file symbol tables.
10935 @xref{Archive Symbols, ,Updating Archive Symbol Directories}.
10937 @item
10938 Suffixes (used in suffix rules) that end with the character @samp{~}
10939 have a special meaning to System V @code{make};
10940 they refer to the SCCS file that corresponds
10941 to the file one would get without the @samp{~}.  For example, the
10942 suffix rule @samp{.c~.o} would make the file @file{@var{n}.o} from
10943 the SCCS file @file{s.@var{n}.c}.  For complete coverage, a whole
10944 series of such suffix rules is required.
10945 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
10947 In GNU @code{make}, this entire series of cases is handled by two
10948 pattern rules for extraction from SCCS, in combination with the
10949 general feature of rule chaining.
10950 @xref{Chained Rules, ,Chains of Implicit Rules}.
10952 @item
10953 In System V and 4.3 BSD @code{make}, files found by @code{VPATH}
10954 search (@pxref{Directory Search, ,Searching Directories for
10955 Prerequisites}) have their names changed inside recipes.  We feel it
10956 is much cleaner to always use automatic variables and thus make this
10957 feature obsolete.@refill
10959 @item
10960 In some Unix @code{make}s, the automatic variable @code{$*} appearing in
10961 the prerequisites of a rule has the amazingly strange ``feature'' of
10962 expanding to the full name of the @emph{target of that rule}.  We cannot
10963 imagine what went on in the minds of Unix @code{make} developers to do
10964 this; it is utterly inconsistent with the normal definition of @code{$*}.
10965 @vindex * @r{(automatic variable), unsupported bizarre usage}
10967 @item
10968 In some Unix @code{make}s, implicit rule search (@pxref{Implicit
10969 Rules, ,Using Implicit Rules}) is apparently done for @emph{all}
10970 targets, not just those without recipes.  This means you can
10971 do:@refill
10973 @example
10974 @group
10975 foo.o:
10976         cc -c foo.c
10977 @end group
10978 @end example
10980 @noindent
10981 and Unix @code{make} will intuit that @file{foo.o} depends on
10982 @file{foo.c}.@refill
10984 We feel that such usage is broken.  The prerequisite properties of
10985 @code{make} are well-defined (for GNU @code{make}, at least),
10986 and doing such a thing simply does not fit the model.@refill
10988 @item
10989 GNU @code{make} does not include any built-in implicit rules for
10990 compiling or preprocessing EFL programs.  If we hear of anyone who is
10991 using EFL, we will gladly add them.
10993 @item
10994 It appears that in SVR4 @code{make}, a suffix rule can be specified
10995 with no recipe, and it is treated as if it had an empty recipe
10996 (@pxref{Empty Recipes}).  For example:
10998 @example
10999 .c.a:
11000 @end example
11002 @noindent
11003 will override the built-in @file{.c.a} suffix rule.
11005 We feel that it is cleaner for a rule without a recipe to always simply
11006 add to the prerequisite list for the target.  The above example can be
11007 easily rewritten to get the desired behavior in GNU @code{make}:
11009 @example
11010 .c.a: ;
11011 @end example
11013 @item
11014 Some versions of @code{make} invoke the shell with the @samp{-e} flag,
11015 except under @samp{-k} (@pxref{Testing, ,Testing the Compilation of a
11016 Program}).  The @samp{-e} flag tells the shell to exit as soon as any
11017 program it runs returns a nonzero status.  We feel it is cleaner to
11018 write each line of the recipe to stand on its own and not require this
11019 special treatment.
11020 @end itemize
11022 @comment The makefile standards are in a separate file that is also
11023 @comment included by standards.texi.
11024 @include make-stds.texi
11026 @node Quick Reference, Error Messages, Makefile Conventions, Top
11027 @appendix Quick Reference
11029 This appendix summarizes the directives, text manipulation functions,
11030 and special variables which GNU @code{make} understands.
11031 @xref{Special Targets}, @ref{Catalogue of Rules, ,Catalogue of Implicit Rules},
11032 and @ref{Options Summary, ,Summary of Options},
11033 for other summaries.
11035 Here is a summary of the directives GNU @code{make} recognizes:
11037 @table @code
11038 @item define @var{variable}
11039 @itemx define @var{variable} =
11040 @itemx define @var{variable} :=
11041 @itemx define @var{variable} ::=
11042 @itemx define @var{variable} +=
11043 @itemx define @var{variable} ?=
11044 @itemx endef
11045 Define multi-line variables.@*
11046 @xref{Multi-Line}.
11048 @item undefine @var{variable}
11049 Undefining variables.@*
11050 @xref{Undefine Directive}.
11052 @item ifdef @var{variable}
11053 @itemx ifndef @var{variable}
11054 @itemx ifeq (@var{a},@var{b})
11055 @itemx ifeq "@var{a}" "@var{b}"
11056 @itemx ifeq '@var{a}' '@var{b}'
11057 @itemx ifneq (@var{a},@var{b})
11058 @itemx ifneq "@var{a}" "@var{b}"
11059 @itemx ifneq '@var{a}' '@var{b}'
11060 @itemx else
11061 @itemx endif
11062 Conditionally evaluate part of the makefile.@*
11063 @xref{Conditionals}.
11065 @item include @var{file}
11066 @itemx -include @var{file}
11067 @itemx sinclude @var{file}
11068 Include another makefile.@*
11069 @xref{Include, ,Including Other Makefiles}.
11071 @item override @var{variable-assignment}
11072 Define a variable, overriding any previous definition, even one from
11073 the command line.@*
11074 @xref{Override Directive, ,The @code{override} Directive}.
11076 @item export
11077 Tell @code{make} to export all variables to child processes by default.@*
11078 @xref{Variables/Recursion, , Communicating Variables to a Sub-@code{make}}.
11080 @item export @var{variable}
11081 @itemx export @var{variable-assignment}
11082 @itemx unexport @var{variable}
11083 Tell @code{make} whether or not to export a particular variable to child
11084 processes.@*
11085 @xref{Variables/Recursion, , Communicating Variables to a Sub-@code{make}}.
11087 @item private @var{variable-assignment}
11088 Do not allow this variable assignment to be inherited by prerequisites.@*
11089 @xref{Suppressing Inheritance}.
11091 @item vpath @var{pattern} @var{path}
11092 Specify a search path for files matching a @samp{%} pattern.@*
11093 @xref{Selective Search, , The @code{vpath} Directive}.
11095 @item vpath @var{pattern}
11096 Remove all search paths previously specified for @var{pattern}.
11098 @item vpath
11099 Remove all search paths previously specified in any @code{vpath}
11100 directive.
11101 @end table
11103 Here is a summary of the built-in functions (@pxref{Functions}):
11105 @table @code
11106 @item $(subst @var{from},@var{to},@var{text})
11107 Replace @var{from} with @var{to} in @var{text}.@*
11108 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11110 @item $(patsubst @var{pattern},@var{replacement},@var{text})
11111 Replace words matching @var{pattern} with @var{replacement} in @var{text}.@*
11112 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11114 @item $(strip @var{string})
11115 Remove excess whitespace characters from @var{string}.@*
11116 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11118 @item $(findstring @var{find},@var{text})
11119 Locate @var{find} in @var{text}.@*
11120 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11122 @item $(filter @var{pattern}@dots{},@var{text})
11123 Select words in @var{text} that match one of the @var{pattern} words.@*
11124 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11126 @item $(filter-out @var{pattern}@dots{},@var{text})
11127 Select words in @var{text} that @emph{do not} match any of the @var{pattern} words.@*
11128 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11130 @item $(sort @var{list})
11131 Sort the words in @var{list} lexicographically, removing duplicates.@*
11132 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11134 @item $(word @var{n},@var{text})
11135 Extract the @var{n}th word (one-origin) of @var{text}.@*
11136 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11138 @item $(words @var{text})
11139 Count the number of words in @var{text}.@*
11140 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11142 @item $(wordlist @var{s},@var{e},@var{text})
11143 Returns the list of words in @var{text} from @var{s} to @var{e}.@*
11144 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11146 @item $(firstword @var{names}@dots{})
11147 Extract the first word of @var{names}.@*
11148 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11150 @item $(lastword @var{names}@dots{})
11151 Extract the last word of @var{names}.@*
11152 @xref{Text Functions, , Functions for String Substitution and Analysis}.
11154 @item $(dir @var{names}@dots{})
11155 Extract the directory part of each file name.@*
11156 @xref{File Name Functions, ,Functions for File Names}.
11158 @item $(notdir @var{names}@dots{})
11159 Extract the non-directory part of each file name.@*
11160 @xref{File Name Functions, ,Functions for File Names}.
11162 @item $(suffix @var{names}@dots{})
11163 Extract the suffix (the last @samp{.} and following characters) of each file name.@*
11164 @xref{File Name Functions, ,Functions for File Names}.
11166 @item $(basename @var{names}@dots{})
11167 Extract the base name (name without suffix) of each file name.@*
11168 @xref{File Name Functions, ,Functions for File Names}.
11170 @item $(addsuffix @var{suffix},@var{names}@dots{})
11171 Append @var{suffix} to each word in @var{names}.@*
11172 @xref{File Name Functions, ,Functions for File Names}.
11174 @item $(addprefix @var{prefix},@var{names}@dots{})
11175 Prepend @var{prefix} to each word in @var{names}.@*
11176 @xref{File Name Functions, ,Functions for File Names}.
11178 @item $(join @var{list1},@var{list2})
11179 Join two parallel lists of words.@*
11180 @xref{File Name Functions, ,Functions for File Names}.
11182 @item $(wildcard @var{pattern}@dots{})
11183 Find file names matching a shell file name pattern (@emph{not} a
11184 @samp{%} pattern).@*
11185 @xref{Wildcard Function, ,The Function @code{wildcard}}.
11187 @item $(realpath @var{names}@dots{})
11188 For each file name in @var{names}, expand to an absolute name that
11189 does not contain any @code{.}, @code{..}, nor symlinks.@*
11190 @xref{File Name Functions, ,Functions for File Names}.
11192 @item $(abspath @var{names}@dots{})
11193 For each file name in @var{names}, expand to an absolute name that
11194 does not contain any @code{.} or @code{..} components, but preserves
11195 symlinks.@*
11196 @xref{File Name Functions, ,Functions for File Names}.
11198 @item $(error @var{text}@dots{})
11199 When this function is evaluated, @code{make} generates a fatal error
11200 with the message @var{text}.@*
11201 @xref{Make Control Functions, ,Functions That Control Make}.
11203 @item $(warning @var{text}@dots{})
11204 When this function is evaluated, @code{make} generates a warning with
11205 the message @var{text}.@*
11206 @xref{Make Control Functions, ,Functions That Control Make}.
11208 @item $(shell @var{command})
11209 Execute a shell command and return its output.@*
11210 @xref{Shell Function, , The @code{shell} Function}.
11212 @item $(origin @var{variable})
11213 Return a string describing how the @code{make} variable @var{variable} was
11214 defined.@*
11215 @xref{Origin Function, , The @code{origin} Function}.
11217 @item $(flavor @var{variable})
11218 Return a string describing the flavor of the @code{make} variable
11219 @var{variable}.@*
11220 @xref{Flavor Function, , The @code{flavor} Function}.
11222 @item $(foreach @var{var},@var{words},@var{text})
11223 Evaluate @var{text} with @var{var} bound to each word in @var{words},
11224 and concatenate the results.@*
11225 @xref{Foreach Function, ,The @code{foreach} Function}.
11227 @item $(if @var{condition},@var{then-part}[,@var{else-part}])
11228 Evaluate the condition @var{condition}; if it's non-empty substitute
11229 the expansion of the @var{then-part} otherwise substitute the
11230 expansion of the @var{else-part}.@*
11231 @xref{Conditional Functions, ,Functions for Conditionals}.
11233 @item $(or @var{condition1}[,@var{condition2}[,@var{condition3}@dots{}]])
11234 Evaluate each condition @var{conditionN} one at a time; substitute the
11235 first non-empty expansion.  If all expansions are empty, substitute
11236 the empty string.@*
11237 @xref{Conditional Functions, ,Functions for Conditionals}.
11239 @item $(and @var{condition1}[,@var{condition2}[,@var{condition3}@dots{}]])
11240 Evaluate each condition @var{conditionN} one at a time; if any
11241 expansion results in the empty string substitute the empty string.  If
11242 all expansions result in a non-empty string, substitute the expansion
11243 of the last @var{condition}.@*
11244 @xref{Conditional Functions, ,Functions for Conditionals}.
11246 @item $(call @var{var},@var{param},@dots{})
11247 Evaluate the variable @var{var} replacing any references to @code{$(1)},
11248 @code{$(2)} with the first, second, etc.@: @var{param} values.@*
11249 @xref{Call Function, ,The @code{call} Function}.
11251 @item $(eval @var{text})
11252 Evaluate @var{text} then read the results as makefile commands.
11253 Expands to the empty string.@*
11254 @xref{Eval Function, ,The @code{eval} Function}.
11256 @item $(value @var{var})
11257 Evaluates to the contents of the variable @var{var}, with no expansion
11258 performed on it.@*
11259 @xref{Value Function, ,The @code{value} Function}.
11260 @end table
11262 Here is a summary of the automatic variables.
11263 @xref{Automatic Variables},
11264 for full information.
11266 @table @code
11267 @item $@@
11268 The file name of the target.
11270 @item $%
11271 The target member name, when the target is an archive member.
11273 @item $<
11274 The name of the first prerequisite.
11276 @item $?
11277 The names of all the prerequisites that are
11278 newer than the target, with spaces between them.
11279 For prerequisites which are archive members, only
11280 the named member is used (@pxref{Archives}).
11282 @item $^
11283 @itemx $+
11284 The names of all the prerequisites, with spaces between them.  For
11285 prerequisites which are archive members, only the named member is used
11286 (@pxref{Archives}).  The value of @code{$^} omits duplicate
11287 prerequisites, while @code{$+} retains them and preserves their order.
11289 @item $*
11290 The stem with which an implicit rule matches
11291 (@pxref{Pattern Match, ,How Patterns Match}).
11293 @item $(@@D)
11294 @itemx $(@@F)
11295 The directory part and the file-within-directory part of @code{$@@}.
11297 @item $(*D)
11298 @itemx $(*F)
11299 The directory part and the file-within-directory part of @code{$*}.
11301 @item $(%D)
11302 @itemx $(%F)
11303 The directory part and the file-within-directory part of @code{$%}.
11305 @item $(<D)
11306 @itemx $(<F)
11307 The directory part and the file-within-directory part of @code{$<}.
11309 @item $(^D)
11310 @itemx $(^F)
11311 The directory part and the file-within-directory part of @code{$^}.
11313 @item $(+D)
11314 @itemx $(+F)
11315 The directory part and the file-within-directory part of @code{$+}.
11317 @item $(?D)
11318 @itemx $(?F)
11319 The directory part and the file-within-directory part of @code{$?}.
11320 @end table
11322 These variables are used specially by GNU @code{make}:
11324 @table @code
11325 @item MAKEFILES
11327 Makefiles to be read on every invocation of @code{make}.@*
11328 @xref{MAKEFILES Variable, ,The Variable @code{MAKEFILES}}.
11330 @item VPATH
11332 Directory search path for files not found in the current directory.@*
11333 @xref{General Search, , @code{VPATH} Search Path for All Prerequisites}.
11335 @item SHELL
11337 The name of the system default command interpreter, usually @file{/bin/sh}.
11338 You can set @code{SHELL} in the makefile to change the shell used to run
11339 recipes.  @xref{Execution, ,Recipe Execution}.  The @code{SHELL}
11340 variable is handled specially when importing from and exporting to the
11341 environment.  @xref{Choosing the Shell}.
11343 @item MAKESHELL
11345 On MS-DOS only, the name of the command interpreter that is to be used
11346 by @code{make}.  This value takes precedence over the value of
11347 @code{SHELL}.  @xref{Execution, ,MAKESHELL variable}.
11349 @item MAKE
11351 The name with which @code{make} was invoked.  Using this variable in
11352 recipes has special meaning.  @xref{MAKE Variable, ,How the
11353 @code{MAKE} Variable Works}.
11355 @item MAKELEVEL
11357 The number of levels of recursion (sub-@code{make}s).@*
11358 @xref{Variables/Recursion}.
11360 @item MAKEFLAGS
11362 The flags given to @code{make}.  You can set this in the environment or
11363 a makefile to set flags.@*
11364 @xref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
11366 It is @emph{never} appropriate to use @code{MAKEFLAGS} directly in a
11367 recipe line: its contents may not be quoted correctly for use in the
11368 shell.  Always allow recursive @code{make}'s to obtain these values
11369 through the environment from its parent.
11371 @item MAKECMDGOALS
11373 The targets given to @code{make} on the command line.  Setting this
11374 variable has no effect on the operation of @code{make}.@*
11375 @xref{Goals, ,Arguments to Specify the Goals}.
11377 @item CURDIR
11379 Set to the pathname of the current working directory (after all
11380 @code{-C} options are processed, if any).  Setting this variable has no
11381 effect on the operation of @code{make}.@*
11382 @xref{Recursion, ,Recursive Use of @code{make}}.
11384 @item SUFFIXES
11386 The default list of suffixes before @code{make} reads any makefiles.
11388 @item .LIBPATTERNS
11389 Defines the naming of the libraries @code{make} searches for, and their
11390 order.@*
11391 @xref{Libraries/Search, ,Directory Search for Link Libraries}.
11392 @end table
11394 @node Error Messages, Complex Makefile, Quick Reference, Top
11395 @comment  node-name,  next,  previous,  up
11396 @appendix Errors Generated by Make
11398 Here is a list of the more common errors you might see generated by
11399 @code{make}, and some information about what they mean and how to fix
11400 them.
11402 Sometimes @code{make} errors are not fatal, especially in the presence
11403 of a @code{-} prefix on a recipe line, or the @code{-k} command line
11404 option.  Errors that are fatal are prefixed with the string
11405 @code{***}.
11407 Error messages are all either prefixed with the name of the program
11408 (usually @samp{make}), or, if the error is found in a makefile, the name
11409 of the file and line number containing the problem.
11411 In the table below, these common prefixes are left off.
11413 @table @samp
11415 @item [@var{foo}] Error @var{NN}
11416 @itemx [@var{foo}] @var{signal description}
11417 These errors are not really @code{make} errors at all.  They mean that a
11418 program that @code{make} invoked as part of a recipe returned a
11419 non-0 error code (@samp{Error @var{NN}}), which @code{make} interprets
11420 as failure, or it exited in some other abnormal fashion (with a
11421 signal of some type).  @xref{Errors, ,Errors in Recipes}.
11423 If no @code{***} is attached to the message, then the sub-process failed
11424 but the rule in the makefile was prefixed with the @code{-} special
11425 character, so @code{make} ignored the error.
11427 @item missing separator.  Stop.
11428 @itemx missing separator (did you mean TAB instead of 8 spaces?).  Stop.
11429 This means that @code{make} could not understand much of anything
11430 about the makefile line it just read.  GNU @code{make} looks for
11431 various separators (@code{:}, @code{=}, recipe prefix characters,
11432 etc.) to indicate what kind of line it's parsing.  This message means
11433 it couldn't find a valid one.
11435 One of the most common reasons for this message is that you (or
11436 perhaps your oh-so-helpful editor, as is the case with many MS-Windows
11437 editors) have attempted to indent your recipe lines with spaces
11438 instead of a tab character.  In this case, @code{make} will use the
11439 second form of the error above.  Remember that every line in the
11440 recipe must begin with a tab character (unless you set
11441 @code{.RECIPEPREFIX}; @pxref{Special Variables}).  Eight spaces do not
11442 count.  @xref{Rule Syntax}.
11444 @item recipe commences before first target.  Stop.
11445 @itemx missing rule before recipe.  Stop.
11446 This means the first thing in the makefile seems to be part of a
11447 recipe: it begins with a recipe prefix character and doesn't appear to
11448 be a legal @code{make} directive (such as a variable assignment).
11449 Recipes must always be associated with a target.
11451 The second form is generated if the line has a semicolon as the first
11452 non-whitespace character; @code{make} interprets this to mean you left
11453 out the "target: prerequisite" section of a rule.  @xref{Rule Syntax}.
11455 @item No rule to make target `@var{xxx}'.
11456 @itemx No rule to make target `@var{xxx}', needed by `@var{yyy}'.
11457 This means that @code{make} decided it needed to build a target, but
11458 then couldn't find any instructions in the makefile on how to do that,
11459 either explicit or implicit (including in the default rules database).
11461 If you want that file to be built, you will need to add a rule to your
11462 makefile describing how that target can be built.  Other possible
11463 sources of this problem are typos in the makefile (if that file name is
11464 wrong) or a corrupted source tree (if that file is not supposed to be
11465 built, but rather only a prerequisite).
11467 @item No targets specified and no makefile found.  Stop.
11468 @itemx No targets.  Stop.
11469 The former means that you didn't provide any targets to be built on the
11470 command line, and @code{make} couldn't find any makefiles to read in.
11471 The latter means that some makefile was found, but it didn't contain any
11472 default goal and none was given on the command line.  GNU @code{make}
11473 has nothing to do in these situations.
11474 @xref{Makefile Arguments, ,Arguments to Specify the Makefile}.@refill
11476 @item Makefile `@var{xxx}' was not found.
11477 @itemx Included makefile `@var{xxx}' was not found.
11478 A makefile specified on the command line (first form) or included
11479 (second form) was not found.
11481 @item warning: overriding recipe for target `@var{xxx}'
11482 @itemx warning: ignoring old recipe for target `@var{xxx}'
11483 GNU @code{make} allows only one recipe to be specified per target
11484 (except for double-colon rules).  If you give a recipe for a target
11485 which already has been defined to have one, this warning is issued and
11486 the second recipe will overwrite the first.  @xref{Multiple Rules,
11487 ,Multiple Rules for One Target}.
11489 @item Circular @var{xxx} <- @var{yyy} dependency dropped.
11490 This means that @code{make} detected a loop in the dependency graph:
11491 after tracing the prerequisite @var{yyy} of target @var{xxx}, and its
11492 prerequisites, etc., one of them depended on @var{xxx} again.
11494 @item Recursive variable `@var{xxx}' references itself (eventually).  Stop.
11495 This means you've defined a normal (recursive) @code{make} variable
11496 @var{xxx} that, when it's expanded, will refer to itself (@var{xxx}).
11497 This is not allowed; either use simply-expanded variables (@samp{:=}
11498 or @samp{::=}) or use the append operator (@samp{+=}).  @xref{Using
11499 Variables, ,How to Use Variables}.
11501 @item Unterminated variable reference.  Stop.
11502 This means you forgot to provide the proper closing parenthesis
11503 or brace in your variable or function reference.
11505 @item insufficient arguments to function `@var{xxx}'.  Stop.
11506 This means you haven't provided the requisite number of arguments for
11507 this function.  See the documentation of the function for a description
11508 of its arguments.  @xref{Functions, ,Functions for Transforming Text}.
11510 @item missing target pattern.  Stop.
11511 @itemx multiple target patterns.  Stop.
11512 @itemx target pattern contains no `%'.  Stop.
11513 @itemx mixed implicit and static pattern rules.  Stop.
11514 These are generated for malformed static pattern rules.  The first means
11515 there's no pattern in the target section of the rule; the second means
11516 there are multiple patterns in the target section; the third means
11517 the target doesn't contain a pattern character (@code{%}); and the
11518 fourth means that all three parts of the static pattern rule contain
11519 pattern characters (@code{%})--only the first two parts should.
11520 @xref{Static Usage, ,Syntax of Static Pattern Rules}.
11522 @item warning: -jN forced in submake: disabling jobserver mode.
11523 This warning and the next are generated if @code{make} detects error
11524 conditions related to parallel processing on systems where
11525 sub-@code{make}s can communicate (@pxref{Options/Recursion,
11526 ,Communicating Options to a Sub-@code{make}}).  This warning is
11527 generated if a recursive invocation of a @code{make} process is forced
11528 to have @samp{-j@var{N}} in its argument list (where @var{N} is greater
11529 than one).  This could happen, for example, if you set the @code{MAKE}
11530 environment variable to @samp{make -j2}.  In this case, the
11531 sub-@code{make} doesn't communicate with other @code{make} processes and
11532 will simply pretend it has two jobs of its own.
11534 @item warning: jobserver unavailable: using -j1.  Add `+' to parent make rule.
11535 In order for @code{make} processes to communicate, the parent will pass
11536 information to the child.  Since this could result in problems if the
11537 child process isn't actually a @code{make}, the parent will only do this
11538 if it thinks the child is a @code{make}.  The parent uses the normal
11539 algorithms to determine this (@pxref{MAKE Variable, ,How the @code{MAKE}
11540 Variable Works}).  If the makefile is constructed such that the parent
11541 doesn't know the child is a @code{make} process, then the child will
11542 receive only part of the information necessary.  In this case, the child
11543 will generate this warning message and proceed with its build in a
11544 sequential manner.
11546 @end table
11548 @node Complex Makefile, GNU Free Documentation License, Error Messages, Top
11549 @appendix Complex Makefile Example
11551 Here is the makefile for the GNU @code{tar} program.  This is a
11552 moderately complex makefile.  The first line uses a @code{#!} setting
11553 to allow the makefile to be executed directly.
11555 Because it is the first target, the default goal is @samp{all}.  An
11556 interesting feature of this makefile is that @file{testpad.h} is a
11557 source file automatically created by the @code{testpad} program,
11558 itself compiled from @file{testpad.c}.
11560 If you type @samp{make} or @samp{make all}, then @code{make} creates
11561 the @file{tar} executable, the @file{rmt} daemon that provides
11562 remote tape access, and the @file{tar.info} Info file.
11564 If you type @samp{make install}, then @code{make} not only creates
11565 @file{tar}, @file{rmt}, and @file{tar.info}, but also installs
11566 them.
11568 If you type @samp{make clean}, then @code{make} removes the @samp{.o}
11569 files, and the @file{tar}, @file{rmt}, @file{testpad},
11570 @file{testpad.h}, and @file{core} files.
11572 If you type @samp{make distclean}, then @code{make} not only removes
11573 the same files as does @samp{make clean} but also the
11574 @file{TAGS}, @file{Makefile}, and @file{config.status} files.
11575 (Although it is not evident, this makefile (and
11576 @file{config.status}) is generated by the user with the
11577 @code{configure} program, which is provided in the @code{tar}
11578 distribution, but is not shown here.)
11580 If you type @samp{make realclean}, then @code{make} removes the same
11581 files as does @samp{make distclean} and also removes the Info files
11582 generated from @file{tar.texinfo}.
11584 In addition, there are targets @code{shar} and @code{dist} that create
11585 distribution kits.
11587 @example
11588 @group
11589 #!/usr/bin/make -f
11590 # Generated automatically from Makefile.in by configure.
11591 # Un*x Makefile for GNU tar program.
11592 # Copyright (C) 1991 Free Software Foundation, Inc.
11593 @end group
11595 @group
11596 # This program is free software; you can redistribute
11597 # it and/or modify it under the terms of the GNU
11598 # General Public License @dots{}
11599 @dots{}
11600 @dots{}
11601 @end group
11603 SHELL = /bin/sh
11605 #### Start of system configuration section. ####
11607 srcdir = .
11609 @group
11610 # If you use gcc, you should either run the
11611 # fixincludes script that comes with it or else use
11612 # gcc with the -traditional option.  Otherwise ioctl
11613 # calls will be compiled incorrectly on some systems.
11614 CC = gcc -O
11615 YACC = bison -y
11616 INSTALL = /usr/local/bin/install -c
11617 INSTALLDATA = /usr/local/bin/install -c -m 644
11618 @end group
11620 # Things you might add to DEFS:
11621 # -DSTDC_HEADERS        If you have ANSI C headers and
11622 #                       libraries.
11623 # -DPOSIX               If you have POSIX.1 headers and
11624 #                       libraries.
11625 # -DBSD42               If you have sys/dir.h (unless
11626 #                       you use -DPOSIX), sys/file.h,
11627 #                       and st_blocks in `struct stat'.
11628 # -DUSG                 If you have System V/ANSI C
11629 #                       string and memory functions
11630 #                       and headers, sys/sysmacros.h,
11631 #                       fcntl.h, getcwd, no valloc,
11632 #                       and ndir.h (unless
11633 #                       you use -DDIRENT).
11634 # -DNO_MEMORY_H         If USG or STDC_HEADERS but do not
11635 #                       include memory.h.
11636 # -DDIRENT              If USG and you have dirent.h
11637 #                       instead of ndir.h.
11638 # -DSIGTYPE=int         If your signal handlers
11639 #                       return int, not void.
11640 # -DNO_MTIO             If you lack sys/mtio.h
11641 #                       (magtape ioctls).
11642 # -DNO_REMOTE           If you do not have a remote shell
11643 #                       or rexec.
11644 # -DUSE_REXEC           To use rexec for remote tape
11645 #                       operations instead of
11646 #                       forking rsh or remsh.
11647 # -DVPRINTF_MISSING     If you lack vprintf function
11648 #                       (but have _doprnt).
11649 # -DDOPRNT_MISSING      If you lack _doprnt function.
11650 #                       Also need to define
11651 #                       -DVPRINTF_MISSING.
11652 # -DFTIME_MISSING       If you lack ftime system call.
11653 # -DSTRSTR_MISSING      If you lack strstr function.
11654 # -DVALLOC_MISSING      If you lack valloc function.
11655 # -DMKDIR_MISSING       If you lack mkdir and
11656 #                       rmdir system calls.
11657 # -DRENAME_MISSING      If you lack rename system call.
11658 # -DFTRUNCATE_MISSING   If you lack ftruncate
11659 #                       system call.
11660 # -DV7                  On Version 7 Unix (not
11661 #                       tested in a long time).
11662 # -DEMUL_OPEN3          If you lack a 3-argument version
11663 #                       of open, and want to emulate it
11664 #                       with system calls you do have.
11665 # -DNO_OPEN3            If you lack the 3-argument open
11666 #                       and want to disable the tar -k
11667 #                       option instead of emulating open.
11668 # -DXENIX               If you have sys/inode.h
11669 #                       and need it 94 to be included.
11671 DEFS =  -DSIGTYPE=int -DDIRENT -DSTRSTR_MISSING \
11672         -DVPRINTF_MISSING -DBSD42
11673 # Set this to rtapelib.o unless you defined NO_REMOTE,
11674 # in which case make it empty.
11675 RTAPELIB = rtapelib.o
11676 LIBS =
11677 DEF_AR_FILE = /dev/rmt8
11678 DEFBLOCKING = 20
11680 @group
11681 CDEBUG = -g
11682 CFLAGS = $(CDEBUG) -I. -I$(srcdir) $(DEFS) \
11683         -DDEF_AR_FILE=\"$(DEF_AR_FILE)\" \
11684         -DDEFBLOCKING=$(DEFBLOCKING)
11685 LDFLAGS = -g
11686 @end group
11688 @group
11689 prefix = /usr/local
11690 # Prefix for each installed program,
11691 # normally empty or `g'.
11692 binprefix =
11694 # The directory to install tar in.
11695 bindir = $(prefix)/bin
11697 # The directory to install the info files in.
11698 infodir = $(prefix)/info
11699 @end group
11701 #### End of system configuration section. ####
11703 @group
11704 SRCS_C  = tar.c create.c extract.c buffer.c   \
11705           getoldopt.c update.c gnu.c mangle.c \
11706           version.c list.c names.c diffarch.c \
11707           port.c wildmat.c getopt.c getopt1.c \
11708           regex.c
11709 SRCS_Y  = getdate.y
11710 SRCS    = $(SRCS_C) $(SRCS_Y)
11711 OBJS    = $(SRCS_C:.c=.o) $(SRCS_Y:.y=.o) $(RTAPELIB)
11712 @end group
11713 @group
11714 AUX =   README COPYING ChangeLog Makefile.in  \
11715         makefile.pc configure configure.in \
11716         tar.texinfo tar.info* texinfo.tex \
11717         tar.h port.h open3.h getopt.h regex.h \
11718         rmt.h rmt.c rtapelib.c alloca.c \
11719         msd_dir.h msd_dir.c tcexparg.c \
11720         level-0 level-1 backup-specs testpad.c
11721 @end group
11723 .PHONY: all
11724 all:    tar rmt tar.info
11726 @group
11727 tar:    $(OBJS)
11728         $(CC) $(LDFLAGS) -o $@@ $(OBJS) $(LIBS)
11729 @end group
11731 @group
11732 rmt:    rmt.c
11733         $(CC) $(CFLAGS) $(LDFLAGS) -o $@@ rmt.c
11734 @end group
11736 @group
11737 tar.info: tar.texinfo
11738         makeinfo tar.texinfo
11739 @end group
11741 @group
11742 .PHONY: install
11743 install: all
11744         $(INSTALL) tar $(bindir)/$(binprefix)tar
11745         -test ! -f rmt || $(INSTALL) rmt /etc/rmt
11746         $(INSTALLDATA) $(srcdir)/tar.info* $(infodir)
11747 @end group
11749 @group
11750 $(OBJS): tar.h port.h testpad.h
11751 regex.o buffer.o tar.o: regex.h
11752 # getdate.y has 8 shift/reduce conflicts.
11753 @end group
11755 @group
11756 testpad.h: testpad
11757         ./testpad
11758 @end group
11760 @group
11761 testpad: testpad.o
11762         $(CC) -o $@@ testpad.o
11763 @end group
11765 @group
11766 TAGS:   $(SRCS)
11767         etags $(SRCS)
11768 @end group
11770 @group
11771 .PHONY: clean
11772 clean:
11773         rm -f *.o tar rmt testpad testpad.h core
11774 @end group
11776 @group
11777 .PHONY: distclean
11778 distclean: clean
11779         rm -f TAGS Makefile config.status
11780 @end group
11782 @group
11783 .PHONY: realclean
11784 realclean: distclean
11785         rm -f tar.info*
11786 @end group
11788 @group
11789 .PHONY: shar
11790 shar: $(SRCS) $(AUX)
11791         shar $(SRCS) $(AUX) | compress \
11792           > tar-`sed -e '/version_string/!d' \
11793                      -e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
11794                      -e q
11795                      version.c`.shar.Z
11796 @end group
11798 @group
11799 .PHONY: dist
11800 dist: $(SRCS) $(AUX)
11801         echo tar-`sed \
11802              -e '/version_string/!d' \
11803              -e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
11804              -e q
11805              version.c` > .fname
11806         -rm -rf `cat .fname`
11807         mkdir `cat .fname`
11808         ln $(SRCS) $(AUX) `cat .fname`
11809         tar chZf `cat .fname`.tar.Z `cat .fname`
11810         -rm -rf `cat .fname` .fname
11811 @end group
11813 @group
11814 tar.zoo: $(SRCS) $(AUX)
11815         -rm -rf tmp.dir
11816         -mkdir tmp.dir
11817         -rm tar.zoo
11818         for X in $(SRCS) $(AUX) ; do \
11819             echo $$X ; \
11820             sed 's/$$/^M/' $$X \
11821             > tmp.dir/$$X ; done
11822         cd tmp.dir ; zoo aM ../tar.zoo *
11823         -rm -rf tmp.dir
11824 @end group
11825 @end example
11827 @node GNU Free Documentation License, Concept Index, Complex Makefile, Top
11828 @appendixsec GNU Free Documentation License
11829 @cindex FDL, GNU Free Documentation License
11830 @include fdl.texi
11832 @node Concept Index, Name Index, GNU Free Documentation License, Top
11833 @unnumbered Index of Concepts
11835 @printindex cp
11837 @node Name Index,  , Concept Index, Top
11838 @unnumbered Index of Functions, Variables, & Directives
11840 @printindex fn
11842 @bye