* New feature: -L option
[make.git] / doc / make.texi
blobe655850666d23b01cb7095fe6b455f4f72571308
1 \input texinfo                @c -*- Texinfo -*-
2 @c %**start of header
3 @setfilename make.info
4 @settitle GNU @code{make}
5 @setchapternewpage odd
6 @c %**end of header
8 @c FSF publishers: format makebook.texi instead of using this file directly.
10 @set RCSID $Id: make.texi,v 1.25 2005/02/28 07:48:23 psmith Exp $
11 @set EDITION 0.61
12 @set VERSION 3.80
13 @set UPDATED 23 Feb 2003
14 @set UPDATE-MONTH Feb 2003
15 @c ISBN provided by Lisa M. Opus Goldstein <opus@gnu.org>, 5 May 2004
16 @set ISBN 1-882114-83-5
18 @c finalout
20 @c ISPELL CHECK: done, 10 June 1993 --roland
21 @c ISPELL CHECK: done, 2000-06-25 --Martin Buchholz
23 @c Combine the variable and function indices:
24 @syncodeindex vr fn
25 @c Combine the program and concept indices:
26 @syncodeindex pg cp
28 @dircategory GNU Packages
29 @direntry
30 * Make: (make).            Remake files automatically.
31 @end direntry
33 @ifnottex
34 This file documents the GNU Make utility, which determines
35 automatically which pieces of a large program need to be recompiled,
36 and issues the commands to recompile them.
38 This is Edition @value{EDITION}, last updated @value{UPDATED},
39 of @cite{The GNU Make Manual}, for @code{make}, Version @value{VERSION}.
41 Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
42 1998, 1999, 2000, 2002, 2003, 2004
43 Free Software Foundation, Inc.
45 Permission is granted to copy, distribute and/or modify this document
46 under the terms of the GNU Free Documentation License, Version 1.1 or
47 any later version published by the Free Software Foundation; with no
48 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
49 Texts.  A copy of the license is included in the section entitled
50 ``GNU Free Documentation License''.
51 @end ifnottex
53 @iftex
54 @shorttitlepage GNU Make
55 @end iftex
56 @titlepage
57 @title GNU Make
58 @subtitle A Program for Directing Recompilation
59 @subtitle GNU @code{make} Version @value{VERSION}
60 @subtitle @value{UPDATE-MONTH}
61 @author Richard M. Stallman, Roland McGrath, Paul D. Smith
62 @page
63 @vskip 0pt plus 1filll
64 Copyright @copyright{} 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
65 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
66 @sp 2
67 Published by the Free Software Foundation @*
68 59 Temple Place -- Suite 330, @*
69 Boston, MA 02111-1307 USA @*
70 ISBN @value{ISBN} @*
72 Permission is granted to copy, distribute and/or modify this document
73 under the terms of the GNU Free Documentation License, Version 1.1 or
74 any later version published by the Free Software Foundation; with the
75 Invariant Sections being ``GNU General Public License'', the Front-Cover
76 Texts being ``A GNU Manual'', and with the Back-Cover Texts being as in
77 (a) below.  A copy of the license is included in the section entitled
78 ``GNU Free Documentation License''.
80 (a) The FSF's Back-Cover Text is:
82 @quotation
83       You have freedom to copy and modify this GNU Manual, like GNU
84       software.  Copies published by the Free Software Foundation raise
85       funds for GNU development.
86 @end quotation
87 @sp 2
88 Cover art by Etienne Suvasa.
89 @end titlepage
90 @page
92 @ifnottex
93 @node Top, Overview, (dir), (dir)
94 @top Make
96 The GNU @code{make} utility automatically determines which pieces of a
97 large program need to be recompiled, and issues the commands to
98 recompile them.@refill
100 This edition of the @cite{GNU Make Manual},
101 last updated @value{UPDATED},
102 documents GNU @code{make} Version @value{VERSION}.@refill
104 This manual describes @code{make} and contains the following chapters:@refill
105 @end ifnottex
107 @menu
108 * Overview::                    Overview of @code{make}.
109 * Introduction::                An introduction to @code{make}.
110 * Makefiles::                   Makefiles tell @code{make} what to do.
111 * Rules::                       Rules describe when a file must be remade.
112 * Commands::                    Commands say how to remake a file.
113 * Using Variables::             You can use variables to avoid repetition.
114 * Conditionals::                Use or ignore parts of the makefile based
115                                   on the values of variables.
116 * Functions::                   Many powerful ways to manipulate text.
117 * Invoking make: Running.       How to invoke @code{make} on the command line.
118 * Implicit Rules::              Use implicit rules to treat many files alike,
119                                   based on their file names.
120 * Archives::                    How @code{make} can update library archives.
121 * Features::                    Features GNU @code{make} has over other @code{make}s.
122 * Missing::                     What GNU @code{make} lacks from other @code{make}s.
123 * Makefile Conventions::        Conventions for writing makefiles for
124                                   GNU programs.
125 * Quick Reference::             A quick reference for experienced users.
126 * Error Messages::              A list of common errors generated by @code{make}.
127 * Complex Makefile::            A real example of a straightforward,
128                                   but nontrivial, makefile.
130 * GNU Free Documentation License::  License for copying this manual
131 * Concept Index::               Index of Concepts
132 * Name Index::                  Index of Functions, Variables, & Directives
134 @detailmenu
135  --- The Detailed Node Listing ---
137 Overview of @code{make}
139 * Preparing::                   Preparing and Running Make
140 * Reading::                     On Reading this Text
141 * Bugs::                        Problems and Bugs
143 An Introduction to Makefiles
145 * Rule Introduction::           What a rule looks like.
146 * Simple Makefile::             A Simple Makefile
147 * How Make Works::              How @code{make} Processes This Makefile
148 * Variables Simplify::          Variables Make Makefiles Simpler
149 * make Deduces::                Letting @code{make} Deduce the Commands
150 * Combine By Prerequisite::     Another Style of Makefile
151 * Cleanup::                     Rules for Cleaning the Directory
153 Writing Makefiles
155 * Makefile Contents::           What makefiles contain.
156 * Makefile Names::              How to name your makefile.
157 * Include::                     How one makefile can use another makefile.
158 * MAKEFILES Variable::          The environment can specify extra makefiles.
159 * MAKEFILE_LIST Variable::      Discover which makefiles have been read.
160 * Special Variables::           Other special variables.
161 * Remaking Makefiles::          How makefiles get remade.
162 * Overriding Makefiles::        How to override part of one makefile
163                                   with another makefile.
164 * Reading Makefiles::           How makefiles are parsed.
166 Writing Rules
168 * Rule Example::                An example explained.
169 * Rule Syntax::                 General syntax explained.
170 * Prerequisite Types::          There are two types of prerequisites.
171 * Wildcards::                   Using wildcard characters such as `*'.
172 * Directory Search::            Searching other directories for source files.
173 * Phony Targets::               Using a target that is not a real file's name.
174 * Force Targets::               You can use a target without commands
175                                   or prerequisites to mark other
176                                   targets as phony.
177 * Empty Targets::               When only the date matters and the
178                                   files are empty.
179 * Special Targets::             Targets with special built-in meanings.
180 * Multiple Targets::            When to make use of several targets in a rule.
181 * Multiple Rules::              How to use several rules with the same target.
182 * Static Pattern::              Static pattern rules apply to multiple targets
183                                   and can vary the prerequisites according to
184                                   the target name.
185 * Double-Colon::                How to use a special kind of rule to allow
186                                   several independent rules for one target.
187 * Automatic Prerequisites::     How to automatically generate rules giving
188                                   prerequisites from source files themselves.
190 Using Wildcard Characters in File Names
192 * Wildcard Examples::           Several examples
193 * Wildcard Pitfall::            Problems to avoid.
194 * Wildcard Function::           How to cause wildcard expansion where
195                                   it does not normally take place.
197 Searching Directories for Prerequisites
199 * General Search::              Specifying a search path that applies
200                                   to every prerequisite.
201 * Selective Search::            Specifying a search path
202                                   for a specified class of names.
203 * Search Algorithm::            When and how search paths are applied.
204 * Commands/Search::             How to write shell commands that work together
205                                   with search paths.
206 * Implicit/Search::             How search paths affect implicit rules.
207 * Libraries/Search::            Directory search for link libraries.
209 Static Pattern Rules
211 * Static Usage::                The syntax of static pattern rules.
212 * Static versus Implicit::      When are they better than implicit rules?
214 Writing the Commands in Rules
216 * Echoing::                     How to control when commands are echoed.
217 * Execution::                   How commands are executed.
218 * Parallel::                    How commands can be executed in parallel.
219 * Errors::                      What happens after a command execution error.
220 * Interrupts::                  What happens when a command is interrupted.
221 * Recursion::                   Invoking @code{make} from makefiles.
222 * Sequences::                   Defining canned sequences of commands.
223 * Empty Commands::              Defining useful, do-nothing commands.
225 Recursive Use of @code{make}
227 * MAKE Variable::               The special effects of using @samp{$(MAKE)}.
228 * Variables/Recursion::         How to communicate variables to a sub-@code{make}.
229 * Options/Recursion::           How to communicate options to a sub-@code{make}.
230 * -w Option::                   How the @samp{-w} or @samp{--print-directory} option
231                                   helps debug use of recursive @code{make} commands.
233 How to Use Variables
235 * Reference::                   How to use the value of a variable.
236 * Flavors::                     Variables come in two flavors.
237 * Advanced::                    Advanced features for referencing a variable.
238 * Values::                      All the ways variables get their values.
239 * Setting::                     How to set a variable in the makefile.
240 * Appending::                   How to append more text to the old value
241                                   of a variable.
242 * Override Directive::          How to set a variable in the makefile even if
243                                   the user has set it with a command argument.
244 * Defining::                    An alternate way to set a variable
245                                   to a verbatim string.
246 * Environment::                 Variable values can come from the environment.
247 * Target-specific::             Variable values can be defined on a per-target
248                                   basis.
249 * Pattern-specific::            Target-specific variable values can be applied
250                                   to a group of targets that match a pattern.
252 Advanced Features for Reference to Variables
254 * Substitution Refs::           Referencing a variable with
255                                   substitutions on the value.
256 * Computed Names::              Computing the name of the variable to refer to.
258 Conditional Parts of Makefiles
260 * Conditional Example::         Example of a conditional
261 * Conditional Syntax::          The syntax of conditionals.
262 * Testing Flags::               Conditionals that test flags.
264 Functions for Transforming Text
266 * Syntax of Functions::         How to write a function call.
267 * Text Functions::              General-purpose text manipulation functions.
268 * File Name Functions::         Functions for manipulating file names.
269 * Foreach Function::            Repeat some text with controlled variation.
270 * If Function::                 Conditionally expand a value.
271 * Call Function::               Expand a user-defined function.
272 * Value Function::              Return the un-expanded value of a variable.
273 * Eval Function::               Evaluate the arguments as makefile syntax.
274 * Origin Function::             Find where a variable got its value.
275 * Shell Function::              Substitute the output of a shell command.
276 * Make Control Functions::      Functions that control how make runs.
278 How to Run @code{make}
280 * Makefile Arguments::          How to specify which makefile to use.
281 * Goals::                       How to use goal arguments to specify which
282                                   parts of the makefile to use.
283 * Instead of Execution::        How to use mode flags to specify what
284                                   kind of thing to do with the commands
285                                   in the makefile other than simply
286                                   execute them.
287 * Avoiding Compilation::        How to avoid recompiling certain files.
288 * Overriding::                  How to override a variable to specify
289                                   an alternate compiler and other things.
290 * Testing::                     How to proceed past some errors, to
291                                   test compilation.
292 * Options Summary::             Summary of Options
294 Using Implicit Rules
296 * Using Implicit::              How to use an existing implicit rule
297                                   to get the commands for updating a file.
298 * Catalogue of Rules::          A list of built-in implicit rules.
299 * Implicit Variables::          How to change what predefined rules do.
300 * Chained Rules::               How to use a chain of implicit rules.
301 * Pattern Rules::               How to define new implicit rules.
302 * Last Resort::                 How to defining commands for rules
303                                   which cannot find any.
304 * Suffix Rules::                The old-fashioned style of implicit rule.
305 * Implicit Rule Search::        The precise algorithm for applying
306                                   implicit rules.
308 Defining and Redefining Pattern Rules
310 * Pattern Intro::               An introduction to pattern rules.
311 * Pattern Examples::            Examples of pattern rules.
312 * Automatic Variables::         How to use automatic variables in the
313                                   commands of implicit rules.
314 * Pattern Match::               How patterns match.
315 * Match-Anything Rules::        Precautions you should take prior to
316                                   defining rules that can match any
317                                   target file whatever.
318 * Canceling Rules::             How to override or cancel built-in rules.
320 Using @code{make} to Update Archive Files
322 * Archive Members::             Archive members as targets.
323 * Archive Update::              The implicit rule for archive member targets.
324 * Archive Pitfalls::            Dangers to watch out for when using archives.
325 * Archive Suffix Rules::        You can write a special kind of suffix rule
326                                   for updating archives.
328 Implicit Rule for Archive Member Targets
330 * Archive Symbols::             How to update archive symbol directories.
332 Makefile Conventions
334 * Makefile Basics::             General Conventions for Makefiles
335 * Utilities in Makefiles::      Utilities in Makefiles
336 * Command Variables::           Variables for Specifying Commands
337 * Directory Variables::         Variables for Installation Directories
338 * Standard Targets::            Standard Targets for Users
339 * Install Command Categories::  Three categories of commands in the `install'
341 @end detailmenu
342 @end menu
344 @node Overview, Introduction, Top, Top
345 @comment  node-name,  next,  previous,  up
346 @chapter Overview of @code{make}
348 The @code{make} utility automatically determines which pieces of a large
349 program need to be recompiled, and issues commands to recompile them.
350 This manual describes GNU @code{make}, which was implemented by Richard
351 Stallman and Roland McGrath.  Development since Version 3.76 has been
352 handled by Paul D. Smith.
354 GNU @code{make} conforms to section 6.2 of @cite{IEEE Standard
355 1003.2-1992} (POSIX.2).
356 @cindex POSIX
357 @cindex IEEE Standard 1003.2
358 @cindex standards conformance
360 Our examples show C programs, since they are most common, but you can use
361 @code{make} with any programming language whose compiler can be run with a
362 shell command.  Indeed, @code{make} is not limited to programs.  You can
363 use it to describe any task where some files must be updated automatically
364 from others whenever the others change.
366 @menu
367 * Preparing::                   Preparing and Running Make
368 * Reading::                     On Reading this Text
369 * Bugs::                        Problems and Bugs
370 @end menu
372 @node Preparing, Reading, Overview, Overview
373 @ifnottex
374 @heading Preparing and Running Make
375 @end ifnottex
377 To prepare to use @code{make}, you must write a file called
378 the @dfn{makefile} that describes the relationships among files
379 in your program and provides commands for updating each file.
380 In a program, typically, the executable file is updated from object
381 files, which are in turn made by compiling source files.@refill
383 Once a suitable makefile exists, each time you change some source files,
384 this simple shell command:
386 @example
387 make
388 @end example
390 @noindent
391 suffices to perform all necessary recompilations.  The @code{make} program
392 uses the makefile data base and the last-modification times of the files to
393 decide which of the files need to be updated.  For each of those files, it
394 issues the commands recorded in the data base.
396 You can provide command line arguments to @code{make} to control which
397 files should be recompiled, or how.  @xref{Running, ,How to Run
398 @code{make}}.
400 @node Reading, Bugs, Preparing, Overview
401 @section How to Read This Manual
403 If you are new to @code{make}, or are looking for a general
404 introduction, read the first few sections of each chapter, skipping the
405 later sections.  In each chapter, the first few sections contain
406 introductory or general information and the later sections contain
407 specialized or technical information.
408 @ifnottex
409 The exception is the second chapter, @ref{Introduction, ,An
410 Introduction to Makefiles}, all of which is introductory.
411 @end ifnottex
412 @iftex
413 The exception is @ref{Introduction, ,An Introduction to Makefiles},
414 all of which is introductory.
415 @end iftex
417 If you are familiar with other @code{make} programs, see @ref{Features,
418 ,Features of GNU @code{make}}, which lists the enhancements GNU
419 @code{make} has, and @ref{Missing, ,Incompatibilities and Missing
420 Features}, which explains the few things GNU @code{make} lacks that
421 others have.
423 For a quick summary, see @ref{Options Summary}, @ref{Quick Reference},
424 and @ref{Special Targets}.
426 @node Bugs,  , Reading, Overview
427 @section Problems and Bugs
428 @cindex reporting bugs
429 @cindex bugs, reporting
430 @cindex problems and bugs, reporting
432 If you have problems with GNU @code{make} or think you've found a bug,
433 please report it to the developers; we cannot promise to do anything but
434 we might well want to fix it.
436 Before reporting a bug, make sure you've actually found a real bug.
437 Carefully reread the documentation and see if it really says you can do
438 what you're trying to do.  If it's not clear whether you should be able
439 to do something or not, report that too; it's a bug in the
440 documentation!
442 Before reporting a bug or trying to fix it yourself, try to isolate it
443 to the smallest possible makefile that reproduces the problem.  Then
444 send us the makefile and the exact results @code{make} gave you,
445 including any error or warning messages.  Please don't paraphrase
446 these messages: it's best to cut and paste them into your report.
447 When generating this small makefile, be sure to not use any non-free
448 or unusual tools in your commands: you can almost always emulate what
449 such a tool would do with simple shell commands.  Finally, be sure to
450 explain what you expected to occur; this will help us decide whether
451 the problem was really in the documentation.
453 Once you have a precise problem you can report it in one of two ways.
454 Either send electronic mail to:
456 @example
457     bug-make@@gnu.org
458 @end example
460 @noindent
461 or use our Web-based project management tool, at:
463 @example
464     http://savannah.gnu.org/projects/make/
465 @end example
467 @noindent
468 In addition to the information above, please be careful to include the
469 version number of @code{make} you are using.  You can get this
470 information with the command @samp{make --version}.  Be sure also to
471 include the type of machine and operating system you are using.  One
472 way to obtain this information is by looking at the final lines of
473 output from the command @samp{make --help}.
475 @node Introduction, Makefiles, Overview, Top
476 @comment  node-name,  next,  previous,  up
477 @chapter An Introduction to Makefiles
479 You need a file called a @dfn{makefile} to tell @code{make} what to do.
480 Most often, the makefile tells @code{make} how to compile and link a
481 program.
482 @cindex makefile
484 In this chapter, we will discuss a simple makefile that describes how to
485 compile and link a text editor which consists of eight C source files
486 and three header files.  The makefile can also tell @code{make} how to
487 run miscellaneous commands when explicitly asked (for example, to remove
488 certain files as a clean-up operation).  To see a more complex example
489 of a makefile, see @ref{Complex Makefile}.
491 When @code{make} recompiles the editor, each changed C source file
492 must be recompiled.  If a header file has changed, each C source file
493 that includes the header file must be recompiled to be safe.  Each
494 compilation produces an object file corresponding to the source file.
495 Finally, if any source file has been recompiled, all the object files,
496 whether newly made or saved from previous compilations, must be linked
497 together to produce the new executable editor.
498 @cindex recompilation
499 @cindex editor
501 @menu
502 * Rule Introduction::           What a rule looks like.
503 * Simple Makefile::             A Simple Makefile
504 * How Make Works::              How @code{make} Processes This Makefile
505 * Variables Simplify::          Variables Make Makefiles Simpler
506 * make Deduces::                Letting @code{make} Deduce the Commands
507 * Combine By Prerequisite::     Another Style of Makefile
508 * Cleanup::                     Rules for Cleaning the Directory
509 @end menu
511 @node Rule Introduction, Simple Makefile, Introduction, Introduction
512 @comment  node-name,  next,  previous,  up
513 @section What a Rule Looks Like
514 @cindex rule, introduction to
515 @cindex makefile rule parts
516 @cindex parts of makefile rule
518 A simple makefile consists of ``rules'' with the following shape:
520 @cindex targets, introduction to
521 @cindex prerequisites, introduction to
522 @cindex commands, introduction to
523 @example
524 @group
525 @var{target} @dots{} : @var{prerequisites} @dots{}
526         @var{command}
527         @dots{}
528         @dots{}
529 @end group
530 @end example
532 A @dfn{target} is usually the name of a file that is generated by a
533 program; examples of targets are executable or object files.  A target
534 can also be the name of an action to carry out, such as @samp{clean}
535 (@pxref{Phony Targets}).
537 A @dfn{prerequisite} is a file that is used as input to create the
538 target.  A target often depends on several files.
540 @cindex tabs in rules
541 A @dfn{command} is an action that @code{make} carries out.
542 A rule may have more than one command, each on its own line.
543 @strong{Please note:} you need to put a tab character at the beginning of
544 every command line!  This is an obscurity that catches the unwary.
546 Usually a command 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 commands 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 commands 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 Commands 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 shell command follows each line that contains a target and
641 prerequisites.  These shell commands say how to update the target file.
642 A tab character must come at the beginning of every command line to
643 distinguish commands lines from other lines in the makefile.  (Bear in
644 mind that @code{make} does not know anything about how the commands
645 work.  It is up to you to supply commands that will update the target
646 file properly.  All @code{make} does is execute the commands in the rule
647 you have specified when the target file needs to be updated.)
648 @cindex shell command
650 The target @samp{clean} is not a file, but merely the name of an
651 action.  Since you
652 normally
653 do not want to carry out the actions in this rule, @samp{clean} is not a prerequisite of any other rule.
654 Consequently, @code{make} never does anything with it unless you tell
655 it specifically.  Note that this rule not only is not a prerequisite, it
656 also does not have any prerequisites, so the only purpose of the rule
657 is to run the specified commands.  Targets that do not refer to files
658 but are just actions are called @dfn{phony targets}.  @xref{Phony
659 Targets}, for information about this kind of target.  @xref{Errors, ,
660 Errors in Commands}, to see how to cause @code{make} to ignore errors
661 from @code{rm} or any other command.
662 @cindex @code{clean} target
663 @cindex @code{rm} (shell command)
665 @node How Make Works, Variables Simplify, Simple Makefile, Introduction
666 @comment  node-name,  next,  previous,  up
667 @section How @code{make} Processes a Makefile
668 @cindex processing a makefile
669 @cindex makefile, how @code{make} processes
671 By default, @code{make} starts with the first target (not targets whose
672 names start with @samp{.}).  This is called the @dfn{default goal}.
673 (@dfn{Goals} are the targets that @code{make} strives ultimately to
674 update.  @xref{Goals, , Arguments to Specify the Goals}.)
675 @cindex default goal
676 @cindex goal, default
677 @cindex goal
679 In the simple example of the previous section, the default goal is to
680 update the executable program @file{edit}; therefore, we put that rule
681 first.
683 Thus, when you give the command:
685 @example
686 make
687 @end example
689 @noindent
690 @code{make} reads the makefile in the current directory and begins by
691 processing the first rule.  In the example, this rule is for relinking
692 @file{edit}; but before @code{make} can fully process this rule, it
693 must process the rules for the files that @file{edit} depends on,
694 which in this case are the object files.  Each of these files is
695 processed according to its own rule.  These rules say to update each
696 @samp{.o} file by compiling its source file.  The recompilation must
697 be done if the source file, or any of the header files named as
698 prerequisites, is more recent than the object file, or if the object
699 file does not exist.
701 The other rules are processed because their targets appear as
702 prerequisites of the goal.  If some other rule is not depended on by the
703 goal (or anything it depends on, etc.), that rule is not processed,
704 unless you tell @code{make} to do so (with a command such as
705 @w{@code{make clean}}).
707 Before recompiling an object file, @code{make} considers updating its
708 prerequisites, the source file and header files.  This makefile does not
709 specify anything to be done for them---the @samp{.c} and @samp{.h} files
710 are not the targets of any rules---so @code{make} does nothing for these
711 files.  But @code{make} would update automatically generated C programs,
712 such as those made by Bison or Yacc, by their own rules at this time.
714 After recompiling whichever object files need it, @code{make} decides
715 whether to relink @file{edit}.  This must be done if the file
716 @file{edit} does not exist, or if any of the object files are newer than
717 it.  If an object file was just recompiled, it is now newer than
718 @file{edit}, so @file{edit} is relinked.
719 @cindex relinking
721 Thus, if we change the file @file{insert.c} and run @code{make},
722 @code{make} will compile that file to update @file{insert.o}, and then
723 link @file{edit}.  If we change the file @file{command.h} and run
724 @code{make}, @code{make} will recompile the object files @file{kbd.o},
725 @file{command.o} and @file{files.o} and then link the file @file{edit}.
727 @node Variables Simplify, make Deduces, How Make Works, Introduction
728 @section Variables Make Makefiles Simpler
729 @cindex variables
730 @cindex simplifying with variables
732 In our example, we had to list all the object files twice in the rule for
733 @file{edit} (repeated here):
735 @example
736 @group
737 edit : main.o kbd.o command.o display.o \
738               insert.o search.o files.o utils.o
739         cc -o edit main.o kbd.o command.o display.o \
740                    insert.o search.o files.o utils.o
741 @end group
742 @end example
744 @cindex @code{objects}
745 Such duplication is error-prone; if a new object file is added to the
746 system, we might add it to one list and forget the other.  We can eliminate
747 the risk and simplify the makefile by using a variable.  @dfn{Variables}
748 allow a text string to be defined once and substituted in multiple places
749 later (@pxref{Using Variables, ,How to Use Variables}).
751 @cindex @code{OBJECTS}
752 @cindex @code{objs}
753 @cindex @code{OBJS}
754 @cindex @code{obj}
755 @cindex @code{OBJ}
756 It is standard practice for every makefile to have a variable named
757 @code{objects}, @code{OBJECTS}, @code{objs}, @code{OBJS}, @code{obj},
758 or @code{OBJ} which is a list of all object file names.  We would
759 define such a variable @code{objects} with a line like this in the
760 makefile:@refill
762 @example
763 @group
764 objects = main.o kbd.o command.o display.o \
765           insert.o search.o files.o utils.o
766 @end group
767 @end example
769 @noindent
770 Then, each place we want to put a list of the object file names, we can
771 substitute the variable's value by writing @samp{$(objects)}
772 (@pxref{Using Variables, ,How to Use Variables}).
774 Here is how the complete simple makefile looks when you use a variable
775 for the object files:
777 @example
778 @group
779 objects = main.o kbd.o command.o display.o \
780           insert.o search.o files.o utils.o
782 edit : $(objects)
783         cc -o edit $(objects)
784 main.o : main.c defs.h
785         cc -c main.c
786 kbd.o : kbd.c defs.h command.h
787         cc -c kbd.c
788 command.o : command.c defs.h command.h
789         cc -c command.c
790 display.o : display.c defs.h buffer.h
791         cc -c display.c
792 insert.o : insert.c defs.h buffer.h
793         cc -c insert.c
794 search.o : search.c defs.h buffer.h
795         cc -c search.c
796 files.o : files.c defs.h buffer.h command.h
797         cc -c files.c
798 utils.o : utils.c defs.h
799         cc -c utils.c
800 clean :
801         rm edit $(objects)
802 @end group
803 @end example
805 @node make Deduces, Combine By Prerequisite, Variables Simplify, Introduction
806 @section Letting @code{make} Deduce the Commands
807 @cindex deducing commands (implicit rules)
808 @cindex implicit rule, introduction to
809 @cindex rule, implicit, introduction to
811 It is not necessary to spell out the commands for compiling the individual
812 C source files, because @code{make} can figure them out: it has an
813 @dfn{implicit rule} for updating a @samp{.o} file from a correspondingly
814 named @samp{.c} file using a @samp{cc -c} command.  For example, it will
815 use the command @samp{cc -c main.c -o main.o} to compile @file{main.c} into
816 @file{main.o}.  We can therefore omit the commands from the rules for the
817 object files.  @xref{Implicit Rules, ,Using Implicit Rules}.@refill
819 When a @samp{.c} file is used automatically in this way, it is also
820 automatically added to the list of prerequisites.  We can therefore omit
821 the @samp{.c} files from the prerequisites, provided we omit the commands.
823 Here is the entire example, with both of these changes, and a variable
824 @code{objects} as suggested above:
826 @example
827 @group
828 objects = main.o kbd.o command.o display.o \
829           insert.o search.o files.o utils.o
831 edit : $(objects)
832         cc -o edit $(objects)
834 main.o : defs.h
835 kbd.o : defs.h command.h
836 command.o : defs.h command.h
837 display.o : defs.h buffer.h
838 insert.o : defs.h buffer.h
839 search.o : defs.h buffer.h
840 files.o : defs.h buffer.h command.h
841 utils.o : defs.h
843 .PHONY : clean
844 clean :
845         rm edit $(objects)
846 @end group
847 @end example
849 @noindent
850 This is how we would write the makefile in actual practice.  (The
851 complications associated with @samp{clean} are described elsewhere.
852 See @ref{Phony Targets}, and @ref{Errors, ,Errors in Commands}.)
854 Because implicit rules are so convenient, they are important.  You
855 will see them used frequently.@refill
857 @node Combine By Prerequisite, Cleanup, make Deduces, Introduction
858 @section Another Style of Makefile
859 @cindex combining rules by prerequisite
861 When the objects of a makefile are created only by implicit rules, an
862 alternative style of makefile is possible.  In this style of makefile,
863 you group entries by their prerequisites instead of by their targets.
864 Here is what one looks like:
866 @example
867 @group
868 objects = main.o kbd.o command.o display.o \
869           insert.o search.o files.o utils.o
871 edit : $(objects)
872         cc -o edit $(objects)
874 $(objects) : defs.h
875 kbd.o command.o files.o : command.h
876 display.o insert.o search.o files.o : buffer.h
877 @end group
878 @end example
880 @noindent
881 Here @file{defs.h} is given as a prerequisite of all the object files;
882 @file{command.h} and @file{buffer.h} are prerequisites of the specific
883 object files listed for them.
885 Whether this is better is a matter of taste: it is more compact, but some
886 people dislike it because they find it clearer to put all the information
887 about each target in one place.
889 @node Cleanup,  , Combine By Prerequisite, Introduction
890 @section Rules for Cleaning the Directory
891 @cindex cleaning up
892 @cindex removing, to clean up
894 Compiling a program is not the only thing you might want to write rules
895 for.  Makefiles commonly tell how to do a few other things besides
896 compiling a program: for example, how to delete all the object files
897 and executables so that the directory is @samp{clean}.
899 @cindex @code{clean} target
900 Here is how we
901 could write a @code{make} rule for cleaning our example editor:
903 @example
904 @group
905 clean:
906         rm edit $(objects)
907 @end group
908 @end example
910 In practice, we might want to write the rule in a somewhat more
911 complicated manner to handle unanticipated situations.  We would do this:
913 @example
914 @group
915 .PHONY : clean
916 clean :
917         -rm edit $(objects)
918 @end group
919 @end example
921 @noindent
922 This prevents @code{make} from getting confused by an actual file
923 called @file{clean} and causes it to continue in spite of errors from
924 @code{rm}.  (See @ref{Phony Targets}, and @ref{Errors, ,Errors in
925 Commands}.)
927 @noindent
928 A rule such as this should not be placed at the beginning of the
929 makefile, because we do not want it to run by default!  Thus, in the
930 example makefile, we want the rule for @code{edit}, which recompiles
931 the editor, to remain the default goal.
933 Since @code{clean} is not a prerequisite of @code{edit}, this rule will not
934 run at all if we give the command @samp{make} with no arguments.  In
935 order to make the rule run, we have to type @samp{make clean}.
936 @xref{Running, ,How to Run @code{make}}.
938 @node Makefiles, Rules, Introduction, Top
939 @chapter Writing Makefiles
941 @cindex makefile, how to write
942 The information that tells @code{make} how to recompile a system comes from
943 reading a data base called the @dfn{makefile}.
945 @menu
946 * Makefile Contents::           What makefiles contain.
947 * Makefile Names::              How to name your makefile.
948 * Include::                     How one makefile can use another makefile.
949 * MAKEFILES Variable::          The environment can specify extra makefiles.
950 * MAKEFILE_LIST Variable::      Discover which makefiles have been read.
951 * Special Variables::           Other special variables.
952 * Remaking Makefiles::          How makefiles get remade.
953 * Overriding Makefiles::        How to override part of one makefile
954                                   with another makefile.
955 * Reading Makefiles::           How makefiles are parsed.
956 @end menu
958 @node Makefile Contents, Makefile Names, Makefiles, Makefiles
959 @section What Makefiles Contain
961 Makefiles contain five kinds of things: @dfn{explicit rules},
962 @dfn{implicit rules}, @dfn{variable definitions}, @dfn{directives},
963 and @dfn{comments}.  Rules, variables, and directives are described at
964 length in later chapters.@refill
966 @itemize @bullet
967 @cindex rule, explicit, definition of
968 @cindex explicit rule, definition of
969 @item
970 An @dfn{explicit rule} says when and how to remake one or more files,
971 called the rule's @dfn{targets}.  It lists the other files that the
972 targets depend on, called the @dfn{prerequisites} of the target, and
973 may also give commands to use to create or update the targets.
974 @xref{Rules, ,Writing Rules}.
976 @cindex rule, implicit, definition of
977 @cindex implicit rule, definition of
978 @item
979 An @dfn{implicit rule} says when and how to remake a class of files
980 based on their names.  It describes how a target may depend on a file
981 with a name similar to the target and gives commands to create or
982 update such a target.  @xref{Implicit Rules, ,Using Implicit Rules}.
984 @cindex variable definition
985 @item
986 A @dfn{variable definition} is a line that specifies a text string
987 value for a variable that can be substituted into the text later.  The
988 simple makefile example shows a variable definition for @code{objects}
989 as a list of all object files (@pxref{Variables Simplify, , Variables
990 Make Makefiles Simpler}).
992 @cindex directive
993 @item
994 A @dfn{directive} is a command for @code{make} to do something special while
995 reading the makefile.  These include:
997 @itemize @bullet
998 @item
999 Reading another makefile (@pxref{Include, ,Including Other Makefiles}).
1001 @item
1002 Deciding (based on the values of variables) whether to use or
1003 ignore a part of the makefile (@pxref{Conditionals, ,Conditional Parts of Makefiles}).
1005 @item
1006 Defining a variable from a verbatim string containing multiple lines
1007 (@pxref{Defining, ,Defining Variables Verbatim}).
1008 @end itemize
1010 @cindex comments, in makefile
1011 @cindex @code{#} (comments), in makefile
1012 @item
1013 @samp{#} in a line of a makefile starts a @dfn{comment}.  It and the
1014 rest of the line are ignored, except that a trailing backslash not
1015 escaped by another backslash will continue the comment across multiple
1016 lines.  A line containing just a comment (with perhaps spaces before
1017 it) is effectively blank, and is ignored.  If you want a literal
1018 @code{#}, escape it with a backslash (e.g., @code{\#}).  Comments may
1019 appear on any line in the makefile, although they are treated
1020 specially in certain situations.
1022 Within a command script (if the line begins with a TAB character) the
1023 entire line is passed to the shell, just as with any other line that
1024 begins with a TAB.  The shell decides how to interpret the text:
1025 whether or not this is a comment is up to the shell.
1027 Within a @code{define} directive, comments are not ignored during the
1028 definition of the variable, but rather kept intact in the value of the
1029 variable.  When the variable is expanded they will either be treated
1030 as @code{make} comments or as command script text, depending on the
1031 context in which the variable is evaluated.
1032 @end itemize
1034 @node Makefile Names, Include, Makefile Contents, Makefiles
1035 @section What Name to Give Your Makefile
1036 @cindex makefile name
1037 @cindex name of makefile
1038 @cindex default makefile name
1039 @cindex file name of makefile
1041 @c following paragraph rewritten to avoid overfull hbox
1042 By default, when @code{make} looks for the makefile, it tries the
1043 following names, in order: @file{GNUmakefile}, @file{makefile}
1044 and @file{Makefile}.@refill
1045 @findex Makefile
1046 @findex GNUmakefile
1047 @findex makefile
1049 @cindex @code{README}
1050 Normally you should call your makefile either @file{makefile} or
1051 @file{Makefile}.  (We recommend @file{Makefile} because it appears
1052 prominently near the beginning of a directory listing, right near other
1053 important files such as @file{README}.)  The first name checked,
1054 @file{GNUmakefile}, is not recommended for most makefiles.  You should
1055 use this name if you have a makefile that is specific to GNU
1056 @code{make}, and will not be understood by other versions of
1057 @code{make}.  Other @code{make} programs look for @file{makefile} and
1058 @file{Makefile}, but not @file{GNUmakefile}.
1060 If @code{make} finds none of these names, it does not use any makefile.
1061 Then you must specify a goal with a command argument, and @code{make}
1062 will attempt to figure out how to remake it using only its built-in
1063 implicit rules.  @xref{Implicit Rules, ,Using Implicit Rules}.
1065 @cindex @code{-f}
1066 @cindex @code{--file}
1067 @cindex @code{--makefile}
1068 If you want to use a nonstandard name for your makefile, you can specify
1069 the makefile name with the @samp{-f} or @samp{--file} option.  The
1070 arguments @w{@samp{-f @var{name}}} or @w{@samp{--file=@var{name}}} tell
1071 @code{make} to read the file @var{name} as the makefile.  If you use
1072 more than one @samp{-f} or @samp{--file} option, you can specify several
1073 makefiles.  All the makefiles are effectively concatenated in the order
1074 specified.  The default makefile names @file{GNUmakefile},
1075 @file{makefile} and @file{Makefile} are not checked automatically if you
1076 specify @samp{-f} or @samp{--file}.@refill
1077 @cindex specifying makefile name
1078 @cindex makefile name, how to specify
1079 @cindex name of makefile, how to specify
1080 @cindex file name of makefile, how to specify
1082 @node Include, MAKEFILES Variable, Makefile Names, Makefiles
1083 @section Including Other Makefiles
1084 @cindex including other makefiles
1085 @cindex makefile, including
1087 @findex include
1088 The @code{include} directive tells @code{make} to suspend reading the
1089 current makefile and read one or more other makefiles before continuing.
1090 The directive is a line in the makefile that looks like this:
1092 @example
1093 include @var{filenames}@dots{}
1094 @end example
1096 @noindent
1097 @var{filenames} can contain shell file name patterns.
1098 @cindex shell file name pattern (in @code{include})
1099 @cindex shell wildcards (in @code{include})
1100 @cindex wildcard, in @code{include}
1102 Extra spaces are allowed and ignored at the beginning of the line, but
1103 a tab is not allowed.  (If the line begins with a tab, it will be
1104 considered a command line.)  Whitespace is required between
1105 @code{include} and the file names, and between file names; extra
1106 whitespace is ignored there and at the end of the directive.  A
1107 comment starting with @samp{#} is allowed at the end of the line.  If
1108 the file names contain any variable or function references, they are
1109 expanded.  @xref{Using Variables, ,How to Use Variables}.
1111 For example, if you have three @file{.mk} files, @file{a.mk},
1112 @file{b.mk}, and @file{c.mk}, and @code{$(bar)} expands to
1113 @code{bish bash}, then the following expression
1115 @example
1116 include foo *.mk $(bar)
1117 @end example
1119 is equivalent to
1121 @example
1122 include foo a.mk b.mk c.mk bish bash
1123 @end example
1125 When @code{make} processes an @code{include} directive, it suspends
1126 reading of the containing makefile and reads from each listed file in
1127 turn.  When that is finished, @code{make} resumes reading the
1128 makefile in which the directive appears.
1130 One occasion for using @code{include} directives is when several programs,
1131 handled by individual makefiles in various directories, need to use a
1132 common set of variable definitions
1133 (@pxref{Setting, ,Setting Variables}) or pattern rules
1134 (@pxref{Pattern Rules, ,Defining and Redefining Pattern Rules}).
1136 Another such occasion is when you want to generate prerequisites from
1137 source files automatically; the prerequisites can be put in a file that
1138 is included by the main makefile.  This practice is generally cleaner
1139 than that of somehow appending the prerequisites to the end of the main
1140 makefile as has been traditionally done with other versions of
1141 @code{make}.  @xref{Automatic Prerequisites}.
1142 @cindex prerequisites, automatic generation
1143 @cindex automatic generation of prerequisites
1144 @cindex generating prerequisites automatically
1146 @cindex @code{-I}
1147 @cindex @code{--include-dir}
1148 @cindex included makefiles, default directories
1149 @cindex default directories for included makefiles
1150 @findex /usr/gnu/include
1151 @findex /usr/local/include
1152 @findex /usr/include
1153 If the specified name does not start with a slash, and the file is not
1154 found in the current directory, several other directories are searched.
1155 First, any directories you have specified with the @samp{-I} or
1156 @samp{--include-dir} option are searched
1157 (@pxref{Options Summary, ,Summary of Options}).
1158 Then the following directories (if they exist)
1159 are searched, in this order:
1160 @file{@var{prefix}/include} (normally @file{/usr/local/include}
1161 @footnote{GNU Make compiled for MS-DOS and MS-Windows behaves as if
1162 @var{prefix} has been defined to be the root of the DJGPP tree
1163 hierarchy.})
1164 @file{/usr/gnu/include},
1165 @file{/usr/local/include}, @file{/usr/include}.
1167 If an included makefile cannot be found in any of these directories, a
1168 warning message is generated, but it is not an immediately fatal error;
1169 processing of the makefile containing the @code{include} continues.
1170 Once it has finished reading makefiles, @code{make} will try to remake
1171 any that are out of date or don't exist.
1172 @xref{Remaking Makefiles, ,How Makefiles Are Remade}.
1173 Only after it has tried to find a way to remake a makefile and failed,
1174 will @code{make} diagnose the missing makefile as a fatal error.
1176 If you want @code{make} to simply ignore a makefile which does not exist
1177 and cannot be remade, with no error message, use the @w{@code{-include}}
1178 directive instead of @code{include}, like this:
1180 @example
1181 -include @var{filenames}@dots{}
1182 @end example
1184 This acts like @code{include} in every way except that there is no
1185 error (not even a warning) if any of the @var{filenames} do not exist.
1186 For compatibility with some other @code{make} implementations,
1187 @code{sinclude} is another name for @w{@code{-include}}.
1189 @node MAKEFILES Variable, MAKEFILE_LIST Variable, Include, Makefiles
1190 @section The Variable @code{MAKEFILES}
1191 @cindex makefile, and @code{MAKEFILES} variable
1192 @cindex including (@code{MAKEFILES} variable)
1194 @vindex MAKEFILES
1195 If the environment variable @code{MAKEFILES} is defined, @code{make}
1196 considers its value as a list of names (separated by whitespace) of
1197 additional makefiles to be read before the others.  This works much like
1198 the @code{include} directive: various directories are searched for those
1199 files (@pxref{Include, ,Including Other Makefiles}).  In addition, the
1200 default goal is never taken from one of these makefiles and it is not an
1201 error if the files listed in @code{MAKEFILES} are not found.@refill
1203 @cindex recursion, and @code{MAKEFILES} variable
1204 The main use of @code{MAKEFILES} is in communication between recursive
1205 invocations of @code{make} (@pxref{Recursion, ,Recursive Use of
1206 @code{make}}).  It usually is not desirable to set the environment
1207 variable before a top-level invocation of @code{make}, because it is
1208 usually better not to mess with a makefile from outside.  However, if
1209 you are running @code{make} without a specific makefile, a makefile in
1210 @code{MAKEFILES} can do useful things to help the built-in implicit
1211 rules work better, such as defining search paths (@pxref{Directory Search}).
1213 Some users are tempted to set @code{MAKEFILES} in the environment
1214 automatically on login, and program makefiles to expect this to be done.
1215 This is a very bad idea, because such makefiles will fail to work if run by
1216 anyone else.  It is much better to write explicit @code{include} directives
1217 in the makefiles.  @xref{Include, , Including Other Makefiles}.
1219 @node MAKEFILE_LIST Variable, Special Variables, MAKEFILES Variable, Makefiles
1220 @comment  node-name,  next,  previous,  up
1221 @section The Variable @code{MAKEFILE_LIST}
1222 @cindex makefiles, and @code{MAKEFILE_LIST} variable
1223 @cindex including (@code{MAKEFILE_LIST} variable)
1225 As @code{make} reads various makefiles, including any obtained from the
1226 @code{MAKEFILES} variable, the command line, the default files, or
1227 from @code{include} directives, their names will be automatically
1228 appended to the @code{MAKEFILE_LIST} variable.  They are added right
1229 before @code{make} begins to parse them.
1231 This means that if the first thing a makefile does is examine the last
1232 word in this variable, it will be the name of the current makefile.
1233 Once the current makefile has used @code{include}, however, the last
1234 word will be the just-included makefile.
1236 If a makefile named @code{Makefile} has this content:
1238 @example
1239 @group
1240 name1 := $(lastword $(MAKEFILE_LIST))
1242 include inc.mk
1244 name2 := $(lastword $(MAKEFILE_LIST))
1246 all:
1247         @@echo name1 = $(name1)
1248         @@echo name2 = $(name2)
1249 @end group
1250 @end example
1252 @noindent
1253 then you would expect to see this output:
1255 @example
1256 @group
1257 name1 = Makefile
1258 name2 = inc.mk
1259 @end group
1260 @end example
1262 @xref{Text Functions}, for more information on the @code{word} and
1263 @code{words} functions used above.  @xref{Flavors, The Two Flavors of
1264 Variables}, for more information on simply-expanded (@code{:=})
1265 variable definitions.
1267 @node Special Variables, Remaking Makefiles, MAKEFILE_LIST Variable, Makefiles
1268 @comment  node-name,  next,  previous,  up
1269 @section Other Special Variables
1270 @cindex makefiles, and special variables
1271 @cindex special variables
1273 GNU @code{make} also supports a special variable.  Note that any value
1274 you assign to this variable will be ignored; it will always return its
1275 special value.
1277 @vindex $(.VARIABLES)
1278 @vindex .VARIABLES @r{(list of variables)}
1279 The first special variable is @code{.VARIABLES}.  When expanded, the
1280 value consists of a list of the @emph{names} of all global variables
1281 defined in all makefiles read up until that point.  This includes
1282 variables which have empty values, as well as built-in variables
1283 (@pxref{Implicit Variables, , Variables Used by Implicit Rules}), but
1284 does not include any variables which are only defined in a
1285 target-specific context.
1287 @c @vindex $(.TARGETS)
1288 @c @vindex .TARGETS @r{(list of targets)}
1289 @c The second special variable is @code{.TARGETS}.  When expanded, the
1290 @c value consists of a list of all targets defined in all makefiles read
1291 @c up until that point.  Note it's not enough for a file to be simply
1292 @c mentioned in the makefile to be listed in this variable, even if it
1293 @c would match an implicit rule and become an ``implicit target''.  The
1294 @c file must appear as a target, on the left-hand side of a ``:'', to be
1295 @c considered a target for the purposes of this variable.
1297 @node Remaking Makefiles, Overriding Makefiles, Special Variables, Makefiles
1298 @section How Makefiles Are Remade
1300 @cindex updating makefiles
1301 @cindex remaking makefiles
1302 @cindex makefile, remaking of
1303 Sometimes makefiles can be remade from other files, such as RCS or SCCS
1304 files.  If a makefile can be remade from other files, you probably want
1305 @code{make} to get an up-to-date version of the makefile to read in.
1307 To this end, after reading in all makefiles, @code{make} will consider
1308 each as a goal target and attempt to update it.  If a makefile has a
1309 rule which says how to update it (found either in that very makefile or
1310 in another one) or if an implicit rule applies to it (@pxref{Implicit
1311 Rules, ,Using Implicit Rules}), it will be updated if necessary.  After
1312 all makefiles have been checked, if any have actually been changed,
1313 @code{make} starts with a clean slate and reads all the makefiles over
1314 again.  (It will also attempt to update each of them over again, but
1315 normally this will not change them again, since they are already up to
1316 date.)@refill
1318 If you know that one or more of your makefiles cannot be remade and you
1319 want to keep @code{make} from performing an implicit rule search on
1320 them, perhaps for efficiency reasons, you can use any normal method of
1321 preventing implicit rule lookup to do so.  For example, you can write an
1322 explicit rule with the makefile as the target, and an empty command
1323 string (@pxref{Empty Commands, ,Using Empty Commands}).
1325 If the makefiles specify a double-colon rule to remake a file with
1326 commands but no prerequisites, that file will always be remade
1327 (@pxref{Double-Colon}).  In the case of makefiles, a makefile that has a
1328 double-colon rule with commands but no prerequisites will be remade every
1329 time @code{make} is run, and then again after @code{make} starts over
1330 and reads the makefiles in again.  This would cause an infinite loop:
1331 @code{make} would constantly remake the makefile, and never do anything
1332 else.  So, to avoid this, @code{make} will @strong{not} attempt to
1333 remake makefiles which are specified as targets of a double-colon rule
1334 with commands but no prerequisites.@refill
1336 If you do not specify any makefiles to be read with @samp{-f} or
1337 @samp{--file} options, @code{make} will try the default makefile names;
1338 @pxref{Makefile Names, ,What Name to Give Your Makefile}.  Unlike
1339 makefiles explicitly requested with @samp{-f} or @samp{--file} options,
1340 @code{make} is not certain that these makefiles should exist.  However,
1341 if a default makefile does not exist but can be created by running
1342 @code{make} rules, you probably want the rules to be run so that the
1343 makefile can be used.
1345 Therefore, if none of the default makefiles exists, @code{make} will try
1346 to make each of them in the same order in which they are searched for
1347 (@pxref{Makefile Names, ,What Name to Give Your Makefile})
1348 until it succeeds in making one, or it runs out of names to try.  Note
1349 that it is not an error if @code{make} cannot find or make any makefile;
1350 a makefile is not always necessary.@refill
1352 When you use the @samp{-t} or @samp{--touch} option
1353 (@pxref{Instead of Execution, ,Instead of Executing the Commands}),
1354 you would not want to use an out-of-date makefile to decide which
1355 targets to touch.  So the @samp{-t} option has no effect on updating
1356 makefiles; they are really updated even if @samp{-t} is specified.
1357 Likewise, @samp{-q} (or @samp{--question}) and @samp{-n} (or
1358 @samp{--just-print}) do not prevent updating of makefiles, because an
1359 out-of-date makefile would result in the wrong output for other targets.
1360 Thus, @samp{make -f mfile -n foo} will update @file{mfile}, read it in,
1361 and then print the commands to update @file{foo} and its prerequisites
1362 without running them.  The commands printed for @file{foo} will be those
1363 specified in the updated contents of @file{mfile}.
1365 However, on occasion you might actually wish to prevent updating of even
1366 the makefiles.  You can do this by specifying the makefiles as goals in
1367 the command line as well as specifying them as makefiles.  When the
1368 makefile name is specified explicitly as a goal, the options @samp{-t}
1369 and so on do apply to them.
1371 Thus, @samp{make -f mfile -n mfile foo} would read the makefile
1372 @file{mfile}, print the commands needed to update it without actually
1373 running them, and then print the commands needed to update @file{foo}
1374 without running them.  The commands for @file{foo} will be those
1375 specified by the existing contents of @file{mfile}.
1377 @node Overriding Makefiles, Reading Makefiles, Remaking Makefiles, Makefiles
1378 @section Overriding Part of Another Makefile
1380 @cindex overriding makefiles
1381 @cindex makefile, overriding
1382 Sometimes it is useful to have a makefile that is mostly just like
1383 another makefile.  You can often use the @samp{include} directive to
1384 include one in the other, and add more targets or variable definitions.
1385 However, if the two makefiles give different commands for the same
1386 target, @code{make} will not let you just do this.  But there is another way.
1388 @cindex match-anything rule, used to override
1389 In the containing makefile (the one that wants to include the other),
1390 you can use a match-anything pattern rule to say that to remake any
1391 target that cannot be made from the information in the containing
1392 makefile, @code{make} should look in another makefile.
1393 @xref{Pattern Rules}, for more information on pattern rules.
1395 For example, if you have a makefile called @file{Makefile} that says how
1396 to make the target @samp{foo} (and other targets), you can write a
1397 makefile called @file{GNUmakefile} that contains:
1399 @example
1400 foo:
1401         frobnicate > foo
1403 %: force
1404         @@$(MAKE) -f Makefile $@@
1405 force: ;
1406 @end example
1408 If you say @samp{make foo}, @code{make} will find @file{GNUmakefile},
1409 read it, and see that to make @file{foo}, it needs to run the command
1410 @samp{frobnicate > foo}.  If you say @samp{make bar}, @code{make} will
1411 find no way to make @file{bar} in @file{GNUmakefile}, so it will use the
1412 commands from the pattern rule: @samp{make -f Makefile bar}.  If
1413 @file{Makefile} provides a rule for updating @file{bar}, @code{make}
1414 will apply the rule.  And likewise for any other target that
1415 @file{GNUmakefile} does not say how to make.
1417 The way this works is that the pattern rule has a pattern of just
1418 @samp{%}, so it matches any target whatever.  The rule specifies a
1419 prerequisite @file{force}, to guarantee that the commands will be run even
1420 if the target file already exists.  We give @file{force} target empty
1421 commands to prevent @code{make} from searching for an implicit rule to
1422 build it---otherwise it would apply the same match-anything rule to
1423 @file{force} itself and create a prerequisite loop!
1425 @node Reading Makefiles,  , Overriding Makefiles, Makefiles
1426 @section How @code{make} Reads a Makefile
1427 @cindex reading makefiles
1428 @cindex makefile, parsing
1430 GNU @code{make} does its work in two distinct phases.  During the first
1431 phase it reads all the makefiles, included makefiles, etc. and
1432 internalizes all the variables and their values, implicit and explicit
1433 rules, and constructs a dependency graph of all the targets and their
1434 prerequisites.  During the second phase, @code{make} uses these internal
1435 structures to determine what targets will need to be rebuilt and to
1436 invoke the rules necessary to do so.
1438 It's important to understand this two-phase approach because it has a
1439 direct impact on how variable and function expansion happens; this is
1440 often a source of some confusion when writing makefiles.  Here we will
1441 present a summary of the phases in which expansion happens for different
1442 constructs within the makefile.  We say that expansion is
1443 @dfn{immediate} if it happens during the first phase: in this case
1444 @code{make} will expand any variables or functions in that section of a
1445 construct as the makefile is parsed.  We say that expansion is
1446 @dfn{deferred} if expansion is not performed immediately.  Expansion of
1447 deferred construct is not performed until either the construct appears
1448 later in an immediate context, or until the second phase.
1450 You may not be familiar with some of these constructs yet.  You can
1451 reference this section as you become familiar with them, in later
1452 chapters.
1454 @subheading Variable Assignment
1455 @cindex +=, expansion
1456 @cindex =, expansion
1457 @cindex ?=, expansion
1458 @cindex +=, expansion
1459 @cindex define, expansion
1461 Variable definitions are parsed as follows:
1463 @example
1464 @var{immediate} = @var{deferred}
1465 @var{immediate} ?= @var{deferred}
1466 @var{immediate} := @var{immediate}
1467 @var{immediate} += @var{deferred} or @var{immediate}
1469 define @var{immediate}
1470   @var{deferred}
1471 endef
1472 @end example
1474 For the append operator, @samp{+=}, the right-hand side is considered
1475 immediate if the variable was previously set as a simple variable
1476 (@samp{:=}), and deferred otherwise.
1478 @subheading Conditional Statements
1479 @cindex ifdef, expansion
1480 @cindex ifeq, expansion
1481 @cindex ifndef, expansion
1482 @cindex ifneq, expansion
1484 All instances of conditional syntax are parsed immediately, in their
1485 entirety; this includes the @code{ifdef}, @code{ifeq}, @code{ifndef},
1486 and @code{ifneq} forms.
1488 @subheading Rule Definition
1489 @cindex target, expansion
1490 @cindex prerequisite, expansion
1491 @cindex implicit rule, expansion
1492 @cindex pattern rule, expansion
1493 @cindex explicit rule, expansion
1495 A rule is always expanded the same way, regardless of the form:
1497 @example
1498 @var{immediate} : @var{immediate} ; @var{deferred}
1499         @var{deferred}
1500 @end example
1502 That is, the target and prerequisite sections are expanded immediately,
1503 and the commands used to construct the target are always deferred.  This
1504 general rule is true for explicit rules, pattern rules, suffix rules,
1505 static pattern rules, and simple prerequisite definitions.
1507 @node Rules, Commands, Makefiles, Top
1508 @chapter Writing Rules
1509 @cindex writing rules
1510 @cindex rule, how to write
1511 @cindex target
1512 @cindex prerequisite
1514 A @dfn{rule} appears in the makefile and says when and how to remake
1515 certain files, called the rule's @dfn{targets} (most often only one per rule).
1516 It lists the other files that are the @dfn{prerequisites} of the target, and
1517 @dfn{commands} to use to create or update the target.
1519 @cindex default goal
1520 @cindex goal, default
1521 The order of rules is not significant, except for determining the
1522 @dfn{default goal}: the target for @code{make} to consider, if you do
1523 not otherwise specify one.  The default goal is the target of the first
1524 rule in the first makefile.  If the first rule has multiple targets,
1525 only the first target is taken as the default.  There are two
1526 exceptions: a target starting with a period is not a default unless it
1527 contains one or more slashes, @samp{/}, as well; and, a target that
1528 defines a pattern rule has no effect on the default goal.
1529 (@xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.)
1531 Therefore, we usually write the makefile so that the first rule is the
1532 one for compiling the entire program or all the programs described by
1533 the makefile (often with a target called @samp{all}).
1534 @xref{Goals, ,Arguments to Specify the Goals}.
1536 @menu
1537 * Rule Example::                An example explained.
1538 * Rule Syntax::                 General syntax explained.
1539 * Prerequisite Types::          There are two types of prerequisites.
1540 * Wildcards::                   Using wildcard characters such as `*'.
1541 * Directory Search::            Searching other directories for source files.
1542 * Phony Targets::               Using a target that is not a real file's name.
1543 * Force Targets::               You can use a target without commands
1544                                   or prerequisites to mark other
1545                                   targets as phony.
1546 * Empty Targets::               When only the date matters and the
1547                                   files are empty.
1548 * Special Targets::             Targets with special built-in meanings.
1549 * Multiple Targets::            When to make use of several targets in a rule.
1550 * Multiple Rules::              How to use several rules with the same target.
1551 * Static Pattern::              Static pattern rules apply to multiple targets
1552                                   and can vary the prerequisites according to
1553                                   the target name.
1554 * Double-Colon::                How to use a special kind of rule to allow
1555                                   several independent rules for one target.
1556 * Automatic Prerequisites::     How to automatically generate rules giving
1557                                   prerequisites from source files themselves.
1558 @end menu
1560 @ifnottex
1561 @node Rule Example, Rule Syntax, Rules, Rules
1562 @section Rule Example
1564 Here is an example of a rule:
1566 @example
1567 foo.o : foo.c defs.h       # module for twiddling the frobs
1568         cc -c -g foo.c
1569 @end example
1571 Its target is @file{foo.o} and its prerequisites are @file{foo.c} and
1572 @file{defs.h}.  It has one command, which is @samp{cc -c -g foo.c}.
1573 The command line starts with a tab to identify it as a command.
1575 This rule says two things:
1577 @itemize @bullet
1578 @item
1579 How to decide whether @file{foo.o} is out of date: it is out of date
1580 if it does not exist, or if either @file{foo.c} or @file{defs.h} is
1581 more recent than it.
1583 @item
1584 How to update the file @file{foo.o}: by running @code{cc} as stated.
1585 The command does not explicitly mention @file{defs.h}, but we presume
1586 that @file{foo.c} includes it, and that that is why @file{defs.h} was
1587 added to the prerequisites.
1588 @end itemize
1589 @end ifnottex
1591 @node Rule Syntax, Prerequisite Types, Rule Example, Rules
1592 @section Rule Syntax
1594 @cindex rule syntax
1595 @cindex syntax of rules
1596 In general, a rule looks like this:
1598 @example
1599 @var{targets} : @var{prerequisites}
1600         @var{command}
1601         @dots{}
1602 @end example
1604 @noindent
1605 or like this:
1607 @example
1608 @var{targets} : @var{prerequisites} ; @var{command}
1609         @var{command}
1610         @dots{}
1611 @end example
1613 @cindex targets
1614 @cindex rule targets
1615 The @var{targets} are file names, separated by spaces.  Wildcard
1616 characters may be used (@pxref{Wildcards, ,Using Wildcard Characters
1617 in File Names}) and a name of the form @file{@var{a}(@var{m})}
1618 represents member @var{m} in archive file @var{a}
1619 (@pxref{Archive Members, ,Archive Members as Targets}).
1620 Usually there is only one
1621 target per rule, but occasionally there is a reason to have more
1622 (@pxref{Multiple Targets, , Multiple Targets in a Rule}).@refill
1624 @cindex commands
1625 @cindex tab character (in commands)
1626 The @var{command} lines start with a tab character.  The first command may
1627 appear on the line after the prerequisites, with a tab character, or may
1628 appear on the same line, with a semicolon.  Either way, the effect is the
1629 same.  @xref{Commands, ,Writing the Commands in Rules}.
1631 @cindex dollar sign (@code{$}), in rules
1632 @cindex @code{$}, in rules
1633 @cindex rule, and @code{$}
1634 Because dollar signs are used to start variable references, if you really
1635 want a dollar sign in a rule you must write two of them, @samp{$$}
1636 (@pxref{Using Variables, ,How to Use Variables}).
1637 You may split a long line by inserting a backslash
1638 followed by a newline, but this is not required, as @code{make} places no
1639 limit on the length of a line in a makefile.
1641 A rule tells @code{make} two things: when the targets are out of date,
1642 and how to update them when necessary.
1644 @cindex prerequisites
1645 @cindex rule prerequisites
1646 The criterion for being out of date is specified in terms of the
1647 @var{prerequisites}, which consist of file names separated by spaces.
1648 (Wildcards and archive members (@pxref{Archives}) are allowed here too.)
1649 A target is out of date if it does not exist or if it is older than any
1650 of the prerequisites (by comparison of last-modification times).  The
1651 idea is that the contents of the target file are computed based on
1652 information in the prerequisites, so if any of the prerequisites changes,
1653 the contents of the existing target file are no longer necessarily
1654 valid.
1656 How to update is specified by @var{commands}.  These are lines to be
1657 executed by the shell (normally @samp{sh}), but with some extra features
1658 (@pxref{Commands, ,Writing the Commands in Rules}).
1660 @node Prerequisite Types, Wildcards, Rule Syntax, Rules
1661 @comment  node-name,  next,  previous,  up
1662 @section Types of Prerequisites
1663 @cindex prerequisite types
1664 @cindex types of prerequisites
1666 @cindex prerequisites, normal
1667 @cindex normal prerequisites
1668 @cindex prerequisites, order-only
1669 @cindex order-only prerequisites
1670 There are actually two different types of prerequisites understood by
1671 GNU @code{make}: normal prerequisites such as described in the
1672 previous section, and @dfn{order-only} prerequisites.  A normal
1673 prerequisite makes two statements: first, it imposes an order of
1674 execution of build commands: any commands necessary to build any of a
1675 target's prerequisites will be fully executed before any commands
1676 necessary to build the target.  Second, it imposes a dependency
1677 relationship: if any prerequisite is newer than the target, then the
1678 target is considered out-of-date and must be rebuilt.
1680 Normally, this is exactly what you want: if a target's prerequisite is
1681 updated, then the target should also be updated.
1683 Occasionally, however, you have a situation where you want to impose a
1684 specific ordering on the rules to be invoked @emph{without} forcing
1685 the target to be updated if one of those rules is executed.  In that
1686 case, you want to define @dfn{order-only} prerequisites.  Order-only
1687 prerequisites can be specified by placing a pipe symbol (@code{|})
1688 in the prerequisites list: any prerequisites to the left of the pipe
1689 symbol are normal; any prerequisites to the right are order-only:
1691 @example
1692 @var{targets} : @var{normal-prerequisites} | @var{order-only-prerequisites}
1693 @end example
1695 The normal prerequisites section may of course be empty.  Also, you
1696 may still declare multiple lines of prerequisites for the same target:
1697 they are appended appropriately.  Note that if you declare the same
1698 file to be both a normal and an order-only prerequisite, the normal
1699 prerequisite takes precedence (since they are a strict superset of the
1700 behavior of an order-only prerequisite).
1702 @node Wildcards, Directory Search, Prerequisite Types, Rules
1703 @section Using Wildcard Characters in File Names
1704 @cindex wildcard
1705 @cindex file name with wildcards
1706 @cindex globbing (wildcards)
1708 @cindex @code{*} (wildcard character)
1709 @cindex @code{?} (wildcard character)
1710 @cindex @code{[@dots{}]} (wildcard characters)
1711 A single file name can specify many files using @dfn{wildcard characters}.
1712 The wildcard characters in @code{make} are @samp{*}, @samp{?} and
1713 @samp{[@dots{}]}, the same as in the Bourne shell.  For example, @file{*.c}
1714 specifies a list of all the files (in the working directory) whose names
1715 end in @samp{.c}.@refill
1717 @cindex @code{~} (tilde)
1718 @cindex tilde (@code{~})
1719 @cindex home directory
1720 The character @samp{~} at the beginning of a file name also has special
1721 significance.  If alone, or followed by a slash, it represents your home
1722 directory.  For example @file{~/bin} expands to @file{/home/you/bin}.
1723 If the @samp{~} is followed by a word, the string represents the home
1724 directory of the user named by that word.  For example @file{~john/bin}
1725 expands to @file{/home/john/bin}.  On systems which don't have a home
1726 directory for each user (such as MS-DOS or MS-Windows), this
1727 functionality can be simulated by setting the environment variable
1728 @var{HOME}.@refill
1730 Wildcard expansion happens automatically in targets, in prerequisites,
1731 and in commands (where the shell does the expansion).  In other
1732 contexts, wildcard expansion happens only if you request it explicitly
1733 with the @code{wildcard} function.
1735 The special significance of a wildcard character can be turned off by
1736 preceding it with a backslash.  Thus, @file{foo\*bar} would refer to a
1737 specific file whose name consists of @samp{foo}, an asterisk, and
1738 @samp{bar}.@refill
1740 @menu
1741 * Wildcard Examples::           Several examples
1742 * Wildcard Pitfall::            Problems to avoid.
1743 * Wildcard Function::           How to cause wildcard expansion where
1744                                   it does not normally take place.
1745 @end menu
1747 @node Wildcard Examples, Wildcard Pitfall, Wildcards, Wildcards
1748 @subsection Wildcard Examples
1750 Wildcards can be used in the commands of a rule, where they are expanded
1751 by the shell.  For example, here is a rule to delete all the object files:
1753 @example
1754 @group
1755 clean:
1756         rm -f *.o
1757 @end group
1758 @end example
1759 @cindex @code{rm} (shell command)
1761 Wildcards are also useful in the prerequisites of a rule.  With the
1762 following rule in the makefile, @samp{make print} will print all the
1763 @samp{.c} files that have changed since the last time you printed them:
1765 @example
1766 print: *.c
1767         lpr -p $?
1768         touch print
1769 @end example
1771 @cindex @code{print} target
1772 @cindex @code{lpr} (shell command)
1773 @cindex @code{touch} (shell command)
1774 @noindent
1775 This rule uses @file{print} as an empty target file; see @ref{Empty
1776 Targets, ,Empty Target Files to Record Events}.  (The automatic variable
1777 @samp{$?} is used to print only those files that have changed; see
1778 @ref{Automatic Variables}.)@refill
1780 Wildcard expansion does not happen when you define a variable.  Thus, if
1781 you write this:
1783 @example
1784 objects = *.o
1785 @end example
1787 @noindent
1788 then the value of the variable @code{objects} is the actual string
1789 @samp{*.o}.  However, if you use the value of @code{objects} in a target,
1790 prerequisite or command, wildcard expansion will take place at that time.
1791 To set @code{objects} to the expansion, instead use:
1793 @example
1794 objects := $(wildcard *.o)
1795 @end example
1797 @noindent
1798 @xref{Wildcard Function}.
1800 @node Wildcard Pitfall, Wildcard Function, Wildcard Examples, Wildcards
1801 @subsection Pitfalls of Using Wildcards
1802 @cindex wildcard pitfalls
1803 @cindex pitfalls of wildcards
1804 @cindex mistakes with wildcards
1805 @cindex errors with wildcards
1806 @cindex problems with wildcards
1808 Now here is an example of a naive way of using wildcard expansion, that
1809 does not do what you would intend.  Suppose you would like to say that the
1810 executable file @file{foo} is made from all the object files in the
1811 directory, and you write this:
1813 @example
1814 objects = *.o
1816 foo : $(objects)
1817         cc -o foo $(CFLAGS) $(objects)
1818 @end example
1820 @noindent
1821 The value of @code{objects} is the actual string @samp{*.o}.  Wildcard
1822 expansion happens in the rule for @file{foo}, so that each @emph{existing}
1823 @samp{.o} file becomes a prerequisite of @file{foo} and will be recompiled if
1824 necessary.
1826 But what if you delete all the @samp{.o} files?  When a wildcard matches
1827 no files, it is left as it is, so then @file{foo} will depend on the
1828 oddly-named file @file{*.o}.  Since no such file is likely to exist,
1829 @code{make} will give you an error saying it cannot figure out how to
1830 make @file{*.o}.  This is not what you want!
1832 Actually it is possible to obtain the desired result with wildcard
1833 expansion, but you need more sophisticated techniques, including the
1834 @code{wildcard} function and string substitution.
1835 @ifnottex
1836 @xref{Wildcard Function, ,The Function @code{wildcard}}.
1837 @end ifnottex
1838 @iftex
1839 These are described in the following section.
1840 @end iftex
1842 @cindex wildcards and MS-DOS/MS-Windows backslashes
1843 @cindex backslashes in pathnames and wildcard expansion
1845 Microsoft operating systems (MS-DOS and MS-Windows) use backslashes to
1846 separate directories in pathnames, like so:
1848 @example
1849   c:\foo\bar\baz.c
1850 @end example
1852 This is equivalent to the Unix-style @file{c:/foo/bar/baz.c} (the
1853 @file{c:} part is the so-called drive letter).  When @code{make} runs on
1854 these systems, it supports backslashes as well as the Unix-style forward
1855 slashes in pathnames.  However, this support does @emph{not} include the
1856 wildcard expansion, where backslash is a quote character.  Therefore,
1857 you @emph{must} use Unix-style slashes in these cases.
1860 @node Wildcard Function,  , Wildcard Pitfall, Wildcards
1861 @subsection The Function @code{wildcard}
1862 @findex wildcard
1864 Wildcard expansion happens automatically in rules.  But wildcard expansion
1865 does not normally take place when a variable is set, or inside the
1866 arguments of a function.  If you want to do wildcard expansion in such
1867 places, you need to use the @code{wildcard} function, like this:
1869 @example
1870 $(wildcard @var{pattern}@dots{})
1871 @end example
1873 @noindent
1874 This string, used anywhere in a makefile, is replaced by a
1875 space-separated list of names of existing files that match one of the
1876 given file name patterns.  If no existing file name matches a pattern,
1877 then that pattern is omitted from the output of the @code{wildcard}
1878 function.  Note that this is different from how unmatched wildcards
1879 behave in rules, where they are used verbatim rather than ignored
1880 (@pxref{Wildcard Pitfall}).
1882 One use of the @code{wildcard} function is to get a list of all the C source
1883 files in a directory, like this:
1885 @example
1886 $(wildcard *.c)
1887 @end example
1889 We can change the list of C source files into a list of object files by
1890 replacing the @samp{.c} suffix with @samp{.o} in the result, like this:
1892 @example
1893 $(patsubst %.c,%.o,$(wildcard *.c))
1894 @end example
1896 @noindent
1897 (Here we have used another function, @code{patsubst}.
1898 @xref{Text Functions, ,Functions for String Substitution and Analysis}.)@refill
1900 Thus, a makefile to compile all C source files in the directory and then
1901 link them together could be written as follows:
1903 @example
1904 objects := $(patsubst %.c,%.o,$(wildcard *.c))
1906 foo : $(objects)
1907         cc -o foo $(objects)
1908 @end example
1910 @noindent
1911 (This takes advantage of the implicit rule for compiling C programs, so
1912 there is no need to write explicit rules for compiling the files.
1913 @xref{Flavors, ,The Two Flavors of Variables}, for an explanation of
1914 @samp{:=}, which is a variant of @samp{=}.)
1916 @node Directory Search, Phony Targets, Wildcards, Rules
1917 @section Searching Directories for Prerequisites
1918 @vindex VPATH
1919 @findex vpath
1920 @cindex vpath
1921 @cindex search path for prerequisites (@code{VPATH})
1922 @cindex directory search (@code{VPATH})
1924 For large systems, it is often desirable to put sources in a separate
1925 directory from the binaries.  The @dfn{directory search} features of
1926 @code{make} facilitate this by searching several directories
1927 automatically to find a prerequisite.  When you redistribute the files
1928 among directories, you do not need to change the individual rules,
1929 just the search paths.
1931 @menu
1932 * General Search::              Specifying a search path that applies
1933                                   to every prerequisite.
1934 * Selective Search::            Specifying a search path
1935                                   for a specified class of names.
1936 * Search Algorithm::            When and how search paths are applied.
1937 * Commands/Search::             How to write shell commands that work together
1938                                   with search paths.
1939 * Implicit/Search::             How search paths affect implicit rules.
1940 * Libraries/Search::            Directory search for link libraries.
1941 @end menu
1943 @node General Search, Selective Search, Directory Search, Directory Search
1944 @subsection @code{VPATH}: Search Path for All Prerequisites
1945 @vindex VPATH
1947 The value of the @code{make} variable @code{VPATH} specifies a list of
1948 directories that @code{make} should search.  Most often, the
1949 directories are expected to contain prerequisite files that are not in the
1950 current directory; however, @code{make} uses @code{VPATH} as a search
1951 list for both prerequisites and targets of rules.
1953 Thus, if a file that is listed as a target or prerequisite does not exist
1954 in the current directory, @code{make} searches the directories listed in
1955 @code{VPATH} for a file with that name.  If a file is found in one of
1956 them, that file may become the prerequisite (see below).  Rules may then
1957 specify the names of files in the prerequisite list as if they all
1958 existed in the current directory.  @xref{Commands/Search, ,Writing Shell
1959 Commands with Directory Search}.
1961 In the @code{VPATH} variable, directory names are separated by colons or
1962 blanks.  The order in which directories are listed is the order followed
1963 by @code{make} in its search.  (On MS-DOS and MS-Windows, semi-colons
1964 are used as separators of directory names in @code{VPATH}, since the
1965 colon can be used in the pathname itself, after the drive letter.)
1967 For example,
1969 @example
1970 VPATH = src:../headers
1971 @end example
1973 @noindent
1974 specifies a path containing two directories, @file{src} and
1975 @file{../headers}, which @code{make} searches in that order.
1977 With this value of @code{VPATH}, the following rule,
1979 @example
1980 foo.o : foo.c
1981 @end example
1983 @noindent
1984 is interpreted as if it were written like this:
1986 @example
1987 foo.o : src/foo.c
1988 @end example
1990 @noindent
1991 assuming the file @file{foo.c} does not exist in the current directory but
1992 is found in the directory @file{src}.
1994 @node Selective Search, Search Algorithm, General Search, Directory Search
1995 @subsection The @code{vpath} Directive
1996 @findex vpath
1998 Similar to the @code{VPATH} variable, but more selective, is the
1999 @code{vpath} directive (note lower case), which allows you to specify a
2000 search path for a particular class of file names: those that match a
2001 particular pattern.  Thus you can supply certain search directories for
2002 one class of file names and other directories (or none) for other file
2003 names.
2005 There are three forms of the @code{vpath} directive:
2007 @table @code
2008 @item vpath @var{pattern} @var{directories}
2009 Specify the search path @var{directories} for file names that match
2010 @var{pattern}.
2012 The search path, @var{directories}, is a list of directories to be
2013 searched, separated by colons (semi-colons on MS-DOS and MS-Windows) or
2014 blanks, just like the search path used in the @code{VPATH} variable.
2016 @item vpath @var{pattern}
2017 Clear out the search path associated with @var{pattern}.
2019 @c Extra blank line makes sure this gets two lines.
2020 @item vpath
2022 Clear all search paths previously specified with @code{vpath} directives.
2023 @end table
2025 A @code{vpath} pattern is a string containing a @samp{%} character.  The
2026 string must match the file name of a prerequisite that is being searched
2027 for, the @samp{%} character matching any sequence of zero or more
2028 characters (as in pattern rules; @pxref{Pattern Rules, ,Defining and
2029 Redefining Pattern Rules}).  For example, @code{%.h} matches files that
2030 end in @code{.h}.  (If there is no @samp{%}, the pattern must match the
2031 prerequisite exactly, which is not useful very often.)
2033 @cindex @code{%}, quoting in @code{vpath}
2034 @cindex @code{%}, quoting with @code{\} (backslash)
2035 @cindex @code{\} (backslash), to quote @code{%}
2036 @cindex backslash (@code{\}), to quote @code{%}
2037 @cindex quoting @code{%}, in @code{vpath}
2038 @samp{%} characters in a @code{vpath} directive's pattern can be quoted
2039 with preceding backslashes (@samp{\}).  Backslashes that would otherwise
2040 quote @samp{%} characters can be quoted with more backslashes.
2041 Backslashes that quote @samp{%} characters or other backslashes are
2042 removed from the pattern before it is compared to file names.  Backslashes
2043 that are not in danger of quoting @samp{%} characters go unmolested.@refill
2045 When a prerequisite fails to exist in the current directory, if the
2046 @var{pattern} in a @code{vpath} directive matches the name of the
2047 prerequisite file, then the @var{directories} in that directive are searched
2048 just like (and before) the directories in the @code{VPATH} variable.
2050 For example,
2052 @example
2053 vpath %.h ../headers
2054 @end example
2056 @noindent
2057 tells @code{make} to look for any prerequisite whose name ends in @file{.h}
2058 in the directory @file{../headers} if the file is not found in the current
2059 directory.
2061 If several @code{vpath} patterns match the prerequisite file's name, then
2062 @code{make} processes each matching @code{vpath} directive one by one,
2063 searching all the directories mentioned in each directive.  @code{make}
2064 handles multiple @code{vpath} directives in the order in which they
2065 appear in the makefile; multiple directives with the same pattern are
2066 independent of each other.
2068 @need 750
2069 Thus,
2071 @example
2072 @group
2073 vpath %.c foo
2074 vpath %   blish
2075 vpath %.c bar
2076 @end group
2077 @end example
2079 @noindent
2080 will look for a file ending in @samp{.c} in @file{foo}, then
2081 @file{blish}, then @file{bar}, while
2083 @example
2084 @group
2085 vpath %.c foo:bar
2086 vpath %   blish
2087 @end group
2088 @end example
2090 @noindent
2091 will look for a file ending in @samp{.c} in @file{foo}, then
2092 @file{bar}, then @file{blish}.
2094 @node Search Algorithm, Commands/Search, Selective Search, Directory Search
2095 @subsection How Directory Searches are Performed
2096 @cindex algorithm for directory search
2097 @cindex directory search algorithm
2099 When a prerequisite is found through directory search, regardless of type
2100 (general or selective), the pathname located may not be the one that
2101 @code{make} actually provides you in the prerequisite list.  Sometimes
2102 the path discovered through directory search is thrown away.
2104 The algorithm @code{make} uses to decide whether to keep or abandon a
2105 path found via directory search is as follows:
2107 @enumerate
2108 @item
2109 If a target file does not exist at the path specified in the makefile,
2110 directory search is performed.
2112 @item
2113 If the directory search is successful, that path is kept and this file
2114 is tentatively stored as the target.
2116 @item
2117 All prerequisites of this target are examined using this same method.
2119 @item
2120 After processing the prerequisites, the target may or may not need to be
2121 rebuilt:
2123 @enumerate a
2124 @item
2125 If the target does @emph{not} need to be rebuilt, the path to the file
2126 found during directory search is used for any prerequisite lists which
2127 contain this target.  In short, if @code{make} doesn't need to rebuild
2128 the target then you use the path found via directory search.
2130 @item
2131 If the target @emph{does} need to be rebuilt (is out-of-date), the
2132 pathname found during directory search is @emph{thrown away}, and the
2133 target is rebuilt using the file name specified in the makefile.  In
2134 short, if @code{make} must rebuild, then the target is rebuilt locally,
2135 not in the directory found via directory search.
2136 @end enumerate
2137 @end enumerate
2139 This algorithm may seem complex, but in practice it is quite often
2140 exactly what you want.
2142 @cindex traditional directory search (GPATH)
2143 @cindex directory search, traditional (GPATH)
2144 Other versions of @code{make} use a simpler algorithm: if the file does
2145 not exist, and it is found via directory search, then that pathname is
2146 always used whether or not the target needs to be built.  Thus, if the
2147 target is rebuilt it is created at the pathname discovered during
2148 directory search.
2150 @vindex GPATH
2151 If, in fact, this is the behavior you want for some or all of your
2152 directories, you can use the @code{GPATH} variable to indicate this to
2153 @code{make}.
2155 @code{GPATH} has the same syntax and format as @code{VPATH} (that is, a
2156 space- or colon-delimited list of pathnames).  If an out-of-date target
2157 is found by directory search in a directory that also appears in
2158 @code{GPATH}, then that pathname is not thrown away.  The target is
2159 rebuilt using the expanded path.
2161 @node Commands/Search, Implicit/Search, Search Algorithm, Directory Search
2162 @subsection Writing Shell Commands with Directory Search
2163 @cindex shell command, and directory search
2164 @cindex directory search (@code{VPATH}), and shell commands
2166 When a prerequisite is found in another directory through directory search,
2167 this cannot change the commands of the rule; they will execute as written.
2168 Therefore, you must write the commands with care so that they will look for
2169 the prerequisite in the directory where @code{make} finds it.
2171 This is done with the @dfn{automatic variables} such as @samp{$^}
2172 (@pxref{Automatic Variables}).
2173 For instance, the value of @samp{$^} is a
2174 list of all the prerequisites of the rule, including the names of
2175 the directories in which they were found, and the value of
2176 @samp{$@@} is the target.  Thus:@refill
2178 @example
2179 foo.o : foo.c
2180         cc -c $(CFLAGS) $^ -o $@@
2181 @end example
2183 @noindent
2184 (The variable @code{CFLAGS} exists so you can specify flags for C
2185 compilation by implicit rules; we use it here for consistency so it will
2186 affect all C compilations uniformly;
2187 @pxref{Implicit Variables, ,Variables Used by Implicit Rules}.)
2189 Often the prerequisites include header files as well, which you do not
2190 want to mention in the commands.  The automatic variable @samp{$<} is
2191 just the first prerequisite:
2193 @example
2194 VPATH = src:../headers
2195 foo.o : foo.c defs.h hack.h
2196         cc -c $(CFLAGS) $< -o $@@
2197 @end example
2199 @node Implicit/Search, Libraries/Search, Commands/Search, Directory Search
2200 @subsection Directory Search and Implicit Rules
2201 @cindex @code{VPATH}, and implicit rules
2202 @cindex directory search (@code{VPATH}), and implicit rules
2203 @cindex search path for prerequisites (@code{VPATH}), and implicit rules
2204 @cindex implicit rule, and directory search
2205 @cindex implicit rule, and @code{VPATH}
2206 @cindex rule, implicit, and directory search
2207 @cindex rule, implicit, and @code{VPATH}
2209 The search through the directories specified in @code{VPATH} or with
2210 @code{vpath} also happens during consideration of implicit rules
2211 (@pxref{Implicit Rules, ,Using Implicit Rules}).
2213 For example, when a file @file{foo.o} has no explicit rule, @code{make}
2214 considers implicit rules, such as the built-in rule to compile
2215 @file{foo.c} if that file exists.  If such a file is lacking in the
2216 current directory, the appropriate directories are searched for it.  If
2217 @file{foo.c} exists (or is mentioned in the makefile) in any of the
2218 directories, the implicit rule for C compilation is applied.
2220 The commands of implicit rules normally use automatic variables as a
2221 matter of necessity; consequently they will use the file names found by
2222 directory search with no extra effort.
2224 @node Libraries/Search,  , Implicit/Search, Directory Search
2225 @subsection Directory Search for Link Libraries
2226 @cindex link libraries, and directory search
2227 @cindex libraries for linking, directory search
2228 @cindex directory search (@code{VPATH}), and link libraries
2229 @cindex @code{VPATH}, and link libraries
2230 @cindex search path for prerequisites (@code{VPATH}), and link libraries
2231 @cindex @code{-l} (library search)
2232 @cindex link libraries, patterns matching
2233 @cindex @code{.LIBPATTERNS}, and link libraries
2234 @vindex .LIBPATTERNS
2236 Directory search applies in a special way to libraries used with the
2237 linker.  This special feature comes into play when you write a prerequisite
2238 whose name is of the form @samp{-l@var{name}}.  (You can tell something
2239 strange is going on here because the prerequisite is normally the name of a
2240 file, and the @emph{file name} of a library generally looks like
2241 @file{lib@var{name}.a}, not like @samp{-l@var{name}}.)@refill
2243 When a prerequisite's name has the form @samp{-l@var{name}}, @code{make}
2244 handles it specially by searching for the file @file{lib@var{name}.so} in
2245 the current directory, in directories specified by matching @code{vpath}
2246 search paths and the @code{VPATH} search path, and then in the
2247 directories @file{/lib}, @file{/usr/lib}, and @file{@var{prefix}/lib}
2248 (normally @file{/usr/local/lib}, but MS-DOS/MS-Windows versions of
2249 @code{make} behave as if @var{prefix} is defined to be the root of the
2250 DJGPP installation tree).
2252 If that file is not found, then the file @file{lib@var{name}.a} is
2253 searched for, in the same directories as above.
2255 For example, if there is a @file{/usr/lib/libcurses.a} library on your
2256 system (and no @file{/usr/lib/libcurses.so} file), then
2258 @example
2259 @group
2260 foo : foo.c -lcurses
2261         cc $^ -o $@@
2262 @end group
2263 @end example
2265 @noindent
2266 would cause the command @samp{cc foo.c /usr/lib/libcurses.a -o foo} to
2267 be executed when @file{foo} is older than @file{foo.c} or than
2268 @file{/usr/lib/libcurses.a}.@refill
2270 Although the default set of files to be searched for is
2271 @file{lib@var{name}.so} and @file{lib@var{name}.a}, this is customizable
2272 via the @code{.LIBPATTERNS} variable.  Each word in the value of this
2273 variable is a pattern string.  When a prerequisite like
2274 @samp{-l@var{name}} is seen, @code{make} will replace the percent in
2275 each pattern in the list with @var{name} and perform the above directory
2276 searches using that library filename.  If no library is found, the next
2277 word in the list will be used.
2279 The default value for @code{.LIBPATTERNS} is ``@samp{lib%.so lib%.a}'',
2280 which provides the default behavior described above.
2282 You can turn off link library expansion completely by setting this
2283 variable to an empty value.
2285 @node Phony Targets, Force Targets, Directory Search, Rules
2286 @section Phony Targets
2287 @cindex phony targets
2288 @cindex targets, phony
2289 @cindex targets without a file
2291 A phony target is one that is not really the name of a file.  It is just a
2292 name for some commands to be executed when you make an explicit request.
2293 There are two reasons to use a phony target: to avoid a conflict with
2294 a file of the same name, and to improve performance.
2296 If you write a rule whose commands will not create the target file, the
2297 commands will be executed every time the target comes up for remaking.
2298 Here is an example:
2300 @example
2301 @group
2302 clean:
2303         rm *.o temp
2304 @end group
2305 @end example
2307 @noindent
2308 Because the @code{rm} command does not create a file named @file{clean},
2309 probably no such file will ever exist.  Therefore, the @code{rm} command
2310 will be executed every time you say @samp{make clean}.
2311 @cindex @code{rm} (shell command)
2313 @findex .PHONY
2314 The phony target will cease to work if anything ever does create a file
2315 named @file{clean} in this directory.  Since it has no prerequisites, the
2316 file @file{clean} would inevitably be considered up to date, and its
2317 commands would not be executed.  To avoid this problem, you can explicitly
2318 declare the target to be phony, using the special target @code{.PHONY}
2319 (@pxref{Special Targets, ,Special Built-in Target Names}) as follows:
2321 @example
2322 .PHONY : clean
2323 @end example
2325 @noindent
2326 Once this is done, @samp{make clean} will run the commands regardless of
2327 whether there is a file named @file{clean}.
2329 Since it knows that phony targets do not name actual files that could be
2330 remade from other files, @code{make} skips the implicit rule search for
2331 phony targets (@pxref{Implicit Rules}).  This is why declaring a target
2332 phony is good for performance, even if you are not worried about the
2333 actual file existing.
2335 Thus, you first write the line that states that @code{clean} is a
2336 phony target, then you write the rule, like this:
2338 @example
2339 @group
2340 .PHONY: clean
2341 clean:
2342         rm *.o temp
2343 @end group
2344 @end example
2346 Another example of the usefulness of phony targets is in conjunction
2347 with recursive invocations of @code{make} (for more information, see
2348 @ref{Recursion, ,Recursive Use of @code{make}}).  In this case the
2349 makefile will often contain a variable which lists a number of
2350 subdirectories to be built.  One way to handle this is with one rule
2351 whose command is a shell loop over the subdirectories, like this:
2353 @example
2354 @group
2355 SUBDIRS = foo bar baz
2357 subdirs:
2358         for dir in $(SUBDIRS); do \
2359           $(MAKE) -C $$dir; \
2360         done
2361 @end group
2362 @end example
2364 There are a few problems with this method, however.  First, any error
2365 detected in a submake is not noted by this rule, so it will continue to
2366 build the rest of the directories even when one fails.  This can be
2367 overcome by adding shell commands to note the error and exit, but then
2368 it will do so even if @code{make} is invoked with the @code{-k} option,
2369 which is unfortunate.  Second, and perhaps more importantly, you cannot
2370 take advantage of the parallel build capabilities of make using this
2371 method, since there is only one rule.
2373 By declaring the subdirectories as phony targets (you must do this as
2374 the subdirectory obviously always exists; otherwise it won't be built)
2375 you can remove these problems:
2377 @example
2378 @group
2379 SUBDIRS = foo bar baz
2381 .PHONY: subdirs $(SUBDIRS)
2383 subdirs: $(SUBDIRS)
2385 $(SUBDIRS):
2386         $(MAKE) -C $@@
2388 foo: baz
2389 @end group
2390 @end example
2392 Here we've also declared that the @file{foo} subdirectory cannot be
2393 built until after the @file{baz} subdirectory is complete; this kind of
2394 relationship declaration is particularly important when attempting
2395 parallel builds.
2397 A phony target should not be a prerequisite of a real target file; if it
2398 is, its commands are run every time @code{make} goes to update that
2399 file.  As long as a phony target is never a prerequisite of a real
2400 target, the phony target commands will be executed only when the phony
2401 target is a specified goal (@pxref{Goals, ,Arguments to Specify the
2402 Goals}).
2404 Phony targets can have prerequisites.  When one directory contains multiple
2405 programs, it is most convenient to describe all of the programs in one
2406 makefile @file{./Makefile}.  Since the target remade by default will be the
2407 first one in the makefile, it is common to make this a phony target named
2408 @samp{all} and give it, as prerequisites, all the individual programs.  For
2409 example:
2411 @example
2412 all : prog1 prog2 prog3
2413 .PHONY : all
2415 prog1 : prog1.o utils.o
2416         cc -o prog1 prog1.o utils.o
2418 prog2 : prog2.o
2419         cc -o prog2 prog2.o
2421 prog3 : prog3.o sort.o utils.o
2422         cc -o prog3 prog3.o sort.o utils.o
2423 @end example
2425 @noindent
2426 Now you can say just @samp{make} to remake all three programs, or
2427 specify as arguments the ones to remake (as in @samp{make prog1
2428 prog3}).  Phoniness is not inherited: the prerequisites of a phony
2429 target are not themselves phony, unless explicitly declared to be so.
2431 When one phony target is a prerequisite of another, it serves as a subroutine
2432 of the other.  For example, here @samp{make cleanall} will delete the
2433 object files, the difference files, and the file @file{program}:
2435 @example
2436 .PHONY: cleanall cleanobj cleandiff
2438 cleanall : cleanobj cleandiff
2439         rm program
2441 cleanobj :
2442         rm *.o
2444 cleandiff :
2445         rm *.diff
2446 @end example
2448 @node Force Targets, Empty Targets, Phony Targets, Rules
2449 @section Rules without Commands or Prerequisites
2450 @cindex force targets
2451 @cindex targets, force
2452 @cindex @code{FORCE}
2453 @cindex rule, no commands or prerequisites
2455 If a rule has no prerequisites or commands, and the target of the rule
2456 is a nonexistent file, then @code{make} imagines this target to have
2457 been updated whenever its rule is run.  This implies that all targets
2458 depending on this one will always have their commands run.
2460 An example will illustrate this:
2462 @example
2463 @group
2464 clean: FORCE
2465         rm $(objects)
2466 FORCE:
2467 @end group
2468 @end example
2470 Here the target @samp{FORCE} satisfies the special conditions, so the
2471 target @file{clean} that depends on it is forced to run its commands.
2472 There is nothing special about the name @samp{FORCE}, but that is one name
2473 commonly used this way.
2475 As you can see, using @samp{FORCE} this way has the same results as using
2476 @samp{.PHONY: clean}.
2478 Using @samp{.PHONY} is more explicit and more efficient.  However,
2479 other versions of @code{make} do not support @samp{.PHONY}; thus
2480 @samp{FORCE} appears in many makefiles.  @xref{Phony Targets}.
2482 @node Empty Targets, Special Targets, Force Targets, Rules
2483 @section Empty Target Files to Record Events
2484 @cindex empty targets
2485 @cindex targets, empty
2486 @cindex recording events with empty targets
2488 The @dfn{empty target} is a variant of the phony target; it is used to hold
2489 commands for an action that you request explicitly from time to time.
2490 Unlike a phony target, this target file can really exist; but the file's
2491 contents do not matter, and usually are empty.
2493 The purpose of the empty target file is to record, with its
2494 last-modification time, when the rule's commands were last executed.  It
2495 does so because one of the commands is a @code{touch} command to update the
2496 target file.
2498 The empty target file should have some prerequisites (otherwise it
2499 doesn't make sense).  When you ask to remake the empty target, the
2500 commands are executed if any prerequisite is more recent than the target;
2501 in other words, if a prerequisite has changed since the last time you
2502 remade the target.  Here is an example:
2504 @example
2505 print: foo.c bar.c
2506         lpr -p $?
2507         touch print
2508 @end example
2509 @cindex @code{print} target
2510 @cindex @code{lpr} (shell command)
2511 @cindex @code{touch} (shell command)
2513 @noindent
2514 With this rule, @samp{make print} will execute the @code{lpr} command if
2515 either source file has changed since the last @samp{make print}.  The
2516 automatic variable @samp{$?} is used to print only those files that have
2517 changed (@pxref{Automatic Variables}).
2519 @node Special Targets, Multiple Targets, Empty Targets, Rules
2520 @section Special Built-in Target Names
2521 @cindex special targets
2522 @cindex built-in special targets
2523 @cindex targets, built-in special
2525 Certain names have special meanings if they appear as targets.
2527 @table @code
2528 @findex .PHONY
2529 @item .PHONY
2531 The prerequisites of the special target @code{.PHONY} are considered to
2532 be phony targets.  When it is time to consider such a target,
2533 @code{make} will run its commands unconditionally, regardless of
2534 whether a file with that name exists or what its last-modification
2535 time is.  @xref{Phony Targets, ,Phony Targets}.
2537 @findex .SUFFIXES
2538 @item .SUFFIXES
2540 The prerequisites of the special target @code{.SUFFIXES} are the list
2541 of suffixes to be used in checking for suffix rules.
2542 @xref{Suffix Rules, , Old-Fashioned Suffix Rules}.
2544 @findex .DEFAULT
2545 @item .DEFAULT
2547 The commands specified for @code{.DEFAULT} are used for any target for
2548 which no rules are found (either explicit rules or implicit rules).
2549 @xref{Last Resort}.  If @code{.DEFAULT} commands are specified, every
2550 file mentioned as a prerequisite, but not as a target in a rule, will have
2551 these commands executed on its behalf.  @xref{Implicit Rule Search,
2552 ,Implicit Rule Search Algorithm}.
2554 @findex .PRECIOUS
2555 @item .PRECIOUS
2556 @cindex precious targets
2557 @cindex preserving with @code{.PRECIOUS}
2559 The targets which @code{.PRECIOUS} depends on are given the following
2560 special treatment: if @code{make} is killed or interrupted during the
2561 execution of their commands, the target is not deleted.
2562 @xref{Interrupts, ,Interrupting or Killing @code{make}}.  Also, if the
2563 target is an intermediate file, it will not be deleted after it is no
2564 longer needed, as is normally done.  @xref{Chained Rules, ,Chains of
2565 Implicit Rules}.  In this latter respect it overlaps with the
2566 @code{.SECONDARY} special target.
2568 You can also list the target pattern of an implicit rule (such as
2569 @samp{%.o}) as a prerequisite file of the special target @code{.PRECIOUS}
2570 to preserve intermediate files created by rules whose target patterns
2571 match that file's name.
2573 @findex .INTERMEDIATE
2574 @item .INTERMEDIATE
2575 @cindex intermediate targets, explicit
2577 The targets which @code{.INTERMEDIATE} depends on are treated as
2578 intermediate files.  @xref{Chained Rules, ,Chains of Implicit Rules}.
2579 @code{.INTERMEDIATE} with no prerequisites has no effect.
2581 @findex .SECONDARY
2582 @item .SECONDARY
2583 @cindex secondary targets
2584 @cindex preserving with @code{.SECONDARY}
2586 The targets which @code{.SECONDARY} depends on are treated as
2587 intermediate files, except that they are never automatically deleted.
2588 @xref{Chained Rules, ,Chains of Implicit Rules}.
2590 @code{.SECONDARY} with no prerequisites causes all targets to be treated
2591 as secondary (i.e., no target is removed because it is considered
2592 intermediate).
2594 @findex .DELETE_ON_ERROR
2595 @item .DELETE_ON_ERROR
2596 @cindex removing targets on failure
2598 If @code{.DELETE_ON_ERROR} is mentioned as a target anywhere in the
2599 makefile, then @code{make} will delete the target of a rule if it has
2600 changed and its commands exit with a nonzero exit status, just as it
2601 does when it receives a signal.  @xref{Errors, ,Errors in Commands}.
2603 @findex .IGNORE
2604 @item .IGNORE
2606 If you specify prerequisites for @code{.IGNORE}, then @code{make} will
2607 ignore errors in execution of the commands run for those particular
2608 files.  The commands for @code{.IGNORE} are not meaningful.
2610 If mentioned as a target with no prerequisites, @code{.IGNORE} says to
2611 ignore errors in execution of commands for all files.  This usage of
2612 @samp{.IGNORE} is supported only for historical compatibility.  Since
2613 this affects every command in the makefile, it is not very useful; we
2614 recommend you use the more selective ways to ignore errors in specific
2615 commands.  @xref{Errors, ,Errors in Commands}.
2617 @findex .LOW_RESOLUTION_TIME
2618 @item .LOW_RESOLUTION_TIME
2620 If you specify prerequisites for @code{.LOW_RESOLUTION_TIME},
2621 @command{make} assumes that these files are created by commands that
2622 generate low resolution time stamps.  The commands for
2623 @code{.LOW_RESOLUTION_TIME} are not meaningful.
2625 The high resolution file time stamps of many modern hosts lessen the
2626 chance of @command{make} incorrectly concluding that a file is up to
2627 date.  Unfortunately, these hosts provide no way to set a high
2628 resolution file time stamp, so commands like @samp{cp -p} that
2629 explicitly set a file's time stamp must discard its subsecond part.  If
2630 a file is created by such a command, you should list it as a
2631 prerequisite of @code{.LOW_RESOLUTION_TIME} so that @command{make} does
2632 not mistakenly conclude that the file is out of date.  For example:
2634 @example
2635 @group
2636 .LOW_RESOLUTION_TIME: dst
2637 dst: src
2638         cp -p src dst
2639 @end group
2640 @end example
2642 Since @samp{cp -p} discards the subsecond part of @file{src}'s time
2643 stamp, @file{dst} is typically slightly older than @file{src} even when
2644 it is up to date.  The @code{.LOW_RESOLUTION_TIME} line causes
2645 @command{make} to consider @file{dst} to be up to date if its time stamp
2646 is at the start of the same second that @file{src}'s time stamp is in.
2648 Due to a limitation of the archive format, archive member time stamps
2649 are always low resolution.  You need not list archive members as
2650 prerequisites of @code{.LOW_RESOLUTION_TIME}, as @command{make} does this
2651 automatically.
2653 @findex .SILENT
2654 @item .SILENT
2656 If you specify prerequisites for @code{.SILENT}, then @code{make} will
2657 not print the commands to remake those particular files before executing
2658 them.  The commands for @code{.SILENT} are not meaningful.
2660 If mentioned as a target with no prerequisites, @code{.SILENT} says not
2661 to print any commands before executing them.  This usage of
2662 @samp{.SILENT} is supported only for historical compatibility.  We
2663 recommend you use the more selective ways to silence specific commands.
2664 @xref{Echoing, ,Command Echoing}.  If you want to silence all commands
2665 for a particular run of @code{make}, use the @samp{-s} or
2666 @w{@samp{--silent}} option (@pxref{Options Summary}).
2668 @findex .EXPORT_ALL_VARIABLES
2669 @item .EXPORT_ALL_VARIABLES
2671 Simply by being mentioned as a target, this tells @code{make} to
2672 export all variables to child processes by default.
2673 @xref{Variables/Recursion, ,Communicating Variables to a
2674 Sub-@code{make}}.
2676 @findex .NOTPARALLEL
2677 @item .NOTPARALLEL
2678 @cindex parallel execution, overriding
2680 If @code{.NOTPARALLEL} is mentioned as a target, then this invocation of
2681 @code{make} will be run serially, even if the @samp{-j} option is
2682 given.  Any recursively invoked @code{make} command will still be run in
2683 parallel (unless its makefile contains this target).  Any prerequisites
2684 on this target are ignored.
2685 @end table
2687 Any defined implicit rule suffix also counts as a special target if it
2688 appears as a target, and so does the concatenation of two suffixes, such
2689 as @samp{.c.o}.  These targets are suffix rules, an obsolete way of
2690 defining implicit rules (but a way still widely used).  In principle, any
2691 target name could be special in this way if you break it in two and add
2692 both pieces to the suffix list.  In practice, suffixes normally begin with
2693 @samp{.}, so these special target names also begin with @samp{.}.
2694 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
2696 @node Multiple Targets, Multiple Rules, Special Targets, Rules
2697 @section Multiple Targets in a Rule
2698 @cindex multiple targets
2699 @cindex several targets in a rule
2700 @cindex targets, multiple
2701 @cindex rule, with multiple targets
2703 A rule with multiple targets is equivalent to writing many rules, each with
2704 one target, and all identical aside from that.  The same commands apply to
2705 all the targets, but their effects may vary because you can substitute the
2706 actual target name into the command using @samp{$@@}.  The rule contributes
2707 the same prerequisites to all the targets also.
2709 This is useful in two cases.
2711 @itemize @bullet
2712 @item
2713 You want just prerequisites, no commands.  For example:
2715 @example
2716 kbd.o command.o files.o: command.h
2717 @end example
2719 @noindent
2720 gives an additional prerequisite to each of the three object files
2721 mentioned.
2723 @item
2724 Similar commands work for all the targets.  The commands do not need
2725 to be absolutely identical, since the automatic variable @samp{$@@}
2726 can be used to substitute the particular target to be remade into the
2727 commands (@pxref{Automatic Variables}).  For example:
2729 @example
2730 @group
2731 bigoutput littleoutput : text.g
2732         generate text.g -$(subst output,,$@@) > $@@
2733 @end group
2734 @end example
2735 @findex subst
2737 @noindent
2738 is equivalent to
2740 @example
2741 bigoutput : text.g
2742         generate text.g -big > bigoutput
2743 littleoutput : text.g
2744         generate text.g -little > littleoutput
2745 @end example
2747 @noindent
2748 Here we assume the hypothetical program @code{generate} makes two
2749 types of output, one if given @samp{-big} and one if given
2750 @samp{-little}.
2751 @xref{Text Functions, ,Functions for String Substitution and Analysis},
2752 for an explanation of the @code{subst} function.
2753 @end itemize
2755 Suppose you would like to vary the prerequisites according to the target,
2756 much as the variable @samp{$@@} allows you to vary the commands.
2757 You cannot do this with multiple targets in an ordinary rule, but you can
2758 do it with a @dfn{static pattern rule}.
2759 @xref{Static Pattern, ,Static Pattern Rules}.
2761 @node Multiple Rules, Static Pattern, Multiple Targets, Rules
2762 @section Multiple Rules for One Target
2763 @cindex multiple rules for one target
2764 @cindex several rules for one target
2765 @cindex rule, multiple for one target
2766 @cindex target, multiple rules for one
2768 One file can be the target of several rules.  All the prerequisites
2769 mentioned in all the rules are merged into one list of prerequisites for
2770 the target.  If the target is older than any prerequisite from any rule,
2771 the commands are executed.
2773 There can only be one set of commands to be executed for a file.  If
2774 more than one rule gives commands for the same file, @code{make} uses
2775 the last set given and prints an error message.  (As a special case,
2776 if the file's name begins with a dot, no error message is printed.
2777 This odd behavior is only for compatibility with other implementations
2778 of @code{make}... you should avoid using it).  Occasionally it is
2779 useful to have the same target invoke multiple commands which are
2780 defined in different parts of your makefile; you can use
2781 @dfn{double-colon rules} (@pxref{Double-Colon}) for this.
2783 An extra rule with just prerequisites can be used to give a few extra
2784 prerequisites to many files at once.  For example, makefiles often
2785 have a variable, such as @code{objects}, containing a list of all the
2786 compiler output files in the system being made.  An easy way to say
2787 that all of them must be recompiled if @file{config.h} changes is to
2788 write the following:
2790 @example
2791 objects = foo.o bar.o
2792 foo.o : defs.h
2793 bar.o : defs.h test.h
2794 $(objects) : config.h
2795 @end example
2797 This could be inserted or taken out without changing the rules that really
2798 specify how to make the object files, making it a convenient form to use if
2799 you wish to add the additional prerequisite intermittently.
2801 Another wrinkle is that the additional prerequisites could be specified with
2802 a variable that you set with a command argument to @code{make}
2803 (@pxref{Overriding, ,Overriding Variables}).  For example,
2805 @example
2806 @group
2807 extradeps=
2808 $(objects) : $(extradeps)
2809 @end group
2810 @end example
2812 @noindent
2813 means that the command @samp{make extradeps=foo.h} will consider
2814 @file{foo.h} as a prerequisite of each object file, but plain @samp{make}
2815 will not.
2817 If none of the explicit rules for a target has commands, then @code{make}
2818 searches for an applicable implicit rule to find some commands
2819 @pxref{Implicit Rules, ,Using Implicit Rules}).
2821 @node Static Pattern, Double-Colon, Multiple Rules, Rules
2822 @section Static Pattern Rules
2823 @cindex static pattern rule
2824 @cindex rule, static pattern
2825 @cindex pattern rules, static (not implicit)
2826 @cindex varying prerequisites
2827 @cindex prerequisites, varying (static pattern)
2829 @dfn{Static pattern rules} are rules which specify multiple targets and
2830 construct the prerequisite names for each target based on the target name.
2831 They are more general than ordinary rules with multiple targets because the
2832 targets do not have to have identical prerequisites.  Their prerequisites must
2833 be @emph{analogous}, but not necessarily @emph{identical}.
2835 @menu
2836 * Static Usage::                The syntax of static pattern rules.
2837 * Static versus Implicit::      When are they better than implicit rules?
2838 @end menu
2840 @node Static Usage, Static versus Implicit, Static Pattern, Static Pattern
2841 @subsection Syntax of Static Pattern Rules
2842 @cindex static pattern rule, syntax of
2843 @cindex pattern rules, static, syntax of
2845 Here is the syntax of a static pattern rule:
2847 @example
2848 @var{targets} @dots{}: @var{target-pattern}: @var{prereq-patterns} @dots{}
2849         @var{commands}
2850         @dots{}
2851 @end example
2853 @noindent
2854 The @var{targets} list specifies the targets that the rule applies to.
2855 The targets can contain wildcard characters, just like the targets of
2856 ordinary rules (@pxref{Wildcards, ,Using Wildcard Characters in File
2857 Names}).
2859 @cindex target pattern, static (not implicit)
2860 @cindex stem
2861 The @var{target-pattern} and @var{prereq-patterns} say how to compute the
2862 prerequisites of each target.  Each target is matched against the
2863 @var{target-pattern} to extract a part of the target name, called the
2864 @dfn{stem}.  This stem is substituted into each of the @var{prereq-patterns}
2865 to make the prerequisite names (one from each @var{prereq-pattern}).
2867 Each pattern normally contains the character @samp{%} just once.  When the
2868 @var{target-pattern} matches a target, the @samp{%} can match any part of
2869 the target name; this part is called the @dfn{stem}.  The rest of the
2870 pattern must match exactly.  For example, the target @file{foo.o} matches
2871 the pattern @samp{%.o}, with @samp{foo} as the stem.  The targets
2872 @file{foo.c} and @file{foo.out} do not match that pattern.@refill
2874 @cindex prerequisite pattern, static (not implicit)
2875 The prerequisite names for each target are made by substituting the stem
2876 for the @samp{%} in each prerequisite pattern.  For example, if one
2877 prerequisite pattern is @file{%.c}, then substitution of the stem
2878 @samp{foo} gives the prerequisite name @file{foo.c}.  It is legitimate
2879 to write a prerequisite pattern that does not contain @samp{%}; then this
2880 prerequisite is the same for all targets.
2882 @cindex @code{%}, quoting in static pattern
2883 @cindex @code{%}, quoting with @code{\} (backslash)
2884 @cindex @code{\} (backslash), to quote @code{%}
2885 @cindex backslash (@code{\}), to quote @code{%}
2886 @cindex quoting @code{%}, in static pattern
2887 @samp{%} characters in pattern rules can be quoted with preceding
2888 backslashes (@samp{\}).  Backslashes that would otherwise quote @samp{%}
2889 characters can be quoted with more backslashes.  Backslashes that quote
2890 @samp{%} characters or other backslashes are removed from the pattern
2891 before it is compared to file names or has a stem substituted into it.
2892 Backslashes that are not in danger of quoting @samp{%} characters go
2893 unmolested.  For example, the pattern @file{the\%weird\\%pattern\\} has
2894 @samp{the%weird\} preceding the operative @samp{%} character, and
2895 @samp{pattern\\} following it.  The final two backslashes are left alone
2896 because they cannot affect any @samp{%} character.@refill
2898 Here is an example, which compiles each of @file{foo.o} and @file{bar.o}
2899 from the corresponding @file{.c} file:
2901 @example
2902 @group
2903 objects = foo.o bar.o
2905 all: $(objects)
2907 $(objects): %.o: %.c
2908         $(CC) -c $(CFLAGS) $< -o $@@
2909 @end group
2910 @end example
2912 @noindent
2913 Here @samp{$<} is the automatic variable that holds the name of the
2914 prerequisite and @samp{$@@} is the automatic variable that holds the name
2915 of the target; see @ref{Automatic Variables}.
2917 Each target specified must match the target pattern; a warning is issued
2918 for each target that does not.  If you have a list of files, only some of
2919 which will match the pattern, you can use the @code{filter} function to
2920 remove nonmatching file names (@pxref{Text Functions, ,Functions for String Substitution and Analysis}):
2922 @example
2923 files = foo.elc bar.o lose.o
2925 $(filter %.o,$(files)): %.o: %.c
2926         $(CC) -c $(CFLAGS) $< -o $@@
2927 $(filter %.elc,$(files)): %.elc: %.el
2928         emacs -f batch-byte-compile $<
2929 @end example
2931 @noindent
2932 In this example the result of @samp{$(filter %.o,$(files))} is
2933 @file{bar.o lose.o}, and the first static pattern rule causes each of
2934 these object files to be updated by compiling the corresponding C source
2935 file.  The result of @w{@samp{$(filter %.elc,$(files))}} is
2936 @file{foo.elc}, so that file is made from @file{foo.el}.@refill
2938 Another example shows how to use @code{$*} in static pattern rules:
2939 @vindex $*@r{, and static pattern}
2941 @example
2942 @group
2943 bigoutput littleoutput : %output : text.g
2944         generate text.g -$* > $@@
2945 @end group
2946 @end example
2948 @noindent
2949 When the @code{generate} command is run, @code{$*} will expand to the
2950 stem, either @samp{big} or @samp{little}.
2952 @node Static versus Implicit,  , Static Usage, Static Pattern
2953 @subsection Static Pattern Rules versus Implicit Rules
2954 @cindex rule, static pattern versus implicit
2955 @cindex static pattern rule, versus implicit
2957 A static pattern rule has much in common with an implicit rule defined as a
2958 pattern rule (@pxref{Pattern Rules, ,Defining and Redefining Pattern Rules}).
2959 Both have a pattern for the target and patterns for constructing the
2960 names of prerequisites.  The difference is in how @code{make} decides
2961 @emph{when} the rule applies.
2963 An implicit rule @emph{can} apply to any target that matches its pattern,
2964 but it @emph{does} apply only when the target has no commands otherwise
2965 specified, and only when the prerequisites can be found.  If more than one
2966 implicit rule appears applicable, only one applies; the choice depends on
2967 the order of rules.
2969 By contrast, a static pattern rule applies to the precise list of targets
2970 that you specify in the rule.  It cannot apply to any other target and it
2971 invariably does apply to each of the targets specified.  If two conflicting
2972 rules apply, and both have commands, that's an error.
2974 The static pattern rule can be better than an implicit rule for these
2975 reasons:
2977 @itemize @bullet
2978 @item
2979 You may wish to override the usual implicit rule for a few
2980 files whose names cannot be categorized syntactically but
2981 can be given in an explicit list.
2983 @item
2984 If you cannot be sure of the precise contents of the directories
2985 you are using, you may not be sure which other irrelevant files
2986 might lead @code{make} to use the wrong implicit rule.  The choice
2987 might depend on the order in which the implicit rule search is done.
2988 With static pattern rules, there is no uncertainty: each rule applies
2989 to precisely the targets specified.
2990 @end itemize
2992 @node Double-Colon, Automatic Prerequisites, Static Pattern, Rules
2993 @section Double-Colon Rules
2994 @cindex double-colon rules
2995 @cindex rule, double-colon (@code{::})
2996 @cindex multiple rules for one target (@code{::})
2997 @cindex @code{::} rules (double-colon)
2999 @dfn{Double-colon} rules are rules written with @samp{::} instead of
3000 @samp{:} after the target names.  They are handled differently from
3001 ordinary rules when the same target appears in more than one rule.
3003 When a target appears in multiple rules, all the rules must be the same
3004 type: all ordinary, or all double-colon.  If they are double-colon, each
3005 of them is independent of the others.  Each double-colon rule's commands
3006 are executed if the target is older than any prerequisites of that rule.
3007 If there are no prerequisites for that rule, its commands are always
3008 executed (even if the target already exists).  This can result in
3009 executing none, any, or all of the double-colon rules.
3011 Double-colon rules with the same target are in fact completely separate
3012 from one another.  Each double-colon rule is processed individually, just
3013 as rules with different targets are processed.
3015 The double-colon rules for a target are executed in the order they appear
3016 in the makefile.  However, the cases where double-colon rules really make
3017 sense are those where the order of executing the commands would not matter.
3019 Double-colon rules are somewhat obscure and not often very useful; they
3020 provide a mechanism for cases in which the method used to update a target
3021 differs depending on which prerequisite files caused the update, and such
3022 cases are rare.
3024 Each double-colon rule should specify commands; if it does not, an
3025 implicit rule will be used if one applies.
3026 @xref{Implicit Rules, ,Using Implicit Rules}.
3028 @node Automatic Prerequisites,  , Double-Colon, Rules
3029 @section Generating Prerequisites Automatically
3030 @cindex prerequisites, automatic generation
3031 @cindex automatic generation of prerequisites
3032 @cindex generating prerequisites automatically
3034 In the makefile for a program, many of the rules you need to write often
3035 say only that some object file depends on some header
3036 file.  For example, if @file{main.c} uses @file{defs.h} via an
3037 @code{#include}, you would write:
3039 @example
3040 main.o: defs.h
3041 @end example
3043 @noindent
3044 You need this rule so that @code{make} knows that it must remake
3045 @file{main.o} whenever @file{defs.h} changes.  You can see that for a
3046 large program you would have to write dozens of such rules in your
3047 makefile.  And, you must always be very careful to update the makefile
3048 every time you add or remove an @code{#include}.
3049 @cindex @code{#include}
3051 @cindex @code{-M} (to compiler)
3052 To avoid this hassle, most modern C compilers can write these rules for
3053 you, by looking at the @code{#include} lines in the source files.
3054 Usually this is done with the @samp{-M} option to the compiler.
3055 For example, the command:
3057 @example
3058 cc -M main.c
3059 @end example
3061 @noindent
3062 generates the output:
3064 @example
3065 main.o : main.c defs.h
3066 @end example
3068 @noindent
3069 Thus you no longer have to write all those rules yourself.
3070 The compiler will do it for you.
3072 Note that such a prerequisite constitutes mentioning @file{main.o} in a
3073 makefile, so it can never be considered an intermediate file by implicit
3074 rule search.  This means that @code{make} won't ever remove the file
3075 after using it; @pxref{Chained Rules, ,Chains of Implicit Rules}.
3077 @cindex @code{make depend}
3078 With old @code{make} programs, it was traditional practice to use this
3079 compiler feature to generate prerequisites on demand with a command like
3080 @samp{make depend}.  That command would create a file @file{depend}
3081 containing all the automatically-generated prerequisites; then the
3082 makefile could use @code{include} to read them in (@pxref{Include}).
3084 In GNU @code{make}, the feature of remaking makefiles makes this
3085 practice obsolete---you need never tell @code{make} explicitly to
3086 regenerate the prerequisites, because it always regenerates any makefile
3087 that is out of date.  @xref{Remaking Makefiles}.
3089 The practice we recommend for automatic prerequisite generation is to have
3090 one makefile corresponding to each source file.  For each source file
3091 @file{@var{name}.c} there is a makefile @file{@var{name}.d} which lists
3092 what files the object file @file{@var{name}.o} depends on.  That way
3093 only the source files that have changed need to be rescanned to produce
3094 the new prerequisites.
3096 Here is the pattern rule to generate a file of prerequisites (i.e., a makefile)
3097 called @file{@var{name}.d} from a C source file called @file{@var{name}.c}:
3099 @smallexample
3100 @group
3101 %.d: %.c
3102         @set -e; rm -f $@@; \
3103          $(CC) -M $(CPPFLAGS) $< > $@@.$$$$; \
3104          sed 's,\($*\)\.o[ :]*,\1.o $@@ : ,g' < $@@.$$$$ > $@@; \
3105          rm -f $@@.$$$$
3106 @end group
3107 @end smallexample
3109 @noindent
3110 @xref{Pattern Rules}, for information on defining pattern rules.  The
3111 @samp{-e} flag to the shell causes it to exit immediately if the
3112 @code{$(CC)} command (or any other command) fails (exits with a
3113 nonzero status).
3114 @cindex @code{-e} (shell flag)
3116 @cindex @code{-MM} (to GNU compiler)
3117 With the GNU C compiler, you may wish to use the @samp{-MM} flag instead
3118 of @samp{-M}.  This omits prerequisites on system header files.
3119 @xref{Preprocessor Options, , Options Controlling the Preprocessor,
3120 gcc.info, Using GNU CC}, for details.
3122 @cindex @code{sed} (shell command)
3123 The purpose of the @code{sed} command is to translate (for example):
3125 @example
3126 main.o : main.c defs.h
3127 @end example
3129 @noindent
3130 into:
3132 @example
3133 main.o main.d : main.c defs.h
3134 @end example
3136 @noindent
3137 @cindex @code{.d}
3138 This makes each @samp{.d} file depend on all the source and header files
3139 that the corresponding @samp{.o} file depends on.  @code{make} then
3140 knows it must regenerate the prerequisites whenever any of the source or
3141 header files changes.
3143 Once you've defined the rule to remake the @samp{.d} files,
3144 you then use the @code{include} directive to read them all in.
3145 @xref{Include}.  For example:
3147 @example
3148 @group
3149 sources = foo.c bar.c
3151 include $(sources:.c=.d)
3152 @end group
3153 @end example
3155 @noindent
3156 (This example uses a substitution variable reference to translate the
3157 list of source files @samp{foo.c bar.c} into a list of prerequisite
3158 makefiles, @samp{foo.d bar.d}.  @xref{Substitution Refs}, for full
3159 information on substitution references.)  Since the @samp{.d} files are
3160 makefiles like any others, @code{make} will remake them as necessary
3161 with no further work from you.  @xref{Remaking Makefiles}.
3163 Note that the @samp{.d} files contain target definitions; you should
3164 be sure to place the @code{include} directive @emph{after} the first,
3165 default target in your makefiles or run the risk of having a random
3166 object file become the default target.
3167 @xref{How Make Works}.
3169 @node Commands, Using Variables, Rules, Top
3170 @chapter Writing the Commands in Rules
3171 @cindex commands, how to write
3172 @cindex rule commands
3173 @cindex writing rule commands
3175 The commands of a rule consist of shell command lines to be executed one
3176 by one.  Each command line must start with a tab, except that the first
3177 command line may be attached to the target-and-prerequisites line with a
3178 semicolon in between.  Blank lines and lines of just comments may appear
3179 among the command lines; they are ignored.  (But beware, an apparently
3180 ``blank'' line that begins with a tab is @emph{not} blank!  It is an
3181 empty command; @pxref{Empty Commands}.)
3183 Users use many different shell programs, but commands in makefiles are
3184 always interpreted by @file{/bin/sh} unless the makefile specifies
3185 otherwise.  @xref{Execution, ,Command Execution}.
3187 @cindex comments, in commands
3188 @cindex commands, comments in
3189 @cindex @code{#} (comments), in commands
3190 The shell that is in use determines whether comments can be written on
3191 command lines, and what syntax they use.  When the shell is
3192 @file{/bin/sh}, a @samp{#} starts a comment that extends to the end of
3193 the line.  The @samp{#} does not have to be at the beginning of a line.
3194 Text on a line before a @samp{#} is not part of the comment.
3196 @menu
3197 * Echoing::                     How to control when commands are echoed.
3198 * Execution::                   How commands are executed.
3199 * Parallel::                    How commands can be executed in parallel.
3200 * Errors::                      What happens after a command execution error.
3201 * Interrupts::                  What happens when a command is interrupted.
3202 * Recursion::                   Invoking @code{make} from makefiles.
3203 * Sequences::                   Defining canned sequences of commands.
3204 * Empty Commands::              Defining useful, do-nothing commands.
3205 @end menu
3207 @node Echoing, Execution, Commands, Commands
3208 @section Command Echoing
3209 @cindex echoing of commands
3210 @cindex silent operation
3211 @cindex @code{@@} (in commands)
3212 @cindex commands, echoing
3213 @cindex printing of commands
3215 Normally @code{make} prints each command line before it is executed.
3216 We call this @dfn{echoing} because it gives the appearance that you
3217 are typing the commands yourself.
3219 When a line starts with @samp{@@}, the echoing of that line is suppressed.
3220 The @samp{@@} is discarded before the command is passed to the shell.
3221 Typically you would use this for a command whose only effect is to print
3222 something, such as an @code{echo} command to indicate progress through
3223 the makefile:
3225 @example
3226 @@echo About to make distribution files
3227 @end example
3229 @cindex @code{-n}
3230 @cindex @code{--just-print}
3231 @cindex @code{--dry-run}
3232 @cindex @code{--recon}
3233 When @code{make} is given the flag @samp{-n} or @samp{--just-print}
3234 it only echoes commands, it won't execute them.  @xref{Options Summary,
3235 ,Summary of Options}.  In this case and only this case, even the
3236 commands starting with @samp{@@} are printed.  This flag is useful for
3237 finding out which commands @code{make} thinks are necessary without
3238 actually doing them.
3240 @cindex @code{-s}
3241 @cindex @code{--silent}
3242 @cindex @code{--quiet}
3243 @findex .SILENT
3244 The @samp{-s} or @samp{--silent}
3245 flag to @code{make} prevents all echoing, as if all commands
3246 started with @samp{@@}.  A rule in the makefile for the special target
3247 @code{.SILENT} without prerequisites has the same effect
3248 (@pxref{Special Targets, ,Special Built-in Target Names}).
3249 @code{.SILENT} is essentially obsolete since @samp{@@} is more flexible.@refill
3251 @node Execution, Parallel, Echoing, Commands
3252 @section Command Execution
3253 @cindex commands, execution
3254 @cindex execution, of commands
3255 @cindex shell command, execution
3256 @vindex SHELL @r{(command execution)}
3258 When it is time to execute commands to update a target, they are executed
3259 by making a new subshell for each line.  (In practice, @code{make} may
3260 take shortcuts that do not affect the results.)
3262 @cindex @code{cd} (shell command)
3263 @strong{Please note:} this implies that shell commands such as @code{cd}
3264 that set variables local to each process will not affect the following
3265 command lines. @footnote{On MS-DOS, the value of current working
3266 directory is @strong{global}, so changing it @emph{will} affect the
3267 following command lines on those systems.}  If you want to use @code{cd}
3268 to affect the next command, put the two on a single line with a
3269 semicolon between them.  Then @code{make} will consider them a single
3270 command and pass them, together, to a shell which will execute them in
3271 sequence.  For example:
3273 @example
3274 foo : bar/lose
3275         cd bar; gobble lose > ../foo
3276 @end example
3278 @cindex commands, backslash (@code{\}) in
3279 @cindex commands, quoting newlines in
3280 @cindex backslash (@code{\}), in commands
3281 @cindex @code{\} (backslash), in commands
3282 @cindex quoting newline, in commands
3283 @cindex newline, quoting, in commands
3284 If you would like to split a single shell command into multiple lines of
3285 text, you must use a backslash at the end of all but the last subline.
3286 Such a sequence of lines is combined into a single line, by deleting the
3287 backslash-newline sequences, before passing it to the shell.  Thus, the
3288 following is equivalent to the preceding example:
3290 @example
3291 @group
3292 foo : bar/lose
3293         cd bar;  \
3294         gobble lose > ../foo
3295 @end group
3296 @end example
3298 @vindex SHELL
3299 The program used as the shell is taken from the variable @code{SHELL}.
3300 By default, the program @file{/bin/sh} is used.
3302 @vindex COMSPEC
3303 On MS-DOS, if @code{SHELL} is not set, the value of the variable
3304 @code{COMSPEC} (which is always set) is used instead.
3306 @cindex @code{SHELL}, MS-DOS specifics
3307 The processing of lines that set the variable @code{SHELL} in Makefiles
3308 is different on MS-DOS.  The stock shell, @file{command.com}, is
3309 ridiculously limited in its functionality and many users of @code{make}
3310 tend to install a replacement shell.  Therefore, on MS-DOS, @code{make}
3311 examines the value of @code{SHELL}, and changes its behavior based on
3312 whether it points to a Unix-style or DOS-style shell.  This allows
3313 reasonable functionality even if @code{SHELL} points to
3314 @file{command.com}.
3316 If @code{SHELL} points to a Unix-style shell, @code{make} on MS-DOS
3317 additionally checks whether that shell can indeed be found; if not, it
3318 ignores the line that sets @code{SHELL}.  In MS-DOS, GNU @code{make}
3319 searches for the shell in the following places:
3321 @enumerate
3322 @item
3323 In the precise place pointed to by the value of @code{SHELL}.  For
3324 example, if the makefile specifies @samp{SHELL = /bin/sh}, @code{make}
3325 will look in the directory @file{/bin} on the current drive.
3327 @item
3328 In the current directory.
3330 @item
3331 In each of the directories in the @code{PATH} variable, in order.
3333 @end enumerate
3335 In every directory it examines, @code{make} will first look for the
3336 specific file (@file{sh} in the example above).  If this is not found,
3337 it will also look in that directory for that file with one of the known
3338 extensions which identify executable files.  For example @file{.exe},
3339 @file{.com}, @file{.bat}, @file{.btm}, @file{.sh}, and some others.
3341 If any of these attempts is successful, the value of @code{SHELL} will
3342 be set to the full pathname of the shell as found.  However, if none of
3343 these is found, the value of @code{SHELL} will not be changed, and thus
3344 the line that sets it will be effectively ignored.  This is so
3345 @code{make} will only support features specific to a Unix-style shell if
3346 such a shell is actually installed on the system where @code{make} runs.
3348 Note that this extended search for the shell is limited to the cases
3349 where @code{SHELL} is set from the Makefile; if it is set in the
3350 environment or command line, you are expected to set it to the full
3351 pathname of the shell, exactly as things are on Unix.
3353 The effect of the above DOS-specific processing is that a Makefile that
3354 says @samp{SHELL = /bin/sh} (as many Unix makefiles do), will work
3355 on MS-DOS unaltered if you have e.g. @file{sh.exe} installed in some
3356 directory along your @code{PATH}.
3358 @cindex environment, @code{SHELL} in
3359 Unlike most variables, the variable @code{SHELL} is never set from the
3360 environment.  This is because the @code{SHELL} environment variable is
3361 used to specify your personal choice of shell program for interactive
3362 use.  It would be very bad for personal choices like this to affect the
3363 functioning of makefiles.  @xref{Environment, ,Variables from the
3364 Environment}.  However, on MS-DOS and MS-Windows the value of
3365 @code{SHELL} in the environment @strong{is} used, since on those systems
3366 most users do not set this variable, and therefore it is most likely set
3367 specifically to be used by @code{make}.  On MS-DOS, if the setting of
3368 @code{SHELL} is not suitable for @code{make}, you can set the variable
3369 @code{MAKESHELL} to the shell that @code{make} should use; this will
3370 override the value of @code{SHELL}.
3372 @node Parallel, Errors, Execution, Commands
3373 @section Parallel Execution
3374 @cindex commands, execution in parallel
3375 @cindex parallel execution
3376 @cindex execution, in parallel
3377 @cindex job slots
3378 @cindex @code{-j}
3379 @cindex @code{--jobs}
3381 GNU @code{make} knows how to execute several commands at once.
3382 Normally, @code{make} will execute only one command at a time, waiting
3383 for it to finish before executing the next.  However, the @samp{-j} or
3384 @samp{--jobs} option tells @code{make} to execute many commands
3385 simultaneously.@refill
3387 On MS-DOS, the @samp{-j} option has no effect, since that system doesn't
3388 support multi-processing.
3390 If the @samp{-j} option is followed by an integer, this is the number of
3391 commands to execute at once; this is called the number of @dfn{job slots}.
3392 If there is nothing looking like an integer after the @samp{-j} option,
3393 there is no limit on the number of job slots.  The default number of job
3394 slots is one, which means serial execution (one thing at a time).
3396 One unpleasant consequence of running several commands simultaneously is
3397 that output generated by the commands appears whenever each command
3398 sends it, so messages from different commands may be interspersed.
3400 Another problem is that two processes cannot both take input from the
3401 same device; so to make sure that only one command tries to take input
3402 from the terminal at once, @code{make} will invalidate the standard
3403 input streams of all but one running command.  This means that
3404 attempting to read from standard input will usually be a fatal error (a
3405 @samp{Broken pipe} signal) for most child processes if there are
3406 several.
3407 @cindex broken pipe
3408 @cindex standard input
3410 It is unpredictable which command will have a valid standard input stream
3411 (which will come from the terminal, or wherever you redirect the standard
3412 input of @code{make}).  The first command run will always get it first, and
3413 the first command started after that one finishes will get it next, and so
3416 We will change how this aspect of @code{make} works if we find a better
3417 alternative.  In the mean time, you should not rely on any command using
3418 standard input at all if you are using the parallel execution feature; but
3419 if you are not using this feature, then standard input works normally in
3420 all commands.
3422 Finally, handling recursive @code{make} invocations raises issues.  For
3423 more information on this, see
3424 @ref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
3426 If a command fails (is killed by a signal or exits with a nonzero
3427 status), and errors are not ignored for that command
3428 (@pxref{Errors, ,Errors in Commands}),
3429 the remaining command lines to remake the same target will not be run.
3430 If a command fails and the @samp{-k} or @samp{--keep-going}
3431 option was not given
3432 (@pxref{Options Summary, ,Summary of Options}),
3433 @code{make} aborts execution.  If make
3434 terminates for any reason (including a signal) with child processes
3435 running, it waits for them to finish before actually exiting.@refill
3437 @cindex load average
3438 @cindex limiting jobs based on load
3439 @cindex jobs, limiting based on load
3440 @cindex @code{-l} (load average)
3441 @cindex @code{--max-load}
3442 @cindex @code{--load-average}
3443 When the system is heavily loaded, you will probably want to run fewer jobs
3444 than when it is lightly loaded.  You can use the @samp{-l} option to tell
3445 @code{make} to limit the number of jobs to run at once, based on the load
3446 average.  The @samp{-l} or @samp{--max-load}
3447 option is followed by a floating-point number.  For
3448 example,
3450 @example
3451 -l 2.5
3452 @end example
3454 @noindent
3455 will not let @code{make} start more than one job if the load average is
3456 above 2.5.  The @samp{-l} option with no following number removes the
3457 load limit, if one was given with a previous @samp{-l} option.@refill
3459 More precisely, when @code{make} goes to start up a job, and it already has
3460 at least one job running, it checks the current load average; if it is not
3461 lower than the limit given with @samp{-l}, @code{make} waits until the load
3462 average goes below that limit, or until all the other jobs finish.
3464 By default, there is no load limit.
3466 @node Errors, Interrupts, Parallel, Commands
3467 @section Errors in Commands
3468 @cindex errors (in commands)
3469 @cindex commands, errors in
3470 @cindex exit status (errors)
3472 After each shell command returns, @code{make} looks at its exit status.
3473 If the command completed successfully, the next command line is executed
3474 in a new shell; after the last command line is finished, the rule is
3475 finished.
3477 If there is an error (the exit status is nonzero), @code{make} gives up on
3478 the current rule, and perhaps on all rules.
3480 Sometimes the failure of a certain command does not indicate a problem.
3481 For example, you may use the @code{mkdir} command to ensure that a
3482 directory exists.  If the directory already exists, @code{mkdir} will
3483 report an error, but you probably want @code{make} to continue regardless.
3485 @cindex @code{-} (in commands)
3486 To ignore errors in a command line, write a @samp{-} at the beginning of
3487 the line's text (after the initial tab).  The @samp{-} is discarded before
3488 the command is passed to the shell for execution.
3490 For example,
3492 @example
3493 @group
3494 clean:
3495         -rm -f *.o
3496 @end group
3497 @end example
3498 @cindex @code{rm} (shell command)
3500 @noindent
3501 This causes @code{rm} to continue even if it is unable to remove a file.
3503 @cindex @code{-i}
3504 @cindex @code{--ignore-errors}
3505 @findex .IGNORE
3506 When you run @code{make} with the @samp{-i} or @samp{--ignore-errors}
3507 flag, errors are ignored in all commands of all rules.  A rule in the
3508 makefile for the special target @code{.IGNORE} has the same effect, if
3509 there are no prerequisites.  These ways of ignoring errors are obsolete
3510 because @samp{-} is more flexible.
3512 When errors are to be ignored, because of either a @samp{-} or the
3513 @samp{-i} flag, @code{make} treats an error return just like success,
3514 except that it prints out a message that tells you the status code
3515 the command exited with, and says that the error has been ignored.
3517 When an error happens that @code{make} has not been told to ignore,
3518 it implies that the current target cannot be correctly remade, and neither
3519 can any other that depends on it either directly or indirectly.  No further
3520 commands will be executed for these targets, since their preconditions
3521 have not been achieved.
3524 @cindex @code{-k}
3525 @cindex @code{--keep-going}
3526 Normally @code{make} gives up immediately in this circumstance, returning a
3527 nonzero status.  However, if the @samp{-k} or @samp{--keep-going}
3528 flag is specified, @code{make}
3529 continues to consider the other prerequisites of the pending targets,
3530 remaking them if necessary, before it gives up and returns nonzero status.
3531 For example, after an error in compiling one object file, @samp{make -k}
3532 will continue compiling other object files even though it already knows
3533 that linking them will be impossible.  @xref{Options Summary, ,Summary of Options}.
3535 The usual behavior assumes that your purpose is to get the specified
3536 targets up to date; once @code{make} learns that this is impossible, it
3537 might as well report the failure immediately.  The @samp{-k} option says
3538 that the real purpose is to test as many of the changes made in the
3539 program as possible, perhaps to find several independent problems so
3540 that you can correct them all before the next attempt to compile.  This
3541 is why Emacs' @code{compile} command passes the @samp{-k} flag by
3542 default.
3543 @cindex Emacs (@code{M-x compile})
3545 @findex .DELETE_ON_ERROR
3546 @cindex deletion of target files
3547 @cindex removal of target files
3548 @cindex target, deleting on error
3549 Usually when a command fails, if it has changed the target file at all,
3550 the file is corrupted and cannot be used---or at least it is not
3551 completely updated.  Yet the file's time stamp says that it is now up to
3552 date, so the next time @code{make} runs, it will not try to update that
3553 file.  The situation is just the same as when the command is killed by a
3554 signal; @pxref{Interrupts}.  So generally the right thing to do is to
3555 delete the target file if the command fails after beginning to change
3556 the file.  @code{make} will do this if @code{.DELETE_ON_ERROR} appears
3557 as a target.  This is almost always what you want @code{make} to do, but
3558 it is not historical practice; so for compatibility, you must explicitly
3559 request it.
3561 @node Interrupts, Recursion, Errors, Commands
3562 @section Interrupting or Killing @code{make}
3563 @cindex interrupt
3564 @cindex signal
3565 @cindex deletion of target files
3566 @cindex removal of target files
3567 @cindex target, deleting on interrupt
3568 @cindex killing (interruption)
3570 If @code{make} gets a fatal signal while a command is executing, it may
3571 delete the target file that the command was supposed to update.  This is
3572 done if the target file's last-modification time has changed since
3573 @code{make} first checked it.
3575 The purpose of deleting the target is to make sure that it is remade from
3576 scratch when @code{make} is next run.  Why is this?  Suppose you type
3577 @kbd{Ctrl-c} while a compiler is running, and it has begun to write an
3578 object file @file{foo.o}.  The @kbd{Ctrl-c} kills the compiler, resulting
3579 in an incomplete file whose last-modification time is newer than the source
3580 file @file{foo.c}.  But @code{make} also receives the @kbd{Ctrl-c} signal
3581 and deletes this incomplete file.  If @code{make} did not do this, the next
3582 invocation of @code{make} would think that @file{foo.o} did not require
3583 updating---resulting in a strange error message from the linker when it
3584 tries to link an object file half of which is missing.
3586 @findex .PRECIOUS
3587 You can prevent the deletion of a target file in this way by making the
3588 special target @code{.PRECIOUS} depend on it.  Before remaking a target,
3589 @code{make} checks to see whether it appears on the prerequisites of
3590 @code{.PRECIOUS}, and thereby decides whether the target should be deleted
3591 if a signal happens.  Some reasons why you might do this are that the
3592 target is updated in some atomic fashion, or exists only to record a
3593 modification-time (its contents do not matter), or must exist at all
3594 times to prevent other sorts of trouble.
3596 @node Recursion, Sequences, Interrupts, Commands
3597 @section Recursive Use of @code{make}
3598 @cindex recursion
3599 @cindex subdirectories, recursion for
3601 Recursive use of @code{make} means using @code{make} as a command in a
3602 makefile.  This technique is useful when you want separate makefiles for
3603 various subsystems that compose a larger system.  For example, suppose you
3604 have a subdirectory @file{subdir} which has its own makefile, and you would
3605 like the containing directory's makefile to run @code{make} on the
3606 subdirectory.  You can do it by writing this:
3608 @example
3609 subsystem:
3610         cd subdir && $(MAKE)
3611 @end example
3613 @noindent
3614 or, equivalently, this (@pxref{Options Summary, ,Summary of Options}):
3616 @example
3617 subsystem:
3618         $(MAKE) -C subdir
3619 @end example
3620 @cindex @code{-C}
3621 @cindex @code{--directory}
3623 You can write recursive @code{make} commands just by copying this example,
3624 but there are many things to know about how they work and why, and about
3625 how the sub-@code{make} relates to the top-level @code{make}.  You may
3626 also find it useful to declare targets that invoke recursive
3627 @code{make} commands as @samp{.PHONY} (for more discussion on when
3628 this is useful, see @ref{Phony Targets}).
3630 @vindex @code{CURDIR}
3631 For your convenience, when GNU @code{make} starts (after it has
3632 processed any @code{-C} options) it sets the variable @code{CURDIR} to
3633 the pathname of the current working directory.  This value is never
3634 touched by @code{make} again: in particular note that if you include
3635 files from other directories the value of @code{CURDIR} does not
3636 change.  The value has the same precedence it would have if it were
3637 set in the makefile (by default, an environment variable @code{CURDIR}
3638 will not override this value).  Note that setting this variable has no
3639 impact on the operation of @code{make} (it does not cause @code{make}
3640 to change its working directory, for example).
3642 @menu
3643 * MAKE Variable::               The special effects of using @samp{$(MAKE)}.
3644 * Variables/Recursion::         How to communicate variables to a sub-@code{make}.
3645 * Options/Recursion::           How to communicate options to a sub-@code{make}.
3646 * -w Option::                   How the @samp{-w} or @samp{--print-directory} option
3647                                   helps debug use of recursive @code{make} commands.
3648 @end menu
3650 @node MAKE Variable, Variables/Recursion, Recursion, Recursion
3651 @subsection How the @code{MAKE} Variable Works
3652 @vindex MAKE
3653 @cindex recursion, and @code{MAKE} variable
3655 Recursive @code{make} commands should always use the variable @code{MAKE},
3656 not the explicit command name @samp{make}, as shown here:
3658 @example
3659 @group
3660 subsystem:
3661         cd subdir && $(MAKE)
3662 @end group
3663 @end example
3665 The value of this variable is the file name with which @code{make} was
3666 invoked.  If this file name was @file{/bin/make}, then the command executed
3667 is @samp{cd subdir && /bin/make}.  If you use a special version of
3668 @code{make} to run the top-level makefile, the same special version will be
3669 executed for recursive invocations.
3670 @cindex @code{cd} (shell command)
3672 @cindex +, and commands
3673 As a special feature, using the variable @code{MAKE} in the commands of
3674 a rule alters the effects of the @samp{-t} (@samp{--touch}), @samp{-n}
3675 (@samp{--just-print}), or @samp{-q} (@w{@samp{--question}}) option.
3676 Using the @code{MAKE} variable has the same effect as using a @samp{+}
3677 character at the beginning of the command line.  @xref{Instead of
3678 Execution, ,Instead of Executing the Commands}.  This special feature
3679 is only enabled if the @code{MAKE} variable appears directly in the
3680 command script: it does not apply if the @code{MAKE} variable is
3681 referenced through expansion of another variable.  In the latter case
3682 you must use the @samp{+} token to get these special effects.@refill
3684 Consider the command @samp{make -t} in the above example.  (The
3685 @samp{-t} option marks targets as up to date without actually running
3686 any commands; see @ref{Instead of Execution}.)  Following the usual
3687 definition of @samp{-t}, a @samp{make -t} command in the example would
3688 create a file named @file{subsystem} and do nothing else.  What you
3689 really want it to do is run @samp{@w{cd subdir &&} @w{make -t}}; but that would
3690 require executing the command, and @samp{-t} says not to execute
3691 commands.@refill
3692 @cindex @code{-t}, and recursion
3693 @cindex recursion, and @code{-t}
3694 @cindex @code{--touch}, and recursion
3696 The special feature makes this do what you want: whenever a command
3697 line of a rule contains the variable @code{MAKE}, the flags @samp{-t},
3698 @samp{-n} and @samp{-q} do not apply to that line.  Command lines
3699 containing @code{MAKE} are executed normally despite the presence of a
3700 flag that causes most commands not to be run.  The usual
3701 @code{MAKEFLAGS} mechanism passes the flags to the sub-@code{make}
3702 (@pxref{Options/Recursion, ,Communicating Options to a
3703 Sub-@code{make}}), so your request to touch the files, or print the
3704 commands, is propagated to the subsystem.@refill
3706 @node Variables/Recursion, Options/Recursion, MAKE Variable, Recursion
3707 @subsection Communicating Variables to a Sub-@code{make}
3708 @cindex sub-@code{make}
3709 @cindex environment, and recursion
3710 @cindex exporting variables
3711 @cindex variables, environment
3712 @cindex variables, exporting
3713 @cindex recursion, and environment
3714 @cindex recursion, and variables
3716 Variable values of the top-level @code{make} can be passed to the
3717 sub-@code{make} through the environment by explicit request.  These
3718 variables are defined in the sub-@code{make} as defaults, but do not
3719 override what is specified in the makefile used by the sub-@code{make}
3720 makefile unless you use the @samp{-e} switch (@pxref{Options Summary,
3721 ,Summary of Options}).@refill
3723 To pass down, or @dfn{export}, a variable, @code{make} adds the variable
3724 and its value to the environment for running each command.  The
3725 sub-@code{make}, in turn, uses the environment to initialize its table
3726 of variable values.  @xref{Environment, ,Variables from the
3727 Environment}.
3729 Except by explicit request, @code{make} exports a variable only if it
3730 is either defined in the environment initially or set on the command
3731 line, and if its name consists only of letters, numbers, and underscores.
3732 Some shells cannot cope with environment variable names consisting of
3733 characters other than letters, numbers, and underscores.
3735 @cindex SHELL, exported value
3736 The value of the @code{make} variable @code{SHELL} is not exported.
3737 Instead, the value of the @code{SHELL} variable from the invoking
3738 environment is passed to the sub-@code{make}.  You can force
3739 @code{make} to export its value for @code{SHELL} by using the
3740 @code{export} directive, described below.
3742 The special variable @code{MAKEFLAGS} is always exported (unless you
3743 unexport it).  @code{MAKEFILES} is exported if you set it to anything.
3745 @code{make} automatically passes down variable values that were defined
3746 on the command line, by putting them in the @code{MAKEFLAGS} variable.
3747 @iftex
3748 See the next section.
3749 @end iftex
3750 @ifnottex
3751 @xref{Options/Recursion}.
3752 @end ifnottex
3754 Variables are @emph{not} normally passed down if they were created by
3755 default by @code{make} (@pxref{Implicit Variables, ,Variables Used by
3756 Implicit Rules}).  The sub-@code{make} will define these for
3757 itself.@refill
3759 @findex export
3760 If you want to export specific variables to a sub-@code{make}, use the
3761 @code{export} directive, like this:
3763 @example
3764 export @var{variable} @dots{}
3765 @end example
3767 @noindent
3768 @findex unexport
3769 If you want to @emph{prevent} a variable from being exported, use the
3770 @code{unexport} directive, like this:
3772 @example
3773 unexport @var{variable} @dots{}
3774 @end example
3776 @noindent
3777 In both of these forms, the arguments to @code{export} and
3778 @code{unexport} are expanded, and so could be variables or functions
3779 which expand to a (list of) variable names to be (un)exported.
3781 As a convenience, you can define a variable and export it at the same
3782 time by doing:
3784 @example
3785 export @var{variable} = value
3786 @end example
3788 @noindent
3789 has the same result as:
3791 @example
3792 @var{variable} = value
3793 export @var{variable}
3794 @end example
3796 @noindent
3799 @example
3800 export @var{variable} := value
3801 @end example
3803 @noindent
3804 has the same result as:
3806 @example
3807 @var{variable} := value
3808 export @var{variable}
3809 @end example
3811 Likewise,
3813 @example
3814 export @var{variable} += value
3815 @end example
3817 @noindent
3818 is just like:
3820 @example
3821 @var{variable} += value
3822 export @var{variable}
3823 @end example
3825 @noindent
3826 @xref{Appending, ,Appending More Text to Variables}.
3828 You may notice that the @code{export} and @code{unexport} directives
3829 work in @code{make} in the same way they work in the shell, @code{sh}.
3831 If you want all variables to be exported by default, you can use
3832 @code{export} by itself:
3834 @example
3835 export
3836 @end example
3838 @noindent
3839 This tells @code{make} that variables which are not explicitly mentioned
3840 in an @code{export} or @code{unexport} directive should be exported.
3841 Any variable given in an @code{unexport} directive will still @emph{not}
3842 be exported.  If you use @code{export} by itself to export variables by
3843 default, variables whose names contain characters other than
3844 alphanumerics and underscores will not be exported unless specifically
3845 mentioned in an @code{export} directive.@refill
3847 @findex .EXPORT_ALL_VARIABLES
3848 The behavior elicited by an @code{export} directive by itself was the
3849 default in older versions of GNU @code{make}.  If your makefiles depend
3850 on this behavior and you want to be compatible with old versions of
3851 @code{make}, you can write a rule for the special target
3852 @code{.EXPORT_ALL_VARIABLES} instead of using the @code{export} directive.
3853 This will be ignored by old @code{make}s, while the @code{export}
3854 directive will cause a syntax error.@refill
3855 @cindex compatibility in exporting
3857 Likewise, you can use @code{unexport} by itself to tell @code{make}
3858 @emph{not} to export variables by default.  Since this is the default
3859 behavior, you would only need to do this if @code{export} had been used
3860 by itself earlier (in an included makefile, perhaps).  You
3861 @strong{cannot} use @code{export} and @code{unexport} by themselves to
3862 have variables exported for some commands and not for others.  The last
3863 @code{export} or @code{unexport} directive that appears by itself
3864 determines the behavior for the entire run of @code{make}.@refill
3866 @vindex MAKELEVEL
3867 @cindex recursion, level of
3868 As a special feature, the variable @code{MAKELEVEL} is changed when it
3869 is passed down from level to level.  This variable's value is a string
3870 which is the depth of the level as a decimal number.  The value is
3871 @samp{0} for the top-level @code{make}; @samp{1} for a sub-@code{make},
3872 @samp{2} for a sub-sub-@code{make}, and so on.  The incrementation
3873 happens when @code{make} sets up the environment for a command.@refill
3875 The main use of @code{MAKELEVEL} is to test it in a conditional
3876 directive (@pxref{Conditionals, ,Conditional Parts of Makefiles}); this
3877 way you can write a makefile that behaves one way if run recursively and
3878 another way if run directly by you.@refill
3880 @vindex MAKEFILES
3881 You can use the variable @code{MAKEFILES} to cause all sub-@code{make}
3882 commands to use additional makefiles.  The value of @code{MAKEFILES} is
3883 a whitespace-separated list of file names.  This variable, if defined in
3884 the outer-level makefile, is passed down through the environment; then
3885 it serves as a list of extra makefiles for the sub-@code{make} to read
3886 before the usual or specified ones.  @xref{MAKEFILES Variable, ,The
3887 Variable @code{MAKEFILES}}.@refill
3889 @node Options/Recursion, -w Option, Variables/Recursion, Recursion
3890 @subsection Communicating Options to a Sub-@code{make}
3891 @cindex options, and recursion
3892 @cindex recursion, and options
3894 @vindex MAKEFLAGS
3895 Flags such as @samp{-s} and @samp{-k} are passed automatically to the
3896 sub-@code{make} through the variable @code{MAKEFLAGS}.  This variable is
3897 set up automatically by @code{make} to contain the flag letters that
3898 @code{make} received.  Thus, if you do @w{@samp{make -ks}} then
3899 @code{MAKEFLAGS} gets the value @samp{ks}.@refill
3901 As a consequence, every sub-@code{make} gets a value for @code{MAKEFLAGS}
3902 in its environment.  In response, it takes the flags from that value and
3903 processes them as if they had been given as arguments.
3904 @xref{Options Summary, ,Summary of Options}.
3906 @cindex command line variable definitions, and recursion
3907 @cindex variables, command line, and recursion
3908 @cindex recursion, and command line variable definitions
3909 Likewise variables defined on the command line are passed to the
3910 sub-@code{make} through @code{MAKEFLAGS}.  Words in the value of
3911 @code{MAKEFLAGS} that contain @samp{=}, @code{make} treats as variable
3912 definitions just as if they appeared on the command line.
3913 @xref{Overriding, ,Overriding Variables}.
3915 @cindex @code{-C}, and recursion
3916 @cindex @code{-f}, and recursion
3917 @cindex @code{-o}, and recursion
3918 @cindex @code{-W}, and recursion
3919 @cindex @code{--directory}, and recursion
3920 @cindex @code{--file}, and recursion
3921 @cindex @code{--old-file}, and recursion
3922 @cindex @code{--assume-old}, and recursion
3923 @cindex @code{--assume-new}, and recursion
3924 @cindex @code{--new-file}, and recursion
3925 @cindex recursion, and @code{-C}
3926 @cindex recursion, and @code{-f}
3927 @cindex recursion, and @code{-o}
3928 @cindex recursion, and @code{-W}
3929 The options @samp{-C}, @samp{-f}, @samp{-o}, and @samp{-W} are not put
3930 into @code{MAKEFLAGS}; these options are not passed down.@refill
3932 @cindex @code{-j}, and recursion
3933 @cindex @code{--jobs}, and recursion
3934 @cindex recursion, and @code{-j}
3935 @cindex job slots, and recursion
3936 The @samp{-j} option is a special case (@pxref{Parallel, ,Parallel Execution}).
3937 If you set it to some numeric value @samp{N} and your operating system
3938 supports it (most any UNIX system will; others typically won't), the
3939 parent @code{make} and all the sub-@code{make}s will communicate to
3940 ensure that there are only @samp{N} jobs running at the same time
3941 between them all.  Note that any job that is marked recursive
3942 (@pxref{Instead of Execution, ,Instead of Executing the Commands})
3943 doesn't count against the total jobs (otherwise we could get @samp{N}
3944 sub-@code{make}s running and have no slots left over for any real work!)
3946 If your operating system doesn't support the above communication, then
3947 @samp{-j 1} is always put into @code{MAKEFLAGS} instead of the value you
3948 specified.  This is because if the @w{@samp{-j}} option were passed down
3949 to sub-@code{make}s, you would get many more jobs running in parallel
3950 than you asked for.  If you give @samp{-j} with no numeric argument,
3951 meaning to run as many jobs as possible in parallel, this is passed
3952 down, since multiple infinities are no more than one.@refill
3954 If you do not want to pass the other flags down, you must change the
3955 value of @code{MAKEFLAGS}, like this:
3957 @example
3958 subsystem:
3959         cd subdir && $(MAKE) MAKEFLAGS=
3960 @end example
3962 @vindex MAKEOVERRIDES
3963 The command line variable definitions really appear in the variable
3964 @code{MAKEOVERRIDES}, and @code{MAKEFLAGS} contains a reference to this
3965 variable.  If you do want to pass flags down normally, but don't want to
3966 pass down the command line variable definitions, you can reset
3967 @code{MAKEOVERRIDES} to empty, like this:
3969 @example
3970 MAKEOVERRIDES =
3971 @end example
3973 @noindent
3974 @cindex Arg list too long
3975 @cindex E2BIG
3976 This is not usually useful to do.  However, some systems have a small
3977 fixed limit on the size of the environment, and putting so much
3978 information into the value of @code{MAKEFLAGS} can exceed it.  If you
3979 see the error message @samp{Arg list too long}, this may be the problem.
3980 @findex .POSIX
3981 @cindex POSIX.2
3982 (For strict compliance with POSIX.2, changing @code{MAKEOVERRIDES} does
3983 not affect @code{MAKEFLAGS} if the special target @samp{.POSIX} appears
3984 in the makefile.  You probably do not care about this.)
3986 @vindex MFLAGS
3987 A similar variable @code{MFLAGS} exists also, for historical
3988 compatibility.  It has the same value as @code{MAKEFLAGS} except that it
3989 does not contain the command line variable definitions, and it always
3990 begins with a hyphen unless it is empty (@code{MAKEFLAGS} begins with a
3991 hyphen only when it begins with an option that has no single-letter
3992 version, such as @samp{--warn-undefined-variables}).  @code{MFLAGS} was
3993 traditionally used explicitly in the recursive @code{make} command, like
3994 this:
3996 @example
3997 subsystem:
3998         cd subdir && $(MAKE) $(MFLAGS)
3999 @end example
4001 @noindent
4002 but now @code{MAKEFLAGS} makes this usage redundant.  If you want your
4003 makefiles to be compatible with old @code{make} programs, use this
4004 technique; it will work fine with more modern @code{make} versions too.
4006 @cindex setting options from environment
4007 @cindex options, setting from environment
4008 @cindex setting options in makefiles
4009 @cindex options, setting in makefiles
4010 The @code{MAKEFLAGS} variable can also be useful if you want to have
4011 certain options, such as @samp{-k} (@pxref{Options Summary, ,Summary of
4012 Options}), set each time you run @code{make}.  You simply put a value for
4013 @code{MAKEFLAGS} in your environment.  You can also set @code{MAKEFLAGS} in
4014 a makefile, to specify additional flags that should also be in effect for
4015 that makefile.  (Note that you cannot use @code{MFLAGS} this way.  That
4016 variable is set only for compatibility; @code{make} does not interpret a
4017 value you set for it in any way.)
4019 When @code{make} interprets the value of @code{MAKEFLAGS} (either from the
4020 environment or from a makefile), it first prepends a hyphen if the value
4021 does not already begin with one.  Then it chops the value into words
4022 separated by blanks, and parses these words as if they were options given
4023 on the command line (except that @samp{-C}, @samp{-f}, @samp{-h},
4024 @samp{-o}, @samp{-W}, and their long-named versions are ignored; and there
4025 is no error for an invalid option).
4027 If you do put @code{MAKEFLAGS} in your environment, you should be sure not
4028 to include any options that will drastically affect the actions of
4029 @code{make} and undermine the purpose of makefiles and of @code{make}
4030 itself.  For instance, the @samp{-t}, @samp{-n}, and @samp{-q} options, if
4031 put in one of these variables, could have disastrous consequences and would
4032 certainly have at least surprising and probably annoying effects.@refill
4034 @node -w Option,  , Options/Recursion, Recursion
4035 @subsection The @samp{--print-directory} Option
4036 @cindex directories, printing them
4037 @cindex printing directories
4038 @cindex recursion, and printing directories
4040 If you use several levels of recursive @code{make} invocations, the
4041 @samp{-w} or @w{@samp{--print-directory}} option can make the output a
4042 lot easier to understand by showing each directory as @code{make}
4043 starts processing it and as @code{make} finishes processing it.  For
4044 example, if @samp{make -w} is run in the directory @file{/u/gnu/make},
4045 @code{make} will print a line of the form:@refill
4047 @example
4048 make: Entering directory `/u/gnu/make'.
4049 @end example
4051 @noindent
4052 before doing anything else, and a line of the form:
4054 @example
4055 make: Leaving directory `/u/gnu/make'.
4056 @end example
4058 @noindent
4059 when processing is completed.
4061 @cindex @code{-C}, and @code{-w}
4062 @cindex @code{--directory}, and @code{--print-directory}
4063 @cindex recursion, and @code{-w}
4064 @cindex @code{-w}, and @code{-C}
4065 @cindex @code{-w}, and recursion
4066 @cindex @code{--print-directory}, and @code{--directory}
4067 @cindex @code{--print-directory}, and recursion
4068 @cindex @code{--no-print-directory}
4069 @cindex @code{--print-directory}, disabling
4070 @cindex @code{-w}, disabling
4071 Normally, you do not need to specify this option because @samp{make}
4072 does it for you: @samp{-w} is turned on automatically when you use the
4073 @samp{-C} option, and in sub-@code{make}s.  @code{make} will not
4074 automatically turn on @samp{-w} if you also use @samp{-s}, which says to
4075 be silent, or if you use @samp{--no-print-directory} to explicitly
4076 disable it.
4078 @node Sequences, Empty Commands, Recursion, Commands
4079 @section Defining Canned Command Sequences
4080 @cindex sequences of commands
4081 @cindex commands, sequences of
4083 When the same sequence of commands is useful in making various targets, you
4084 can define it as a canned sequence with the @code{define} directive, and
4085 refer to the canned sequence from the rules for those targets.  The canned
4086 sequence is actually a variable, so the name must not conflict with other
4087 variable names.
4089 Here is an example of defining a canned sequence of commands:
4091 @example
4092 define run-yacc
4093 yacc $(firstword $^)
4094 mv y.tab.c $@@
4095 endef
4096 @end example
4097 @cindex @code{yacc}
4099 @noindent
4100 Here @code{run-yacc} is the name of the variable being defined;
4101 @code{endef} marks the end of the definition; the lines in between are the
4102 commands.  The @code{define} directive does not expand variable references
4103 and function calls in the canned sequence; the @samp{$} characters,
4104 parentheses, variable names, and so on, all become part of the value of the
4105 variable you are defining.
4106 @xref{Defining, ,Defining Variables Verbatim},
4107 for a complete explanation of @code{define}.
4109 The first command in this example runs Yacc on the first prerequisite of
4110 whichever rule uses the canned sequence.  The output file from Yacc is
4111 always named @file{y.tab.c}.  The second command moves the output to the
4112 rule's target file name.
4114 To use the canned sequence, substitute the variable into the commands of a
4115 rule.  You can substitute it like any other variable
4116 (@pxref{Reference, ,Basics of Variable References}).
4117 Because variables defined by @code{define} are recursively expanded
4118 variables, all the variable references you wrote inside the @code{define}
4119 are expanded now.  For example:
4121 @example
4122 foo.c : foo.y
4123         $(run-yacc)
4124 @end example
4126 @noindent
4127 @samp{foo.y} will be substituted for the variable @samp{$^} when it occurs in
4128 @code{run-yacc}'s value, and @samp{foo.c} for @samp{$@@}.@refill
4130 This is a realistic example, but this particular one is not needed in
4131 practice because @code{make} has an implicit rule to figure out these
4132 commands based on the file names involved
4133 (@pxref{Implicit Rules, ,Using Implicit Rules}).
4135 @cindex @@, and @code{define}
4136 @cindex -, and @code{define}
4137 @cindex +, and @code{define}
4138 In command execution, each line of a canned sequence is treated just as
4139 if the line appeared on its own in the rule, preceded by a tab.  In
4140 particular, @code{make} invokes a separate subshell for each line.  You
4141 can use the special prefix characters that affect command lines
4142 (@samp{@@}, @samp{-}, and @samp{+}) on each line of a canned sequence.
4143 @xref{Commands, ,Writing the Commands in Rules}.
4144 For example, using this canned sequence:
4146 @example
4147 define frobnicate
4148 @@echo "frobnicating target $@@"
4149 frob-step-1 $< -o $@@-step-1
4150 frob-step-2 $@@-step-1 -o $@@
4151 endef
4152 @end example
4154 @noindent
4155 @code{make} will not echo the first line, the @code{echo} command.
4156 But it @emph{will} echo the following two command lines.
4158 On the other hand, prefix characters on the command line that refers to
4159 a canned sequence apply to every line in the sequence.  So the rule:
4161 @example
4162 frob.out: frob.in
4163         @@$(frobnicate)
4164 @end example
4166 @noindent
4167 does not echo @emph{any} commands.
4168 (@xref{Echoing, ,Command Echoing}, for a full explanation of @samp{@@}.)
4170 @node Empty Commands,  , Sequences, Commands
4171 @section Using Empty Commands
4172 @cindex empty commands
4173 @cindex commands, empty
4175 It is sometimes useful to define commands which do nothing.  This is done
4176 simply by giving a command that consists of nothing but whitespace.  For
4177 example:
4179 @example
4180 target: ;
4181 @end example
4183 @noindent
4184 defines an empty command string for @file{target}.  You could also use a
4185 line beginning with a tab character to define an empty command string,
4186 but this would be confusing because such a line looks empty.
4188 @findex .DEFAULT@r{, and empty commands}
4189 You may be wondering why you would want to define a command string that
4190 does nothing.  The only reason this is useful is to prevent a target
4191 from getting implicit commands (from implicit rules or the
4192 @code{.DEFAULT} special target; @pxref{Implicit Rules} and
4193 @pxref{Last Resort, ,Defining Last-Resort Default Rules}).@refill
4195 @c !!! another reason is for canonical stamp files:
4196 @ignore
4197 @example
4198 foo: stamp-foo ;
4199 stamp-foo: foo.in
4200         create foo frm foo.in
4201         touch $@
4202 @end example
4203 @end ignore
4205 You may be inclined to define empty command strings for targets that are
4206 not actual files, but only exist so that their prerequisites can be
4207 remade.  However, this is not the best way to do that, because the
4208 prerequisites may not be remade properly if the target file actually does exist.
4209 @xref{Phony Targets, ,Phony Targets}, for a better way to do this.
4211 @node Using Variables, Conditionals, Commands, Top
4212 @chapter How to Use Variables
4213 @cindex variable
4214 @cindex value
4215 @cindex recursive variable expansion
4216 @cindex simple variable expansion
4218 A @dfn{variable} is a name defined in a makefile to represent a string
4219 of text, called the variable's @dfn{value}.  These values are
4220 substituted by explicit request into targets, prerequisites, commands,
4221 and other parts of the makefile.  (In some other versions of @code{make},
4222 variables are called @dfn{macros}.)
4223 @cindex macro
4225 Variables and functions in all parts of a makefile are expanded when
4226 read, except for the shell commands in rules, the right-hand sides of
4227 variable definitions using @samp{=}, and the bodies of variable
4228 definitions using the @code{define} directive.@refill
4230 Variables can represent lists of file names, options to pass to compilers,
4231 programs to run, directories to look in for source files, directories to
4232 write output in, or anything else you can imagine.
4234 A variable name may be any sequence of characters not containing @samp{:},
4235 @samp{#}, @samp{=}, or leading or trailing whitespace.  However,
4236 variable names containing characters other than letters, numbers, and
4237 underscores should be avoided, as they may be given special meanings in the
4238 future, and with some shells they cannot be passed through the environment to a
4239 sub-@code{make}
4240 (@pxref{Variables/Recursion, ,Communicating Variables to a Sub-@code{make}}).
4242 Variable names are case-sensitive.  The names @samp{foo}, @samp{FOO},
4243 and @samp{Foo} all refer to different variables.
4245 It is traditional to use upper case letters in variable names, but we
4246 recommend using lower case letters for variable names that serve internal
4247 purposes in the makefile, and reserving upper case for parameters that
4248 control implicit rules or for parameters that the user should override with
4249 command options (@pxref{Overriding, ,Overriding Variables}).
4251 A few variables have names that are a single punctuation character or
4252 just a few characters.  These are the @dfn{automatic variables}, and
4253 they have particular specialized uses.  @xref{Automatic Variables}.
4255 @menu
4256 * Reference::                   How to use the value of a variable.
4257 * Flavors::                     Variables come in two flavors.
4258 * Advanced::                    Advanced features for referencing a variable.
4259 * Values::                      All the ways variables get their values.
4260 * Setting::                     How to set a variable in the makefile.
4261 * Appending::                   How to append more text to the old value
4262                                   of a variable.
4263 * Override Directive::          How to set a variable in the makefile even if
4264                                   the user has set it with a command argument.
4265 * Defining::                    An alternate way to set a variable
4266                                   to a verbatim string.
4267 * Environment::                 Variable values can come from the environment.
4268 * Target-specific::             Variable values can be defined on a per-target
4269                                   basis.
4270 * Pattern-specific::            Target-specific variable values can be applied
4271                                   to a group of targets that match a pattern.
4272 @end menu
4274 @node Reference, Flavors, Using Variables, Using Variables
4275 @section Basics of Variable References
4276 @cindex variables, how to reference
4277 @cindex reference to variables
4278 @cindex @code{$}, in variable reference
4279 @cindex dollar sign (@code{$}), in variable reference
4281 To substitute a variable's value, write a dollar sign followed by the name
4282 of the variable in parentheses or braces: either @samp{$(foo)} or
4283 @samp{$@{foo@}} is a valid reference to the variable @code{foo}.  This
4284 special significance of @samp{$} is why you must write @samp{$$} to have
4285 the effect of a single dollar sign in a file name or command.
4287 Variable references can be used in any context: targets, prerequisites,
4288 commands, most directives, and new variable values.  Here is an
4289 example of a common case, where a variable holds the names of all the
4290 object files in a program:
4292 @example
4293 @group
4294 objects = program.o foo.o utils.o
4295 program : $(objects)
4296         cc -o program $(objects)
4298 $(objects) : defs.h
4299 @end group
4300 @end example
4302 Variable references work by strict textual substitution.  Thus, the rule
4304 @example
4305 @group
4306 foo = c
4307 prog.o : prog.$(foo)
4308         $(foo)$(foo) -$(foo) prog.$(foo)
4309 @end group
4310 @end example
4312 @noindent
4313 could be used to compile a C program @file{prog.c}.  Since spaces before
4314 the variable value are ignored in variable assignments, the value of
4315 @code{foo} is precisely @samp{c}.  (Don't actually write your makefiles
4316 this way!)
4318 A dollar sign followed by a character other than a dollar sign,
4319 open-parenthesis or open-brace treats that single character as the
4320 variable name.  Thus, you could reference the variable @code{x} with
4321 @samp{$x}.  However, this practice is strongly discouraged, except in
4322 the case of the automatic variables (@pxref{Automatic Variables}).
4324 @node Flavors, Advanced, Reference, Using Variables
4325 @section The Two Flavors of Variables
4326 @cindex flavors of variables
4327 @cindex recursive variable expansion
4328 @cindex variables, flavors
4329 @cindex recursively expanded variables
4330 @cindex variables, recursively expanded
4332 There are two ways that a variable in GNU @code{make} can have a value;
4333 we call them the two @dfn{flavors} of variables.  The two flavors are
4334 distinguished in how they are defined and in what they do when expanded.
4336 @cindex =
4337 The first flavor of variable is a @dfn{recursively expanded} variable.
4338 Variables of this sort are defined by lines using @samp{=}
4339 (@pxref{Setting, ,Setting Variables}) or by the @code{define} directive
4340 (@pxref{Defining, ,Defining Variables Verbatim}).  The value you specify
4341 is installed verbatim; if it contains references to other variables,
4342 these references are expanded whenever this variable is substituted (in
4343 the course of expanding some other string).  When this happens, it is
4344 called @dfn{recursive expansion}.@refill
4346 For example,
4348 @example
4349 foo = $(bar)
4350 bar = $(ugh)
4351 ugh = Huh?
4353 all:;echo $(foo)
4354 @end example
4356 @noindent
4357 will echo @samp{Huh?}: @samp{$(foo)} expands to @samp{$(bar)} which
4358 expands to @samp{$(ugh)} which finally expands to @samp{Huh?}.@refill
4360 This flavor of variable is the only sort supported by other versions of
4361 @code{make}.  It has its advantages and its disadvantages.  An advantage
4362 (most would say) is that:
4364 @example
4365 CFLAGS = $(include_dirs) -O
4366 include_dirs = -Ifoo -Ibar
4367 @end example
4369 @noindent
4370 will do what was intended: when @samp{CFLAGS} is expanded in a command,
4371 it will expand to @samp{-Ifoo -Ibar -O}.  A major disadvantage is that you
4372 cannot append something on the end of a variable, as in
4374 @example
4375 CFLAGS = $(CFLAGS) -O
4376 @end example
4378 @noindent
4379 because it will cause an infinite loop in the variable expansion.
4380 (Actually @code{make} detects the infinite loop and reports an error.)
4381 @cindex loops in variable expansion
4382 @cindex variables, loops in expansion
4384 Another disadvantage is that any functions
4385 (@pxref{Functions, ,Functions for Transforming Text})
4386 referenced in the definition will be executed every time the variable is
4387 expanded.  This makes @code{make} run slower; worse, it causes the
4388 @code{wildcard} and @code{shell} functions to give unpredictable results
4389 because you cannot easily control when they are called, or even how many
4390 times.
4392 To avoid all the problems and inconveniences of recursively expanded
4393 variables, there is another flavor: simply expanded variables.
4395 @cindex simply expanded variables
4396 @cindex variables, simply expanded
4397 @cindex :=
4398 @dfn{Simply expanded variables} are defined by lines using @samp{:=}
4399 (@pxref{Setting, ,Setting Variables}).
4400 The value of a simply expanded variable is scanned
4401 once and for all, expanding any references to other variables and
4402 functions, when the variable is defined.  The actual value of the simply
4403 expanded variable is the result of expanding the text that you write.
4404 It does not contain any references to other variables; it contains their
4405 values @emph{as of the time this variable was defined}.  Therefore,
4407 @example
4408 x := foo
4409 y := $(x) bar
4410 x := later
4411 @end example
4413 @noindent
4414 is equivalent to
4416 @example
4417 y := foo bar
4418 x := later
4419 @end example
4421 When a simply expanded variable is referenced, its value is substituted
4422 verbatim.
4424 Here is a somewhat more complicated example, illustrating the use of
4425 @samp{:=} in conjunction with the @code{shell} function.
4426 (@xref{Shell Function, , The @code{shell} Function}.)  This example
4427 also shows use of the variable @code{MAKELEVEL}, which is changed
4428 when it is passed down from level to level.
4429 (@xref{Variables/Recursion, , Communicating Variables to a
4430 Sub-@code{make}}, for information about @code{MAKELEVEL}.)
4432 @vindex MAKELEVEL
4433 @vindex MAKE
4434 @example
4435 @group
4436 ifeq (0,$@{MAKELEVEL@})
4437 cur-dir   := $(shell pwd)
4438 whoami    := $(shell whoami)
4439 host-type := $(shell arch)
4440 MAKE := $@{MAKE@} host-type=$@{host-type@} whoami=$@{whoami@}
4441 endif
4442 @end group
4443 @end example
4445 @noindent
4446 An advantage of this use of @samp{:=} is that a typical
4447 `descend into a directory' command then looks like this:
4449 @example
4450 @group
4451 $@{subdirs@}:
4452       $@{MAKE@} cur-dir=$@{cur-dir@}/$@@ -C $@@ all
4453 @end group
4454 @end example
4456 Simply expanded variables generally make complicated makefile programming
4457 more predictable because they work like variables in most programming
4458 languages.  They allow you to redefine a variable using its own value (or
4459 its value processed in some way by one of the expansion functions) and to
4460 use the expansion functions much more efficiently
4461 (@pxref{Functions, ,Functions for Transforming Text}).
4463 @cindex spaces, in variable values
4464 @cindex whitespace, in variable values
4465 @cindex variables, spaces in values
4466 You can also use them to introduce controlled leading whitespace into
4467 variable values.  Leading whitespace characters are discarded from your
4468 input before substitution of variable references and function calls;
4469 this means you can include leading spaces in a variable value by
4470 protecting them with variable references, like this:
4472 @example
4473 nullstring :=
4474 space := $(nullstring) # end of the line
4475 @end example
4477 @noindent
4478 Here the value of the variable @code{space} is precisely one space.  The
4479 comment @w{@samp{# end of the line}} is included here just for clarity.
4480 Since trailing space characters are @emph{not} stripped from variable
4481 values, just a space at the end of the line would have the same effect
4482 (but be rather hard to read).  If you put whitespace at the end of a
4483 variable value, it is a good idea to put a comment like that at the end
4484 of the line to make your intent clear.  Conversely, if you do @emph{not}
4485 want any whitespace characters at the end of your variable value, you
4486 must remember not to put a random comment on the end of the line after
4487 some whitespace, such as this:
4489 @example
4490 dir := /foo/bar    # directory to put the frobs in
4491 @end example
4493 @noindent
4494 Here the value of the variable @code{dir} is @w{@samp{/foo/bar    }}
4495 (with four trailing spaces), which was probably not the intention.
4496 (Imagine something like @w{@samp{$(dir)/file}} with this definition!)
4498 @cindex conditional variable assignment
4499 @cindex variables, conditional assignment
4500 @cindex ?=
4501 There is another assignment operator for variables, @samp{?=}.  This
4502 is called a conditional variable assignment operator, because it only
4503 has an effect if the variable is not yet defined.  This statement:
4505 @example
4506 FOO ?= bar
4507 @end example
4509 @noindent
4510 is exactly equivalent to this
4511 (@pxref{Origin Function, ,The @code{origin} Function}):
4513 @example
4514 ifeq ($(origin FOO), undefined)
4515   FOO = bar
4516 endif
4517 @end example
4519 Note that a variable set to an empty value is still defined, so
4520 @samp{?=} will not set that variable.
4522 @node Advanced, Values, Flavors, Using Variables
4523 @section Advanced Features for Reference to Variables
4524 @cindex reference to variables
4526 This section describes some advanced features you can use to reference
4527 variables in more flexible ways.
4529 @menu
4530 * Substitution Refs::           Referencing a variable with
4531                                   substitutions on the value.
4532 * Computed Names::              Computing the name of the variable to refer to.
4533 @end menu
4535 @node Substitution Refs, Computed Names, Advanced, Advanced
4536 @subsection Substitution References
4537 @cindex modified variable reference
4538 @cindex substitution variable reference
4539 @cindex variables, modified reference
4540 @cindex variables, substitution reference
4542 @cindex variables, substituting suffix in
4543 @cindex suffix, substituting in variables
4544 A @dfn{substitution reference} substitutes the value of a variable with
4545 alterations that you specify.  It has the form
4546 @samp{$(@var{var}:@var{a}=@var{b})} (or
4547 @samp{$@{@var{var}:@var{a}=@var{b}@}}) and its meaning is to take the value
4548 of the variable @var{var}, replace every @var{a} at the end of a word with
4549 @var{b} in that value, and substitute the resulting string.
4551 When we say ``at the end of a word'', we mean that @var{a} must appear
4552 either followed by whitespace or at the end of the value in order to be
4553 replaced; other occurrences of @var{a} in the value are unaltered.  For
4554 example:@refill
4556 @example
4557 foo := a.o b.o c.o
4558 bar := $(foo:.o=.c)
4559 @end example
4561 @noindent
4562 sets @samp{bar} to @samp{a.c b.c c.c}.  @xref{Setting, ,Setting Variables}.
4564 A substitution reference is actually an abbreviation for use of the
4565 @code{patsubst} expansion function (@pxref{Text Functions, ,Functions for String Substitution and Analysis}).  We provide
4566 substitution references as well as @code{patsubst} for compatibility with
4567 other implementations of @code{make}.
4569 @findex patsubst
4570 Another type of substitution reference lets you use the full power of
4571 the @code{patsubst} function.  It has the same form
4572 @samp{$(@var{var}:@var{a}=@var{b})} described above, except that now
4573 @var{a} must contain a single @samp{%} character.  This case is
4574 equivalent to @samp{$(patsubst @var{a},@var{b},$(@var{var}))}.
4575 @xref{Text Functions, ,Functions for String Substitution and Analysis},
4576 for a description of the @code{patsubst} function.@refill
4578 @example
4579 @group
4580 @exdent For example:
4582 foo := a.o b.o c.o
4583 bar := $(foo:%.o=%.c)
4584 @end group
4585 @end example
4587 @noindent
4588 sets @samp{bar} to @samp{a.c b.c c.c}.
4590 @node Computed Names,  , Substitution Refs, Advanced
4591 @subsection Computed Variable Names
4592 @cindex nested variable reference
4593 @cindex computed variable name
4594 @cindex variables, computed names
4595 @cindex variables, nested references
4596 @cindex variables, @samp{$} in name
4597 @cindex @code{$}, in variable name
4598 @cindex dollar sign (@code{$}), in variable name
4600 Computed variable names are a complicated concept needed only for
4601 sophisticated makefile programming.  For most purposes you need not
4602 consider them, except to know that making a variable with a dollar sign
4603 in its name might have strange results.  However, if you are the type
4604 that wants to understand everything, or you are actually interested in
4605 what they do, read on.
4607 Variables may be referenced inside the name of a variable.  This is
4608 called a @dfn{computed variable name} or a @dfn{nested variable
4609 reference}.  For example,
4611 @example
4612 x = y
4613 y = z
4614 a := $($(x))
4615 @end example
4617 @noindent
4618 defines @code{a} as @samp{z}: the @samp{$(x)} inside @samp{$($(x))} expands
4619 to @samp{y}, so @samp{$($(x))} expands to @samp{$(y)} which in turn expands
4620 to @samp{z}.  Here the name of the variable to reference is not stated
4621 explicitly; it is computed by expansion of @samp{$(x)}.  The reference
4622 @samp{$(x)} here is nested within the outer variable reference.
4624 The previous example shows two levels of nesting, but any number of levels
4625 is possible.  For example, here are three levels:
4627 @example
4628 x = y
4629 y = z
4630 z = u
4631 a := $($($(x)))
4632 @end example
4634 @noindent
4635 Here the innermost @samp{$(x)} expands to @samp{y}, so @samp{$($(x))}
4636 expands to @samp{$(y)} which in turn expands to @samp{z}; now we have
4637 @samp{$(z)}, which becomes @samp{u}.
4639 References to recursively-expanded variables within a variable name are
4640 reexpanded in the usual fashion.  For example:
4642 @example
4643 x = $(y)
4644 y = z
4645 z = Hello
4646 a := $($(x))
4647 @end example
4649 @noindent
4650 defines @code{a} as @samp{Hello}: @samp{$($(x))} becomes @samp{$($(y))}
4651 which becomes @samp{$(z)} which becomes @samp{Hello}.
4653 Nested variable references can also contain modified references and
4654 function invocations (@pxref{Functions, ,Functions for Transforming Text}),
4655 just like any other reference.
4656 For example, using the @code{subst} function
4657 (@pxref{Text Functions, ,Functions for String Substitution and Analysis}):
4659 @example
4660 @group
4661 x = variable1
4662 variable2 := Hello
4663 y = $(subst 1,2,$(x))
4664 z = y
4665 a := $($($(z)))
4666 @end group
4667 @end example
4669 @noindent
4670 eventually defines @code{a} as @samp{Hello}.  It is doubtful that anyone
4671 would ever want to write a nested reference as convoluted as this one, but
4672 it works: @samp{$($($(z)))} expands to @samp{$($(y))} which becomes
4673 @samp{$($(subst 1,2,$(x)))}.  This gets the value @samp{variable1} from
4674 @code{x} and changes it by substitution to @samp{variable2}, so that the
4675 entire string becomes @samp{$(variable2)}, a simple variable reference
4676 whose value is @samp{Hello}.@refill
4678 A computed variable name need not consist entirely of a single variable
4679 reference.  It can contain several variable references, as well as some
4680 invariant text.  For example,
4682 @example
4683 @group
4684 a_dirs := dira dirb
4685 1_dirs := dir1 dir2
4686 @end group
4688 @group
4689 a_files := filea fileb
4690 1_files := file1 file2
4691 @end group
4693 @group
4694 ifeq "$(use_a)" "yes"
4695 a1 := a
4696 else
4697 a1 := 1
4698 endif
4699 @end group
4701 @group
4702 ifeq "$(use_dirs)" "yes"
4703 df := dirs
4704 else
4705 df := files
4706 endif
4708 dirs := $($(a1)_$(df))
4709 @end group
4710 @end example
4712 @noindent
4713 will give @code{dirs} the same value as @code{a_dirs}, @code{1_dirs},
4714 @code{a_files} or @code{1_files} depending on the settings of @code{use_a}
4715 and @code{use_dirs}.@refill
4717 Computed variable names can also be used in substitution references:
4719 @example
4720 @group
4721 a_objects := a.o b.o c.o
4722 1_objects := 1.o 2.o 3.o
4724 sources := $($(a1)_objects:.o=.c)
4725 @end group
4726 @end example
4728 @noindent
4729 defines @code{sources} as either @samp{a.c b.c c.c} or @samp{1.c 2.c 3.c},
4730 depending on the value of @code{a1}.
4732 The only restriction on this sort of use of nested variable references
4733 is that they cannot specify part of the name of a function to be called.
4734 This is because the test for a recognized function name is done before
4735 the expansion of nested references.  For example,
4737 @example
4738 @group
4739 ifdef do_sort
4740 func := sort
4741 else
4742 func := strip
4743 endif
4744 @end group
4746 @group
4747 bar := a d b g q c
4748 @end group
4750 @group
4751 foo := $($(func) $(bar))
4752 @end group
4753 @end example
4755 @noindent
4756 attempts to give @samp{foo} the value of the variable @samp{sort a d b g
4757 q c} or @samp{strip a d b g q c}, rather than giving @samp{a d b g q c}
4758 as the argument to either the @code{sort} or the @code{strip} function.
4759 This restriction could be removed in the future if that change is shown
4760 to be a good idea.
4762 You can also use computed variable names in the left-hand side of a
4763 variable assignment, or in a @code{define} directive, as in:
4765 @example
4766 dir = foo
4767 $(dir)_sources := $(wildcard $(dir)/*.c)
4768 define $(dir)_print
4769 lpr $($(dir)_sources)
4770 endef
4771 @end example
4773 @noindent
4774 This example defines the variables @samp{dir}, @samp{foo_sources}, and
4775 @samp{foo_print}.
4777 Note that @dfn{nested variable references} are quite different from
4778 @dfn{recursively expanded variables}
4779 (@pxref{Flavors, ,The Two Flavors of Variables}), though both are
4780 used together in complex ways when doing makefile programming.@refill
4782 @node Values, Setting, Advanced, Using Variables
4783 @section How Variables Get Their Values
4784 @cindex variables, how they get their values
4785 @cindex value, how a variable gets it
4787 Variables can get values in several different ways:
4789 @itemize @bullet
4790 @item
4791 You can specify an overriding value when you run @code{make}.
4792 @xref{Overriding, ,Overriding Variables}.
4794 @item
4795 You can specify a value in the makefile, either
4796 with an assignment (@pxref{Setting, ,Setting Variables}) or with a
4797 verbatim definition (@pxref{Defining, ,Defining Variables Verbatim}).@refill
4799 @item
4800 Variables in the environment become @code{make} variables.
4801 @xref{Environment, ,Variables from the Environment}.
4803 @item
4804 Several @dfn{automatic} variables are given new values for each rule.
4805 Each of these has a single conventional use.
4806 @xref{Automatic Variables}.
4808 @item
4809 Several variables have constant initial values.
4810 @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
4811 @end itemize
4813 @node Setting, Appending, Values, Using Variables
4814 @section Setting Variables
4815 @cindex setting variables
4816 @cindex variables, setting
4817 @cindex =
4818 @cindex :=
4819 @cindex ?=
4821 To set a variable from the makefile, write a line starting with the
4822 variable name followed by @samp{=} or @samp{:=}.  Whatever follows the
4823 @samp{=} or @samp{:=} on the line becomes the value.  For example,
4825 @example
4826 objects = main.o foo.o bar.o utils.o
4827 @end example
4829 @noindent
4830 defines a variable named @code{objects}.  Whitespace around the variable
4831 name and immediately after the @samp{=} is ignored.
4833 Variables defined with @samp{=} are @dfn{recursively expanded} variables.
4834 Variables defined with @samp{:=} are @dfn{simply expanded} variables; these
4835 definitions can contain variable references which will be expanded before
4836 the definition is made.  @xref{Flavors, ,The Two Flavors of Variables}.
4838 The variable name may contain function and variable references, which
4839 are expanded when the line is read to find the actual variable name to use.
4841 There is no limit on the length of the value of a variable except the
4842 amount of swapping space on the computer.  When a variable definition is
4843 long, it is a good idea to break it into several lines by inserting
4844 backslash-newline at convenient places in the definition.  This will not
4845 affect the functioning of @code{make}, but it will make the makefile easier
4846 to read.
4848 Most variable names are considered to have the empty string as a value if
4849 you have never set them.  Several variables have built-in initial values
4850 that are not empty, but you can set them in the usual ways
4851 (@pxref{Implicit Variables, ,Variables Used by Implicit Rules}).
4852 Several special variables are set
4853 automatically to a new value for each rule; these are called the
4854 @dfn{automatic} variables (@pxref{Automatic Variables}).
4856 If you'd like a variable to be set to a value only if it's not already
4857 set, then you can use the shorthand operator @samp{?=} instead of
4858 @samp{=}.  These two settings of the variable @samp{FOO} are identical
4859 (@pxref{Origin Function, ,The @code{origin} Function}):
4861 @example
4862 FOO ?= bar
4863 @end example
4865 @noindent
4868 @example
4869 ifeq ($(origin FOO), undefined)
4870 FOO = bar
4871 endif
4872 @end example
4874 @node Appending, Override Directive, Setting, Using Variables
4875 @section Appending More Text to Variables
4876 @cindex +=
4877 @cindex appending to variables
4878 @cindex variables, appending to
4880 Often it is useful to add more text to the value of a variable already defined.
4881 You do this with a line containing @samp{+=}, like this:
4883 @example
4884 objects += another.o
4885 @end example
4887 @noindent
4888 This takes the value of the variable @code{objects}, and adds the text
4889 @samp{another.o} to it (preceded by a single space).  Thus:
4891 @example
4892 objects = main.o foo.o bar.o utils.o
4893 objects += another.o
4894 @end example
4896 @noindent
4897 sets @code{objects} to @samp{main.o foo.o bar.o utils.o another.o}.
4899 Using @samp{+=} is similar to:
4901 @example
4902 objects = main.o foo.o bar.o utils.o
4903 objects := $(objects) another.o
4904 @end example
4906 @noindent
4907 but differs in ways that become important when you use more complex values.
4909 When the variable in question has not been defined before, @samp{+=}
4910 acts just like normal @samp{=}: it defines a recursively-expanded
4911 variable.  However, when there @emph{is} a previous definition, exactly
4912 what @samp{+=} does depends on what flavor of variable you defined
4913 originally.  @xref{Flavors, ,The Two Flavors of Variables}, for an
4914 explanation of the two flavors of variables.
4916 When you add to a variable's value with @samp{+=}, @code{make} acts
4917 essentially as if you had included the extra text in the initial
4918 definition of the variable.  If you defined it first with @samp{:=},
4919 making it a simply-expanded variable, @samp{+=} adds to that
4920 simply-expanded definition, and expands the new text before appending it
4921 to the old value just as @samp{:=} does
4922 (@pxref{Setting, ,Setting Variables}, for a full explanation of @samp{:=}).
4923 In fact,
4925 @example
4926 variable := value
4927 variable += more
4928 @end example
4930 @noindent
4931 is exactly equivalent to:
4933 @noindent
4934 @example
4935 variable := value
4936 variable := $(variable) more
4937 @end example
4939 On the other hand, when you use @samp{+=} with a variable that you defined
4940 first to be recursively-expanded using plain @samp{=}, @code{make} does
4941 something a bit different.  Recall that when you define a
4942 recursively-expanded variable, @code{make} does not expand the value you set
4943 for variable and function references immediately.  Instead it stores the text
4944 verbatim, and saves these variable and function references to be expanded
4945 later, when you refer to the new variable (@pxref{Flavors, ,The Two Flavors
4946 of Variables}).  When you use @samp{+=} on a recursively-expanded variable,
4947 it is this unexpanded text to which @code{make} appends the new text you
4948 specify.
4950 @example
4951 @group
4952 variable = value
4953 variable += more
4954 @end group
4955 @end example
4957 @noindent
4958 is roughly equivalent to:
4960 @example
4961 @group
4962 temp = value
4963 variable = $(temp) more
4964 @end group
4965 @end example
4967 @noindent
4968 except that of course it never defines a variable called @code{temp}.
4969 The importance of this comes when the variable's old value contains
4970 variable references.  Take this common example:
4972 @example
4973 CFLAGS = $(includes) -O
4974 @dots{}
4975 CFLAGS += -pg # enable profiling
4976 @end example
4978 @noindent
4979 The first line defines the @code{CFLAGS} variable with a reference to another
4980 variable, @code{includes}.  (@code{CFLAGS} is used by the rules for C
4981 compilation; @pxref{Catalogue of Rules, ,Catalogue of Implicit Rules}.)
4982 Using @samp{=} for the definition makes @code{CFLAGS} a recursively-expanded
4983 variable, meaning @w{@samp{$(includes) -O}} is @emph{not} expanded when
4984 @code{make} processes the definition of @code{CFLAGS}.  Thus, @code{includes}
4985 need not be defined yet for its value to take effect.  It only has to be
4986 defined before any reference to @code{CFLAGS}.  If we tried to append to the
4987 value of @code{CFLAGS} without using @samp{+=}, we might do it like this:
4989 @example
4990 CFLAGS := $(CFLAGS) -pg # enable profiling
4991 @end example
4993 @noindent
4994 This is pretty close, but not quite what we want.  Using @samp{:=}
4995 redefines @code{CFLAGS} as a simply-expanded variable; this means
4996 @code{make} expands the text @w{@samp{$(CFLAGS) -pg}} before setting the
4997 variable.  If @code{includes} is not yet defined, we get @w{@samp{ -O
4998 -pg}}, and a later definition of @code{includes} will have no effect.
4999 Conversely, by using @samp{+=} we set @code{CFLAGS} to the
5000 @emph{unexpanded} value @w{@samp{$(includes) -O -pg}}.  Thus we preserve
5001 the reference to @code{includes}, so if that variable gets defined at
5002 any later point, a reference like @samp{$(CFLAGS)} still uses its
5003 value.
5005 @node Override Directive, Defining, Appending, Using Variables
5006 @section The @code{override} Directive
5007 @findex override
5008 @cindex overriding with @code{override}
5009 @cindex variables, overriding
5011 If a variable has been set with a command argument
5012 (@pxref{Overriding, ,Overriding Variables}),
5013 then ordinary assignments in the makefile are ignored.  If you want to set
5014 the variable in the makefile even though it was set with a command
5015 argument, you can use an @code{override} directive, which is a line that
5016 looks like this:@refill
5018 @example
5019 override @var{variable} = @var{value}
5020 @end example
5022 @noindent
5025 @example
5026 override @var{variable} := @var{value}
5027 @end example
5029 To append more text to a variable defined on the command line, use:
5031 @example
5032 override @var{variable} += @var{more text}
5033 @end example
5035 @noindent
5036 @xref{Appending, ,Appending More Text to Variables}.
5038 The @code{override} directive was not invented for escalation in the war
5039 between makefiles and command arguments.  It was invented so you can alter
5040 and add to values that the user specifies with command arguments.
5042 For example, suppose you always want the @samp{-g} switch when you run the
5043 C compiler, but you would like to allow the user to specify the other
5044 switches with a command argument just as usual.  You could use this
5045 @code{override} directive:
5047 @example
5048 override CFLAGS += -g
5049 @end example
5051 You can also use @code{override} directives with @code{define} directives.
5052 This is done as you might expect:
5054 @example
5055 override define foo
5057 endef
5058 @end example
5060 @noindent
5061 @iftex
5062 See the next section for information about @code{define}.
5063 @end iftex
5064 @ifnottex
5065 @xref{Defining, ,Defining Variables Verbatim}.
5066 @end ifnottex
5068 @node Defining, Environment, Override Directive, Using Variables
5069 @section Defining Variables Verbatim
5070 @findex define
5071 @findex endef
5072 @cindex verbatim variable definition
5073 @cindex defining variables verbatim
5074 @cindex variables, defining verbatim
5076 Another way to set the value of a variable is to use the @code{define}
5077 directive.  This directive has an unusual syntax which allows newline
5078 characters to be included in the value, which is convenient for defining
5079 both canned sequences of commands
5080 (@pxref{Sequences, ,Defining Canned Command Sequences}), and also
5081 sections of makefile syntax to use with @code{eval} (@pxref{Eval Function}).
5083 The @code{define} directive is followed on the same line by the name of the
5084 variable and nothing more.  The value to give the variable appears on the
5085 following lines.  The end of the value is marked by a line containing just
5086 the word @code{endef}.  Aside from this difference in syntax, @code{define}
5087 works just like @samp{=}: it creates a recursively-expanded variable
5088 (@pxref{Flavors, ,The Two Flavors of Variables}).
5089 The variable name may contain function and variable references, which
5090 are expanded when the directive is read to find the actual variable name
5091 to use.
5093 You may nest @code{define} directives: @code{make} will keep track of
5094 nested directives and report an error if they are not all properly
5095 closed with @code{endef}.  Note that lines beginning with tab
5096 characters are considered part of a command script, so any
5097 @code{define} or @code{endef} strings appearing on such a line will
5098 not be considered @code{make} operators.
5100 @example
5101 define two-lines
5102 echo foo
5103 echo $(bar)
5104 endef
5105 @end example
5107 The value in an ordinary assignment cannot contain a newline; but the
5108 newlines that separate the lines of the value in a @code{define} become
5109 part of the variable's value (except for the final newline which precedes
5110 the @code{endef} and is not considered part of the value).@refill
5112 @need 800
5113 When used in a command script, the previous example is functionally
5114 equivalent to this:
5116 @example
5117 two-lines = echo foo; echo $(bar)
5118 @end example
5120 @noindent
5121 since two commands separated by semicolon behave much like two separate
5122 shell commands.  However, note that using two separate lines means
5123 @code{make} will invoke the shell twice, running an independent subshell
5124 for each line.  @xref{Execution, ,Command Execution}.
5126 If you want variable definitions made with @code{define} to take
5127 precedence over command-line variable definitions, you can use the
5128 @code{override} directive together with @code{define}:
5130 @example
5131 override define two-lines
5133 $(bar)
5134 endef
5135 @end example
5137 @noindent
5138 @xref{Override Directive, ,The @code{override} Directive}.
5140 @node Environment, Target-specific, Defining, Using Variables
5141 @section Variables from the Environment
5143 @cindex variables, environment
5144 @cindex environment
5145 Variables in @code{make} can come from the environment in which
5146 @code{make} is run.  Every environment variable that @code{make} sees
5147 when it starts up is transformed into a @code{make} variable with the
5148 same name and value.  However, an explicit assignment in the makefile,
5149 or with a command argument, overrides the environment.  (If the
5150 @samp{-e} flag is specified, then values from the environment override
5151 assignments in the makefile.  @xref{Options Summary, ,Summary of
5152 Options}.  But this is not recommended practice.)
5154 Thus, by setting the variable @code{CFLAGS} in your environment, you can
5155 cause all C compilations in most makefiles to use the compiler switches you
5156 prefer.  This is safe for variables with standard or conventional meanings
5157 because you know that no makefile will use them for other things.  (Note
5158 this is not totally reliable; some makefiles set @code{CFLAGS} explicitly
5159 and therefore are not affected by the value in the environment.)
5161 When @code{make} runs a command script, variables defined in the
5162 makefile are placed into the environment of that command.  This allows
5163 you to pass values to sub-@code{make} invocations. (@pxref{Recursion,
5164 ,Recursive Use of @code{make}}).  By default, only variables that came
5165 from the environment or the command line are passed to recursive
5166 invocations.  You can use the @code{export} directive to pass other
5167 variables.  @xref{Variables/Recursion, , Communicating Variables to a
5168 Sub-@code{make}}, for full details.
5170 Other use of variables from the environment is not recommended.  It is not
5171 wise for makefiles to depend for their functioning on environment variables
5172 set up outside their control, since this would cause different users to get
5173 different results from the same makefile.  This is against the whole
5174 purpose of most makefiles.
5176 @cindex SHELL, import from environment
5177 Such problems would be especially likely with the variable @code{SHELL},
5178 which is normally present in the environment to specify the user's choice
5179 of interactive shell.  It would be very undesirable for this choice to
5180 affect @code{make}.  So @code{make} ignores the environment value of
5181 @code{SHELL} (except on MS-DOS and MS-Windows, where @code{SHELL} is
5182 usually not set.  @xref{Execution, ,Special handling of SHELL on
5183 MS-DOS}.)@refill
5185 @cindex SHELL, export to environment
5186 The @code{SHELL} variable is special in another way: just as the value
5187 of the @code{make} variable @code{SHELL} is not taken from the
5188 environment, so also it is not placed into the environment of commands
5189 that @code{make} invokes.  Instead, the value of @code{SHELL} from the
5190 invoking environment is provided to the command.  You can use
5191 @code{export SHELL} to force the value of the @code{make} variable
5192 @code{SHELL} to be placed in the environment of commands.
5194 @node Target-specific, Pattern-specific, Environment, Using Variables
5195 @section Target-specific Variable Values
5196 @cindex target-specific variables
5197 @cindex variables, target-specific
5199 Variable values in @code{make} are usually global; that is, they are the
5200 same regardless of where they are evaluated (unless they're reset, of
5201 course).  One exception to that is automatic variables
5202 (@pxref{Automatic Variables}).
5204 The other exception is @dfn{target-specific variable values}.  This
5205 feature allows you to define different values for the same variable,
5206 based on the target that @code{make} is currently building.  As with
5207 automatic variables, these values are only available within the context
5208 of a target's command script (and in other target-specific assignments).
5210 Set a target-specific variable value like this:
5212 @example
5213 @var{target} @dots{} : @var{variable-assignment}
5214 @end example
5216 @noindent
5217 or like this:
5219 @example
5220 @var{target} @dots{} : override @var{variable-assignment}
5221 @end example
5223 @noindent
5224 or like this:
5226 @example
5227 @var{target} @dots{} : export @var{variable-assignment}
5228 @end example
5230 Multiple @var{target} values create a target-specific variable value for
5231 each member of the target list individually.
5233 The @var{variable-assignment} can be any valid form of assignment;
5234 recursive (@samp{=}), static (@samp{:=}), appending (@samp{+=}), or
5235 conditional (@samp{?=}).  All variables that appear within the
5236 @var{variable-assignment} are evaluated within the context of the
5237 target: thus, any previously-defined target-specific variable values
5238 will be in effect.  Note that this variable is actually distinct from
5239 any ``global'' value: the two variables do not have to have the same
5240 flavor (recursive vs. static).
5242 Target-specific variables have the same priority as any other makefile
5243 variable.  Variables provided on the command-line (and in the
5244 environment if the @samp{-e} option is in force) will take precedence.
5245 Specifying the @code{override} directive will allow the target-specific
5246 variable value to be preferred.
5248 There is one more special feature of target-specific variables: when
5249 you define a target-specific variable that variable value is also in
5250 effect for all prerequisites of this target, and all their
5251 prerequisites, etc. (unless those prerequisites override that variable
5252 with their own target-specific variable value).  So, for example, a
5253 statement like this:
5255 @example
5256 prog : CFLAGS = -g
5257 prog : prog.o foo.o bar.o
5258 @end example
5260 @noindent
5261 will set @code{CFLAGS} to @samp{-g} in the command script for
5262 @file{prog}, but it will also set @code{CFLAGS} to @samp{-g} in the
5263 command scripts that create @file{prog.o}, @file{foo.o}, and
5264 @file{bar.o}, and any command scripts which create their
5265 prerequisites.
5267 Be aware that a given prerequisite will only be built once per
5268 invocation of make, at most.  If the same file is a prerequisite of
5269 multiple targets, and each of those targets has a different value for
5270 the same target-specific variable, then the first target to be built
5271 will cause that prerequisite to be built and the prerequisite will
5272 inherit the target-specific value from the first target.  It will
5273 ignore the target-specific values from any other targets.
5275 @node Pattern-specific,  , Target-specific, Using Variables
5276 @section Pattern-specific Variable Values
5277 @cindex pattern-specific variables
5278 @cindex variables, pattern-specific
5280 In addition to target-specific variable values
5281 (@pxref{Target-specific, ,Target-specific Variable Values}), GNU
5282 @code{make} supports pattern-specific variable values.  In this form,
5283 the variable is defined for any target that matches the pattern
5284 specified.  If a target matches more than one pattern, all the
5285 matching pattern-specific variables are interpreted in the order in
5286 which they were defined in the makefile, and collected together into
5287 one set.  Variables defined in this way are searched after any
5288 target-specific variables defined explicitly for that target, and
5289 before target-specific variables defined for the parent target.
5291 Set a pattern-specific variable value like this:
5293 @example
5294 @var{pattern} @dots{} : @var{variable-assignment}
5295 @end example
5297 @noindent
5298 or like this:
5300 @example
5301 @var{pattern} @dots{} : override @var{variable-assignment}
5302 @end example
5304 @noindent
5305 where @var{pattern} is a %-pattern.  As with target-specific variable
5306 values, multiple @var{pattern} values create a pattern-specific variable
5307 value for each pattern individually.  The @var{variable-assignment} can
5308 be any valid form of assignment.  Any command-line variable setting will
5309 take precedence, unless @code{override} is specified.
5311 For example:
5313 @example
5314 %.o : CFLAGS = -O
5315 @end example
5317 @noindent
5318 will assign @code{CFLAGS} the value of @samp{-O} for all targets
5319 matching the pattern @code{%.o}.
5321 @node Conditionals, Functions, Using Variables, Top
5322 @chapter Conditional Parts of Makefiles
5324 @cindex conditionals
5325 A @dfn{conditional} causes part of a makefile to be obeyed or ignored
5326 depending on the values of variables.  Conditionals can compare the
5327 value of one variable to another, or the value of a variable to
5328 a constant string.  Conditionals control what @code{make} actually
5329 ``sees'' in the makefile, so they @emph{cannot} be used to control shell
5330 commands at the time of execution.@refill
5332 @menu
5333 * Conditional Example::         Example of a conditional
5334 * Conditional Syntax::          The syntax of conditionals.
5335 * Testing Flags::               Conditionals that test flags.
5336 @end menu
5338 @node Conditional Example, Conditional Syntax, Conditionals, Conditionals
5339 @section Example of a Conditional
5341 The following example of a conditional tells @code{make} to use one set
5342 of libraries if the @code{CC} variable is @samp{gcc}, and a different
5343 set of libraries otherwise.  It works by controlling which of two
5344 command lines will be used as the command for a rule.  The result is
5345 that @samp{CC=gcc} as an argument to @code{make} changes not only which
5346 compiler is used but also which libraries are linked.
5348 @example
5349 libs_for_gcc = -lgnu
5350 normal_libs =
5352 foo: $(objects)
5353 ifeq ($(CC),gcc)
5354         $(CC) -o foo $(objects) $(libs_for_gcc)
5355 else
5356         $(CC) -o foo $(objects) $(normal_libs)
5357 endif
5358 @end example
5360 This conditional uses three directives: one @code{ifeq}, one @code{else}
5361 and one @code{endif}.
5363 The @code{ifeq} directive begins the conditional, and specifies the
5364 condition.  It contains two arguments, separated by a comma and surrounded
5365 by parentheses.  Variable substitution is performed on both arguments and
5366 then they are compared.  The lines of the makefile following the
5367 @code{ifeq} are obeyed if the two arguments match; otherwise they are
5368 ignored.
5370 The @code{else} directive causes the following lines to be obeyed if the
5371 previous conditional failed.  In the example above, this means that the
5372 second alternative linking command is used whenever the first alternative
5373 is not used.  It is optional to have an @code{else} in a conditional.
5375 The @code{endif} directive ends the conditional.  Every conditional must
5376 end with an @code{endif}.  Unconditional makefile text follows.
5378 As this example illustrates, conditionals work at the textual level:
5379 the lines of the conditional are treated as part of the makefile, or
5380 ignored, according to the condition.  This is why the larger syntactic
5381 units of the makefile, such as rules, may cross the beginning or the
5382 end of the conditional.
5384 When the variable @code{CC} has the value @samp{gcc}, the above example has
5385 this effect:
5387 @example
5388 foo: $(objects)
5389         $(CC) -o foo $(objects) $(libs_for_gcc)
5390 @end example
5392 @noindent
5393 When the variable @code{CC} has any other value, the effect is this:
5395 @example
5396 foo: $(objects)
5397         $(CC) -o foo $(objects) $(normal_libs)
5398 @end example
5400 Equivalent results can be obtained in another way by conditionalizing a
5401 variable assignment and then using the variable unconditionally:
5403 @example
5404 libs_for_gcc = -lgnu
5405 normal_libs =
5407 ifeq ($(CC),gcc)
5408   libs=$(libs_for_gcc)
5409 else
5410   libs=$(normal_libs)
5411 endif
5413 foo: $(objects)
5414         $(CC) -o foo $(objects) $(libs)
5415 @end example
5417 @node Conditional Syntax, Testing Flags, Conditional Example, Conditionals
5418 @section Syntax of Conditionals
5419 @findex ifdef
5420 @findex ifeq
5421 @findex ifndef
5422 @findex ifneq
5423 @findex else
5424 @findex endif
5426 The syntax of a simple conditional with no @code{else} is as follows:
5428 @example
5429 @var{conditional-directive}
5430 @var{text-if-true}
5431 endif
5432 @end example
5434 @noindent
5435 The @var{text-if-true} may be any lines of text, to be considered as part
5436 of the makefile if the condition is true.  If the condition is false, no
5437 text is used instead.
5439 The syntax of a complex conditional is as follows:
5441 @example
5442 @var{conditional-directive}
5443 @var{text-if-true}
5444 else
5445 @var{text-if-false}
5446 endif
5447 @end example
5449 @noindent
5450 If the condition is true, @var{text-if-true} is used; otherwise,
5451 @var{text-if-false} is used instead.  The @var{text-if-false} can be any
5452 number of lines of text.
5454 The syntax of the @var{conditional-directive} is the same whether the
5455 conditional is simple or complex.  There are four different directives that
5456 test different conditions.  Here is a table of them:
5458 @table @code
5459 @item ifeq (@var{arg1}, @var{arg2})
5460 @itemx ifeq '@var{arg1}' '@var{arg2}'
5461 @itemx ifeq "@var{arg1}" "@var{arg2}"
5462 @itemx ifeq "@var{arg1}" '@var{arg2}'
5463 @itemx ifeq '@var{arg1}' "@var{arg2}"
5464 Expand all variable references in @var{arg1} and @var{arg2} and
5465 compare them.  If they are identical, the @var{text-if-true} is
5466 effective; otherwise, the @var{text-if-false}, if any, is effective.
5468 Often you want to test if a variable has a non-empty value.  When the
5469 value results from complex expansions of variables and functions,
5470 expansions you would consider empty may actually contain whitespace
5471 characters and thus are not seen as empty.  However, you can use the
5472 @code{strip} function (@pxref{Text Functions}) to avoid interpreting
5473 whitespace as a non-empty value.  For example:
5475 @example
5476 @group
5477 ifeq ($(strip $(foo)),)
5478 @var{text-if-empty}
5479 endif
5480 @end group
5481 @end example
5483 @noindent
5484 will evaluate @var{text-if-empty} even if the expansion of
5485 @code{$(foo)} contains whitespace characters.
5487 @item ifneq (@var{arg1}, @var{arg2})
5488 @itemx ifneq '@var{arg1}' '@var{arg2}'
5489 @itemx ifneq "@var{arg1}" "@var{arg2}"
5490 @itemx ifneq "@var{arg1}" '@var{arg2}'
5491 @itemx ifneq '@var{arg1}' "@var{arg2}"
5492 Expand all variable references in @var{arg1} and @var{arg2} and
5493 compare them.  If they are different, the @var{text-if-true} is
5494 effective; otherwise, the @var{text-if-false}, if any, is effective.
5496 @item ifdef @var{variable-name}
5497 If the variable @var{variable-name} has a non-empty value, the
5498 @var{text-if-true} is effective; otherwise, the @var{text-if-false},
5499 if any, is effective.  Variables that have never been defined have an
5500 empty value.  The variable @var{variable-name} is itself expanded, so
5501 it could be a variable or function that expands to the name of a
5502 variable.
5504 Note that @code{ifdef} only tests whether a variable has a value.  It
5505 does not expand the variable to see if that value is nonempty.
5506 Consequently, tests using @code{ifdef} return true for all definitions
5507 except those like @code{foo =}.  To test for an empty value, use
5508 @w{@code{ifeq ($(foo),)}}.  For example,
5510 @example
5511 bar =
5512 foo = $(bar)
5513 ifdef foo
5514 frobozz = yes
5515 else
5516 frobozz = no
5517 endif
5518 @end example
5520 @noindent
5521 sets @samp{frobozz} to @samp{yes}, while:
5523 @example
5524 foo =
5525 ifdef foo
5526 frobozz = yes
5527 else
5528 frobozz = no
5529 endif
5530 @end example
5532 @noindent
5533 sets @samp{frobozz} to @samp{no}.
5535 @item ifndef @var{variable-name}
5536 If the variable @var{variable-name} has an empty value, the
5537 @var{text-if-true} is effective; otherwise, the @var{text-if-false},
5538 if any, is effective.
5539 @end table
5541 Extra spaces are allowed and ignored at the beginning of the conditional
5542 directive line, but a tab is not allowed.  (If the line begins with a tab,
5543 it will be considered a command for a rule.)  Aside from this, extra spaces
5544 or tabs may be inserted with no effect anywhere except within the directive
5545 name or within an argument.  A comment starting with @samp{#} may appear at
5546 the end of the line.
5548 The other two directives that play a part in a conditional are @code{else}
5549 and @code{endif}.  Each of these directives is written as one word, with no
5550 arguments.  Extra spaces are allowed and ignored at the beginning of the
5551 line, and spaces or tabs at the end.  A comment starting with @samp{#} may
5552 appear at the end of the line.
5554 Conditionals affect which lines of the makefile @code{make} uses.  If
5555 the condition is true, @code{make} reads the lines of the
5556 @var{text-if-true} as part of the makefile; if the condition is false,
5557 @code{make} ignores those lines completely.  It follows that syntactic
5558 units of the makefile, such as rules, may safely be split across the
5559 beginning or the end of the conditional.@refill
5561 @code{make} evaluates conditionals when it reads a makefile.
5562 Consequently, you cannot use automatic variables in the tests of
5563 conditionals because they are not defined until commands are run
5564 (@pxref{Automatic Variables}).
5566 To prevent intolerable confusion, it is not permitted to start a
5567 conditional in one makefile and end it in another.  However, you may
5568 write an @code{include} directive within a conditional, provided you do
5569 not attempt to terminate the conditional inside the included file.
5571 @node Testing Flags,  , Conditional Syntax, Conditionals
5572 @section Conditionals that Test Flags
5574 You can write a conditional that tests @code{make} command flags such as
5575 @samp{-t} by using the variable @code{MAKEFLAGS} together with the
5576 @code{findstring} function
5577 (@pxref{Text Functions, , Functions for String Substitution and Analysis}).
5578 This is useful when @code{touch} is not enough to make a file appear up
5579 to date.
5581 The @code{findstring} function determines whether one string appears as a
5582 substring of another.  If you want to test for the @samp{-t} flag,
5583 use @samp{t} as the first string and the value of @code{MAKEFLAGS} as
5584 the other.
5586 For example, here is how to arrange to use @samp{ranlib -t} to finish
5587 marking an archive file up to date:
5589 @example
5590 archive.a: @dots{}
5591 ifneq (,$(findstring t,$(MAKEFLAGS)))
5592         +touch archive.a
5593         +ranlib -t archive.a
5594 else
5595         ranlib archive.a
5596 endif
5597 @end example
5599 @noindent
5600 The @samp{+} prefix marks those command lines as ``recursive'' so
5601 that they will be executed despite use of the @samp{-t} flag.
5602 @xref{Recursion, ,Recursive Use of @code{make}}.
5604 @node Functions, Running, Conditionals, Top
5605 @chapter Functions for Transforming Text
5606 @cindex functions
5608 @dfn{Functions} allow you to do text processing in the makefile to compute
5609 the files to operate on or the commands to use.  You use a function in a
5610 @dfn{function call}, where you give the name of the function and some text
5611 (the @dfn{arguments}) for the function to operate on.  The result of the
5612 function's processing is substituted into the makefile at the point of the
5613 call, just as a variable might be substituted.
5615 @menu
5616 * Syntax of Functions::         How to write a function call.
5617 * Text Functions::              General-purpose text manipulation functions.
5618 * File Name Functions::         Functions for manipulating file names.
5619 * Foreach Function::            Repeat some text with controlled variation.
5620 * If Function::                 Conditionally expand a value.
5621 * Call Function::               Expand a user-defined function.
5622 * Value Function::              Return the un-expanded value of a variable.
5623 * Eval Function::               Evaluate the arguments as makefile syntax.
5624 * Origin Function::             Find where a variable got its value.
5625 * Shell Function::              Substitute the output of a shell command.
5626 * Make Control Functions::      Functions that control how make runs.
5627 @end menu
5629 @node Syntax of Functions, Text Functions, Functions, Functions
5630 @section Function Call Syntax
5631 @cindex @code{$}, in function call
5632 @cindex dollar sign (@code{$}), in function call
5633 @cindex arguments of functions
5634 @cindex functions, syntax of
5636 A function call resembles a variable reference.  It looks like this:
5638 @example
5639 $(@var{function} @var{arguments})
5640 @end example
5642 @noindent
5643 or like this:
5645 @example
5646 $@{@var{function} @var{arguments}@}
5647 @end example
5649 Here @var{function} is a function name; one of a short list of names
5650 that are part of @code{make}.  You can also essentially create your own
5651 functions by using the @code{call} builtin function.
5653 The @var{arguments} are the arguments of the function.  They are
5654 separated from the function name by one or more spaces or tabs, and if
5655 there is more than one argument, then they are separated by commas.
5656 Such whitespace and commas are not part of an argument's value.  The
5657 delimiters which you use to surround the function call, whether
5658 parentheses or braces, can appear in an argument only in matching pairs;
5659 the other kind of delimiters may appear singly.  If the arguments
5660 themselves contain other function calls or variable references, it is
5661 wisest to use the same kind of delimiters for all the references; write
5662 @w{@samp{$(subst a,b,$(x))}}, not @w{@samp{$(subst a,b,$@{x@})}}.  This
5663 is because it is clearer, and because only one type of delimiter is
5664 matched to find the end of the reference.
5666 The text written for each argument is processed by substitution of
5667 variables and function calls to produce the argument value, which
5668 is the text on which the function acts.  The substitution is done in the
5669 order in which the arguments appear.
5671 Commas and unmatched parentheses or braces cannot appear in the text of an
5672 argument as written; leading spaces cannot appear in the text of the first
5673 argument as written.  These characters can be put into the argument value
5674 by variable substitution.  First define variables @code{comma} and
5675 @code{space} whose values are isolated comma and space characters, then
5676 substitute these variables where such characters are wanted, like this:
5678 @example
5679 @group
5680 comma:= ,
5681 empty:=
5682 space:= $(empty) $(empty)
5683 foo:= a b c
5684 bar:= $(subst $(space),$(comma),$(foo))
5685 # @r{bar is now `a,b,c'.}
5686 @end group
5687 @end example
5689 @noindent
5690 Here the @code{subst} function replaces each space with a comma, through
5691 the value of @code{foo}, and substitutes the result.
5693 @node Text Functions, File Name Functions, Syntax of Functions, Functions
5694 @section Functions for String Substitution and Analysis
5695 @cindex functions, for text
5697 Here are some functions that operate on strings:
5699 @table @code
5700 @item $(subst @var{from},@var{to},@var{text})
5701 @findex subst
5702 Performs a textual replacement on the text @var{text}: each occurrence
5703 of @var{from} is replaced by @var{to}.  The result is substituted for
5704 the function call.  For example,
5706 @example
5707 $(subst ee,EE,feet on the street)
5708 @end example
5710 substitutes the string @samp{fEEt on the strEEt}.
5712 @item $(patsubst @var{pattern},@var{replacement},@var{text})
5713 @findex patsubst
5714 Finds whitespace-separated words in @var{text} that match
5715 @var{pattern} and replaces them with @var{replacement}.  Here
5716 @var{pattern} may contain a @samp{%} which acts as a wildcard,
5717 matching any number of any characters within a word.  If
5718 @var{replacement} also contains a @samp{%}, the @samp{%} is replaced
5719 by the text that matched the @samp{%} in @var{pattern}.  Only the first
5720 @samp{%} in the @var{pattern} and @var{replacement} is treated this
5721 way; any subsequent @samp{%} is unchanged.@refill
5723 @cindex @code{%}, quoting in @code{patsubst}
5724 @cindex @code{%}, quoting with @code{\} (backslash)
5725 @cindex @code{\} (backslash), to quote @code{%}
5726 @cindex backslash (@code{\}), to quote @code{%}
5727 @cindex quoting @code{%}, in @code{patsubst}
5728 @samp{%} characters in @code{patsubst} function invocations can be
5729 quoted with preceding backslashes (@samp{\}).  Backslashes that would
5730 otherwise quote @samp{%} characters can be quoted with more backslashes.
5731 Backslashes that quote @samp{%} characters or other backslashes are
5732 removed from the pattern before it is compared file names or has a stem
5733 substituted into it.  Backslashes that are not in danger of quoting
5734 @samp{%} characters go unmolested.  For example, the pattern
5735 @file{the\%weird\\%pattern\\} has @samp{the%weird\} preceding the
5736 operative @samp{%} character, and @samp{pattern\\} following it.  The
5737 final two backslashes are left alone because they cannot affect any
5738 @samp{%} character.@refill
5740 Whitespace between words is folded into single space characters;
5741 leading and trailing whitespace is discarded.
5743 For example,
5745 @example
5746 $(patsubst %.c,%.o,x.c.c bar.c)
5747 @end example
5749 @noindent
5750 produces the value @samp{x.c.o bar.o}.
5752 Substitution references (@pxref{Substitution Refs, ,Substitution
5753 References}) are a simpler way to get the effect of the @code{patsubst}
5754 function:
5756 @example
5757 $(@var{var}:@var{pattern}=@var{replacement})
5758 @end example
5760 @noindent
5761 is equivalent to
5763 @example
5764 $(patsubst @var{pattern},@var{replacement},$(@var{var}))
5765 @end example
5767 The second shorthand simplifies one of the most common uses of
5768 @code{patsubst}: replacing the suffix at the end of file names.
5770 @example
5771 $(@var{var}:@var{suffix}=@var{replacement})
5772 @end example
5774 @noindent
5775 is equivalent to
5777 @example
5778 $(patsubst %@var{suffix},%@var{replacement},$(@var{var}))
5779 @end example
5781 @noindent
5782 For example, you might have a list of object files:
5784 @example
5785 objects = foo.o bar.o baz.o
5786 @end example
5788 @noindent
5789 To get the list of corresponding source files, you could simply write:
5791 @example
5792 $(objects:.o=.c)
5793 @end example
5795 @noindent
5796 instead of using the general form:
5798 @example
5799 $(patsubst %.o,%.c,$(objects))
5800 @end example
5802 @item $(strip @var{string})
5803 @cindex stripping whitespace
5804 @cindex whitespace, stripping
5805 @cindex spaces, stripping
5806 @findex strip
5807 Removes leading and trailing whitespace from @var{string} and replaces
5808 each internal sequence of one or more whitespace characters with a
5809 single space.  Thus, @samp{$(strip a b  c )} results in @w{@samp{a b c}}.
5811 The function @code{strip} can be very useful when used in conjunction
5812 with conditionals.  When comparing something with the empty string
5813 @samp{} using @code{ifeq} or @code{ifneq}, you usually want a string of
5814 just whitespace to match the empty string (@pxref{Conditionals}).
5816 Thus, the following may fail to have the desired results:
5818 @example
5819 .PHONY: all
5820 ifneq   "$(needs_made)" ""
5821 all: $(needs_made)
5822 else
5823 all:;@@echo 'Nothing to make!'
5824 endif
5825 @end example
5827 @noindent
5828 Replacing the variable reference @w{@samp{$(needs_made)}} with the
5829 function call @w{@samp{$(strip $(needs_made))}} in the @code{ifneq}
5830 directive would make it more robust.@refill
5832 @item $(findstring @var{find},@var{in})
5833 @findex findstring
5834 @cindex searching for strings
5835 @cindex finding strings
5836 @cindex strings, searching for
5837 Searches @var{in} for an occurrence of @var{find}.  If it occurs, the
5838 value is @var{find}; otherwise, the value is empty.  You can use this
5839 function in a conditional to test for the presence of a specific
5840 substring in a given string.  Thus, the two examples,
5842 @example
5843 $(findstring a,a b c)
5844 $(findstring a,b c)
5845 @end example
5847 @noindent
5848 produce the values @samp{a} and @samp{} (the empty string),
5849 respectively.  @xref{Testing Flags}, for a practical application of
5850 @code{findstring}.@refill
5852 @need 750
5853 @findex filter
5854 @cindex filtering words
5855 @cindex words, filtering
5856 @item $(filter @var{pattern}@dots{},@var{text})
5857 Returns all whitespace-separated words in @var{text} that @emph{do} match
5858 any of the @var{pattern} words, removing any words that @emph{do not}
5859 match.  The patterns are written using @samp{%}, just like the patterns
5860 used in the @code{patsubst} function above.@refill
5862 The @code{filter} function can be used to separate out different types
5863 of strings (such as file names) in a variable.  For example:
5865 @example
5866 sources := foo.c bar.c baz.s ugh.h
5867 foo: $(sources)
5868         cc $(filter %.c %.s,$(sources)) -o foo
5869 @end example
5871 @noindent
5872 says that @file{foo} depends of @file{foo.c}, @file{bar.c},
5873 @file{baz.s} and @file{ugh.h} but only @file{foo.c}, @file{bar.c} and
5874 @file{baz.s} should be specified in the command to the
5875 compiler.@refill
5877 @item $(filter-out @var{pattern}@dots{},@var{text})
5878 @findex filter-out
5879 @cindex filtering out words
5880 @cindex words, filtering out
5881 Returns all whitespace-separated words in @var{text} that @emph{do not}
5882 match any of the @var{pattern} words, removing the words that @emph{do}
5883 match one or more.  This is the exact opposite of the @code{filter}
5884 function.@refill
5886 For example, given:
5888 @example
5889 @group
5890 objects=main1.o foo.o main2.o bar.o
5891 mains=main1.o main2.o
5892 @end group
5893 @end example
5895 @noindent
5896 the following generates a list which contains all the object files not
5897 in @samp{mains}:
5899 @example
5900 $(filter-out $(mains),$(objects))
5901 @end example
5903 @need 1500
5904 @findex sort
5905 @cindex sorting words
5906 @item $(sort @var{list})
5907 Sorts the words of @var{list} in lexical order, removing duplicate
5908 words.  The output is a list of words separated by single spaces.
5909 Thus,
5911 @example
5912 $(sort foo bar lose)
5913 @end example
5915 @noindent
5916 returns the value @samp{bar foo lose}.
5918 @cindex removing duplicate words
5919 @cindex duplicate words, removing
5920 @cindex words, removing duplicates
5921 Incidentally, since @code{sort} removes duplicate words, you can use
5922 it for this purpose even if you don't care about the sort order.
5924 @item $(word @var{n},@var{text})
5925 @findex word
5926 @cindex word, selecting a
5927 @cindex selecting a word
5928 Returns the @var{n}th word of @var{text}.  The legitimate values of
5929 @var{n} start from 1.  If @var{n} is bigger than the number of words
5930 in @var{text}, the value is empty.  For example,
5932 @example
5933 $(word 2, foo bar baz)
5934 @end example
5936 @noindent
5937 returns @samp{bar}.
5939 @item $(wordlist @var{s},@var{e},@var{text})
5940 @findex wordlist
5941 @cindex words, selecting lists of
5942 @cindex selecting word lists
5943 Returns the list of words in @var{text} starting with word @var{s} and
5944 ending with word @var{e} (inclusive).  The legitimate values of @var{s}
5945 and @var{e} start from 1.  If @var{s} is bigger than the number of words
5946 in @var{text}, the value is empty.  If @var{e} is bigger than the number
5947 of words in @var{text}, words up to the end of @var{text} are returned.
5948 If @var{s} is greater than @var{e}, nothing is returned.  For example,
5950 @example
5951 $(wordlist 2, 3, foo bar baz)
5952 @end example
5954 @noindent
5955 returns @samp{bar baz}.
5957 @c Following item phrased to prevent overfull hbox.  --RJC 17 Jul 92
5958 @item $(words @var{text})
5959 @findex words
5960 @cindex words, finding number
5961 Returns the number of words in @var{text}.
5962 Thus, the last word of @var{text} is
5963 @w{@code{$(word $(words @var{text}),@var{text})}}.@refill
5965 @item $(firstword @var{names}@dots{})
5966 @findex firstword
5967 @cindex words, extracting first
5968 The argument @var{names} is regarded as a series of names, separated
5969 by whitespace.  The value is the first name in the series.  The rest
5970 of the names are ignored.
5972 For example,
5974 @example
5975 $(firstword foo bar)
5976 @end example
5978 @noindent
5979 produces the result @samp{foo}.  Although @code{$(firstword
5980 @var{text})} is the same as @code{$(word 1,@var{text})}, the
5981 @code{firstword} function is retained for its simplicity.@refill
5984 @item $(lastword @var{names}@dots{})
5985 @findex lastword
5986 @cindex words, extracting last
5987 The argument @var{names} is regarded as a series of names, separated
5988 by whitespace.  The value is the last name in the series.
5990 For example,
5992 @example
5993 $(lastword foo bar)
5994 @end example
5996 @noindent
5997 produces the result @samp{bar}.  Although @code{$(lastword
5998 @var{text})} is the same as @code{$(word $(words @var{text}),@var{text})},
5999 the @code{lastword} function was added for its simplicity and better
6000 performance.@refill
6001 @end table
6004 Here is a realistic example of the use of @code{subst} and
6005 @code{patsubst}.  Suppose that a makefile uses the @code{VPATH} variable
6006 to specify a list of directories that @code{make} should search for
6007 prerequisite files
6008 (@pxref{General Search, , @code{VPATH} Search Path for All Prerequisites}).
6009 This example shows how to
6010 tell the C compiler to search for header files in the same list of
6011 directories.@refill
6013 The value of @code{VPATH} is a list of directories separated by colons,
6014 such as @samp{src:../headers}.  First, the @code{subst} function is used to
6015 change the colons to spaces:
6017 @example
6018 $(subst :, ,$(VPATH))
6019 @end example
6021 @noindent
6022 This produces @samp{src ../headers}.  Then @code{patsubst} is used to turn
6023 each directory name into a @samp{-I} flag.  These can be added to the
6024 value of the variable @code{CFLAGS}, which is passed automatically to the C
6025 compiler, like this:
6027 @example
6028 override CFLAGS += $(patsubst %,-I%,$(subst :, ,$(VPATH)))
6029 @end example
6031 @noindent
6032 The effect is to append the text @samp{-Isrc -I../headers} to the
6033 previously given value of @code{CFLAGS}.  The @code{override} directive is
6034 used so that the new value is assigned even if the previous value of
6035 @code{CFLAGS} was specified with a command argument (@pxref{Override
6036 Directive, , The @code{override} Directive}).
6038 @node File Name Functions, Foreach Function, Text Functions, Functions
6039 @section Functions for File Names
6040 @cindex functions, for file names
6041 @cindex file name functions
6043 Several of the built-in expansion functions relate specifically to
6044 taking apart file names or lists of file names.
6046 Each of the following functions performs a specific transformation on a
6047 file name.  The argument of the function is regarded as a series of file
6048 names, separated by whitespace.  (Leading and trailing whitespace is
6049 ignored.)  Each file name in the series is transformed in the same way and
6050 the results are concatenated with single spaces between them.
6052 @table @code
6053 @item $(dir @var{names}@dots{})
6054 @findex dir
6055 @cindex directory part
6056 @cindex file name, directory part
6057 Extracts the directory-part of each file name in @var{names}.  The
6058 directory-part of the file name is everything up through (and
6059 including) the last slash in it.  If the file name contains no slash,
6060 the directory part is the string @samp{./}.  For example,
6062 @example
6063 $(dir src/foo.c hacks)
6064 @end example
6066 @noindent
6067 produces the result @samp{src/ ./}.
6069 @item $(notdir @var{names}@dots{})
6070 @findex notdir
6071 @cindex file name, nondirectory part
6072 @cindex nondirectory part
6073 Extracts all but the directory-part of each file name in @var{names}.
6074 If the file name contains no slash, it is left unchanged.  Otherwise,
6075 everything through the last slash is removed from it.
6077 A file name that ends with a slash becomes an empty string.  This is
6078 unfortunate, because it means that the result does not always have the
6079 same number of whitespace-separated file names as the argument had;
6080 but we do not see any other valid alternative.
6082 For example,
6084 @example
6085 $(notdir src/foo.c hacks)
6086 @end example
6088 @noindent
6089 produces the result @samp{foo.c hacks}.
6091 @item $(suffix @var{names}@dots{})
6092 @findex suffix
6093 @cindex suffix, function to find
6094 @cindex file name suffix
6095 Extracts the suffix of each file name in @var{names}.  If the file name
6096 contains a period, the suffix is everything starting with the last
6097 period.  Otherwise, the suffix is the empty string.  This frequently
6098 means that the result will be empty when @var{names} is not, and if
6099 @var{names} contains multiple file names, the result may contain fewer
6100 file names.
6102 For example,
6104 @example
6105 $(suffix src/foo.c src-1.0/bar.c hacks)
6106 @end example
6108 @noindent
6109 produces the result @samp{.c .c}.
6111 @item $(basename @var{names}@dots{})
6112 @findex basename
6113 @cindex basename
6114 @cindex file name, basename of
6115 Extracts all but the suffix of each file name in @var{names}.  If the
6116 file name contains a period, the basename is everything starting up to
6117 (and not including) the last period.  Periods in the directory part are
6118 ignored.  If there is no period, the basename is the entire file name.
6119 For example,
6121 @example
6122 $(basename src/foo.c src-1.0/bar hacks)
6123 @end example
6125 @noindent
6126 produces the result @samp{src/foo src-1.0/bar hacks}.
6128 @c plural convention with dots (be consistent)
6129 @item $(addsuffix @var{suffix},@var{names}@dots{})
6130 @findex addsuffix
6131 @cindex suffix, adding
6132 @cindex file name suffix, adding
6133 The argument @var{names} is regarded as a series of names, separated
6134 by whitespace; @var{suffix} is used as a unit.  The value of
6135 @var{suffix} is appended to the end of each individual name and the
6136 resulting larger names are concatenated with single spaces between
6137 them.  For example,
6139 @example
6140 $(addsuffix .c,foo bar)
6141 @end example
6143 @noindent
6144 produces the result @samp{foo.c bar.c}.
6146 @item $(addprefix @var{prefix},@var{names}@dots{})
6147 @findex addprefix
6148 @cindex prefix, adding
6149 @cindex file name prefix, adding
6150 The argument @var{names} is regarded as a series of names, separated
6151 by whitespace; @var{prefix} is used as a unit.  The value of
6152 @var{prefix} is prepended to the front of each individual name and the
6153 resulting larger names are concatenated with single spaces between
6154 them.  For example,
6156 @example
6157 $(addprefix src/,foo bar)
6158 @end example
6160 @noindent
6161 produces the result @samp{src/foo src/bar}.
6163 @item $(join @var{list1},@var{list2})
6164 @findex join
6165 @cindex joining lists of words
6166 @cindex words, joining lists
6167 Concatenates the two arguments word by word: the two first words (one
6168 from each argument) concatenated form the first word of the result, the
6169 two second words form the second word of the result, and so on.  So the
6170 @var{n}th word of the result comes from the @var{n}th word of each
6171 argument.  If one argument has more words that the other, the extra
6172 words are copied unchanged into the result.
6174 For example, @samp{$(join a b,.c .o)} produces @samp{a.c b.o}.
6176 Whitespace between the words in the lists is not preserved; it is
6177 replaced with a single space.
6179 This function can merge the results of the @code{dir} and
6180 @code{notdir} functions, to produce the original list of files which
6181 was given to those two functions.@refill
6183 @item $(wildcard @var{pattern})
6184 @findex wildcard
6185 @cindex wildcard, function
6186 The argument @var{pattern} is a file name pattern, typically containing
6187 wildcard characters (as in shell file name patterns).  The result of
6188 @code{wildcard} is a space-separated list of the names of existing files
6189 that match the pattern.
6190 @xref{Wildcards, ,Using Wildcard Characters in File Names}.
6192 @item $(realpath @var{names}@dots{})
6193 @findex realpath
6194 @cindex realpath
6195 @cindex file name, realpath of
6196 For each file name in @var{names} return the canonical absolute name.
6197 A canonical name does not contain any @code{.} or @code{..} components,
6198 nor any repeated path separators (@code{/}) or symlinks. In case of a
6199 failure the empty string is returned. Consult the @code{realpath(3)}
6200 documentation for a list of possible failure causes.
6202 @item $(abspath @var{names}@dots{})
6203 @findex abspath
6204 @cindex abspath
6205 @cindex file name, abspath of
6206 For each file name in @var{names} return an absolute name that does
6207 not contain any @code{.} or @code{..} components, nor any repeated path
6208 separators (@code{/}). Note that in contrast to @code{realpath}
6209 function, @code{abspath} does not resolve symlinks and does not require
6210 the file names to refer to an existing file or directory. Use the
6211 @code{wildcard} function to test for existence.
6212 @end table
6214 @node Foreach Function, If Function, File Name Functions, Functions
6215 @section The @code{foreach} Function
6216 @findex foreach
6217 @cindex words, iterating over
6219 The @code{foreach} function is very different from other functions.  It
6220 causes one piece of text to be used repeatedly, each time with a different
6221 substitution performed on it.  It resembles the @code{for} command in the
6222 shell @code{sh} and the @code{foreach} command in the C-shell @code{csh}.
6224 The syntax of the @code{foreach} function is:
6226 @example
6227 $(foreach @var{var},@var{list},@var{text})
6228 @end example
6230 @noindent
6231 The first two arguments, @var{var} and @var{list}, are expanded before
6232 anything else is done; note that the last argument, @var{text}, is
6233 @strong{not} expanded at the same time.  Then for each word of the expanded
6234 value of @var{list}, the variable named by the expanded value of @var{var}
6235 is set to that word, and @var{text} is expanded.  Presumably @var{text}
6236 contains references to that variable, so its expansion will be different
6237 each time.
6239 The result is that @var{text} is expanded as many times as there are
6240 whitespace-separated words in @var{list}.  The multiple expansions of
6241 @var{text} are concatenated, with spaces between them, to make the result
6242 of @code{foreach}.
6244 This simple example sets the variable @samp{files} to the list of all files
6245 in the directories in the list @samp{dirs}:
6247 @example
6248 dirs := a b c d
6249 files := $(foreach dir,$(dirs),$(wildcard $(dir)/*))
6250 @end example
6252 Here @var{text} is @samp{$(wildcard $(dir)/*)}.  The first repetition
6253 finds the value @samp{a} for @code{dir}, so it produces the same result
6254 as @samp{$(wildcard a/*)}; the second repetition produces the result
6255 of @samp{$(wildcard b/*)}; and the third, that of @samp{$(wildcard c/*)}.
6257 This example has the same result (except for setting @samp{dirs}) as
6258 the following example:
6260 @example
6261 files := $(wildcard a/* b/* c/* d/*)
6262 @end example
6264 When @var{text} is complicated, you can improve readability by giving it
6265 a name, with an additional variable:
6267 @example
6268 find_files = $(wildcard $(dir)/*)
6269 dirs := a b c d
6270 files := $(foreach dir,$(dirs),$(find_files))
6271 @end example
6273 @noindent
6274 Here we use the variable @code{find_files} this way.  We use plain @samp{=}
6275 to define a recursively-expanding variable, so that its value contains an
6276 actual function call to be reexpanded under the control of @code{foreach};
6277 a simply-expanded variable would not do, since @code{wildcard} would be
6278 called only once at the time of defining @code{find_files}.
6280 The @code{foreach} function has no permanent effect on the variable
6281 @var{var}; its value and flavor after the @code{foreach} function call are
6282 the same as they were beforehand.  The other values which are taken from
6283 @var{list} are in effect only temporarily, during the execution of
6284 @code{foreach}.  The variable @var{var} is a simply-expanded variable
6285 during the execution of @code{foreach}.  If @var{var} was undefined
6286 before the @code{foreach} function call, it is undefined after the call.
6287 @xref{Flavors, ,The Two Flavors of Variables}.@refill
6289 You must take care when using complex variable expressions that result in
6290 variable names because many strange things are valid variable names, but
6291 are probably not what you intended.  For example,
6293 @smallexample
6294 files := $(foreach Esta escrito en espanol!,b c ch,$(find_files))
6295 @end smallexample
6297 @noindent
6298 might be useful if the value of @code{find_files} references the variable
6299 whose name is @samp{Esta escrito en espanol!} (es un nombre bastante largo,
6300 no?), but it is more likely to be a mistake.
6302 @node If Function, Call Function, Foreach Function, Functions
6303 @section The @code{if} Function
6304 @findex if
6305 @cindex conditional expansion
6307 The @code{if} function provides support for conditional expansion in a
6308 functional context (as opposed to the GNU @code{make} makefile
6309 conditionals such as @code{ifeq} (@pxref{Conditional Syntax, ,Syntax of
6310 Conditionals}).
6312 An @code{if} function call can contain either two or three arguments:
6314 @example
6315 $(if @var{condition},@var{then-part}[,@var{else-part}])
6316 @end example
6318 The first argument, @var{condition}, first has all preceding and
6319 trailing whitespace stripped, then is expanded.  If it expands to any
6320 non-empty string, then the condition is considered to be true.  If it
6321 expands to an empty string, the condition is considered to be false.
6323 If the condition is true then the second argument, @var{then-part}, is
6324 evaluated and this is used as the result of the evaluation of the entire
6325 @code{if} function.
6327 If the condition is false then the third argument, @var{else-part}, is
6328 evaluated and this is the result of the @code{if} function.  If there is
6329 no third argument, the @code{if} function evaluates to nothing (the
6330 empty string).
6332 Note that only one of the @var{then-part} or the @var{else-part} will be
6333 evaluated, never both.  Thus, either can contain side-effects (such as
6334 @code{shell} function calls, etc.)
6336 @node Call Function, Value Function, If Function, Functions
6337 @section The @code{call} Function
6338 @findex call
6339 @cindex functions, user defined
6340 @cindex user defined functions
6342 The @code{call} function is unique in that it can be used to create new
6343 parameterized functions.  You can write a complex expression as the
6344 value of a variable, then use @code{call} to expand it with different
6345 values.
6347 The syntax of the @code{call} function is:
6349 @example
6350 $(call @var{variable},@var{param},@var{param},@dots{})
6351 @end example
6353 When @code{make} expands this function, it assigns each @var{param} to
6354 temporary variables @code{$(1)}, @code{$(2)}, etc.  The variable
6355 @code{$(0)} will contain @var{variable}.  There is no maximum number of
6356 parameter arguments.  There is no minimum, either, but it doesn't make
6357 sense to use @code{call} with no parameters.
6359 Then @var{variable} is expanded as a @code{make} variable in the context
6360 of these temporary assignments.  Thus, any reference to @code{$(1)} in
6361 the value of @var{variable} will resolve to the first @var{param} in the
6362 invocation of @code{call}.
6364 Note that @var{variable} is the @emph{name} of a variable, not a
6365 @emph{reference} to that variable.  Therefore you would not normally use
6366 a @samp{$} or parentheses when writing it.  (You can, however, use a
6367 variable reference in the name if you want the name not to be a
6368 constant.)
6370 If @var{variable} is the name of a builtin function, the builtin function
6371 is always invoked (even if a @code{make} variable by that name also
6372 exists).
6374 The @code{call} function expands the @var{param} arguments before
6375 assigning them to temporary variables.  This means that @var{variable}
6376 values containing references to builtin functions that have special
6377 expansion rules, like @code{foreach} or @code{if}, may not work as you
6378 expect.
6380 Some examples may make this clearer.
6382 This macro simply reverses its arguments:
6384 @smallexample
6385 reverse = $(2) $(1)
6387 foo = $(call reverse,a,b)
6388 @end smallexample
6390 @noindent
6391 Here @var{foo} will contain @samp{b a}.
6393 This one is slightly more interesting: it defines a macro to search for
6394 the first instance of a program in @code{PATH}:
6396 @smallexample
6397 pathsearch = $(firstword $(wildcard $(addsuffix /$(1),$(subst :, ,$(PATH)))))
6399 LS := $(call pathsearch,ls)
6400 @end smallexample
6402 @noindent
6403 Now the variable LS contains @code{/bin/ls} or similar.
6405 The @code{call} function can be nested.  Each recursive invocation gets
6406 its own local values for @code{$(1)}, etc. that mask the values of
6407 higher-level @code{call}.  For example, here is an implementation of a
6408 @dfn{map} function:
6410 @smallexample
6411 map = $(foreach a,$(2),$(call $(1),$(a)))
6412 @end smallexample
6414 Now you can @var{map} a function that normally takes only one argument,
6415 such as @code{origin}, to multiple values in one step:
6417 @smallexample
6418 o = $(call map,origin,o map MAKE)
6419 @end smallexample
6421 and end up with @var{o} containing something like @samp{file file default}.
6423 A final caution: be careful when adding whitespace to the arguments to
6424 @code{call}.  As with other functions, any whitespace contained in the
6425 second and subsequent arguments is kept; this can cause strange
6426 effects.  It's generally safest to remove all extraneous whitespace when
6427 providing parameters to @code{call}.
6429 @node Value Function, Eval Function, Call Function, Functions
6430 @comment  node-name,  next,  previous,  up
6431 @section The @code{value} Function
6432 @findex value
6433 @cindex variables, unexpanded value
6435 The @code{value} function provides a way for you to use the value of a
6436 variable @emph{without} having it expanded.  Please note that this
6437 does not undo expansions which have already occurred; for example if
6438 you create a simply expanded variable its value is expanded during the
6439 definition; in that case the @code{value} function will return the
6440 same result as using the variable directly.
6442 The syntax of the @code{value} function is:
6444 @example
6445 $(value @var{variable})
6446 @end example
6448 Note that @var{variable} is the @emph{name} of a variable; not a
6449 @emph{reference} to that variable.  Therefore you would not normally
6450 use a @samp{$} or parentheses when writing it.  (You can, however, use
6451 a variable reference in the name if you want the name not to be a
6452 constant.)
6454 The result of this function is a string containing the value of
6455 @var{variable}, without any expansion occurring.  For example, in this
6456 makefile:
6458 @example
6459 @group
6460 FOO = $PATH
6462 all:
6463         @@echo $(FOO)
6464         @@echo $(value FOO)
6465 @end group
6466 @end example
6468 @noindent
6469 The first output line would be @code{ATH}, since the ``$P'' would be
6470 expanded as a @code{make} variable, while the second output line would
6471 be the current value of your @code{$PATH} environment variable, since
6472 the @code{value} function avoided the expansion.
6474 The @code{value} function is most often used in conjunction with the
6475 @code{eval} function (@pxref{Eval Function}).
6477 @node Eval Function, Origin Function, Value Function, Functions
6478 @comment  node-name,  next,  previous,  up
6479 @section The @code{eval} Function
6480 @findex eval
6481 @cindex evaluating makefile syntax
6482 @cindex makefile syntax, evaluating
6484 The @code{eval} function is very special: it allows you to define new
6485 makefile constructs that are not constant; which are the result of
6486 evaluating other variables and functions.  The argument to the
6487 @code{eval} function is expanded, then the results of that expansion
6488 are parsed as makefile syntax.  The expanded results can define new
6489 @code{make} variables, targets, implicit or explicit rules, etc.
6491 The result of the @code{eval} function is always the empty string;
6492 thus, it can be placed virtually anywhere in a makefile without
6493 causing syntax errors.
6495 It's important to realize that the @code{eval} argument is expanded
6496 @emph{twice}; first by the @code{eval} function, then the results of
6497 that expansion are expanded again when they are parsed as makefile
6498 syntax.  This means you may need to provide extra levels of escaping
6499 for ``$'' characters when using @code{eval}.  The @code{value}
6500 function (@pxref{Value Function}) can sometimes be useful in these
6501 situations, to circumvent unwanted expansions.
6503 Here is an example of how @code{eval} can be used; this example
6504 combines a number of concepts and other functions.  Although it might
6505 seem overly complex to use @code{eval} in this example, rather than
6506 just writing out the rules, consider two things: first, the template
6507 definition (in @code{PROGRAM_template}) could need to be much more
6508 complex than it is here; and second, you might put the complex,
6509 ``generic'' part of this example into another makefile, then include
6510 it in all the individual makefiles.  Now your individual makefiles are
6511 quite straightforward.
6513 @example
6514 @group
6515 PROGRAMS    = server client
6517 server_OBJS = server.o server_priv.o server_access.o
6518 server_LIBS = priv protocol
6520 client_OBJS = client.o client_api.o client_mem.o
6521 client_LIBS = protocol
6523 # Everything after this is generic
6525 .PHONY: all
6526 all: $(PROGRAMS)
6528 define PROGRAM_template
6529  $(1): $$($(1)_OBJS) $$($(1)_LIBS:%=-l%)
6530  ALL_OBJS   += $$($(1)_OBJS)
6531 endef
6533 $(foreach prog,$(PROGRAMS),$(eval $(call PROGRAM_template,$(prog))))
6535 $(PROGRAMS):
6536         $(LINK.o) $^ $(LDLIBS) -o $@@
6538 clean:
6539         rm -f $(ALL_OBJS) $(PROGRAMS)
6540 @end group
6541 @end example
6543 @node Origin Function, Shell Function, Eval Function, Functions
6544 @section The @code{origin} Function
6545 @findex origin
6546 @cindex variables, origin of
6547 @cindex origin of variable
6549 The @code{origin} function is unlike most other functions in that it does
6550 not operate on the values of variables; it tells you something @emph{about}
6551 a variable.  Specifically, it tells you where it came from.
6553 The syntax of the @code{origin} function is:
6555 @example
6556 $(origin @var{variable})
6557 @end example
6559 Note that @var{variable} is the @emph{name} of a variable to inquire about;
6560 not a @emph{reference} to that variable.  Therefore you would not normally
6561 use a @samp{$} or parentheses when writing it.  (You can, however, use a
6562 variable reference in the name if you want the name not to be a constant.)
6564 The result of this function is a string telling you how the variable
6565 @var{variable} was defined:
6567 @table @samp
6568 @item undefined
6570 if @var{variable} was never defined.
6572 @item default
6574 if @var{variable} has a default definition, as is usual with @code{CC}
6575 and so on.  @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
6576 Note that if you have redefined a default variable, the @code{origin}
6577 function will return the origin of the later definition.
6579 @item environment
6581 if @var{variable} was defined as an environment variable and the
6582 @samp{-e} option is @emph{not} turned on (@pxref{Options Summary, ,Summary of Options}).
6584 @item environment override
6586 if @var{variable} was defined as an environment variable and the
6587 @w{@samp{-e}} option @emph{is} turned on (@pxref{Options Summary,
6588 ,Summary of Options}).@refill
6590 @item file
6592 if @var{variable} was defined in a makefile.
6594 @item command line
6596 if @var{variable} was defined on the command line.
6598 @item override
6600 if @var{variable} was defined with an @code{override} directive in a
6601 makefile (@pxref{Override Directive, ,The @code{override} Directive}).
6603 @item automatic
6605 if @var{variable} is an automatic variable defined for the
6606 execution of the commands for each rule
6607 (@pxref{Automatic Variables}).
6608 @end table
6610 This information is primarily useful (other than for your curiosity) to
6611 determine if you want to believe the value of a variable.  For example,
6612 suppose you have a makefile @file{foo} that includes another makefile
6613 @file{bar}.  You want a variable @code{bletch} to be defined in @file{bar}
6614 if you run the command @w{@samp{make -f bar}}, even if the environment contains
6615 a definition of @code{bletch}.  However, if @file{foo} defined
6616 @code{bletch} before including @file{bar}, you do not want to override that
6617 definition.  This could be done by using an @code{override} directive in
6618 @file{foo}, giving that definition precedence over the later definition in
6619 @file{bar}; unfortunately, the @code{override} directive would also
6620 override any command line definitions.  So, @file{bar} could
6621 include:@refill
6623 @example
6624 @group
6625 ifdef bletch
6626 ifeq "$(origin bletch)" "environment"
6627 bletch = barf, gag, etc.
6628 endif
6629 endif
6630 @end group
6631 @end example
6633 @noindent
6634 If @code{bletch} has been defined from the environment, this will redefine
6637 If you want to override a previous definition of @code{bletch} if it came
6638 from the environment, even under @samp{-e}, you could instead write:
6640 @example
6641 @group
6642 ifneq "$(findstring environment,$(origin bletch))" ""
6643 bletch = barf, gag, etc.
6644 endif
6645 @end group
6646 @end example
6648 Here the redefinition takes place if @samp{$(origin bletch)} returns either
6649 @samp{environment} or @samp{environment override}.
6650 @xref{Text Functions, , Functions for String Substitution and Analysis}.
6652 @node Shell Function, Make Control Functions, Origin Function, Functions
6653 @section The @code{shell} Function
6654 @findex shell
6655 @cindex commands, expansion
6656 @cindex backquotes
6657 @cindex shell command, function for
6659 The @code{shell} function is unlike any other function other than the
6660 @code{wildcard} function
6661 (@pxref{Wildcard Function, ,The Function @code{wildcard}}) in that it
6662 communicates with the world outside of @code{make}.
6664 The @code{shell} function performs the same function that backquotes
6665 (@samp{`}) perform in most shells: it does @dfn{command expansion}.
6666 This means that it takes as an argument a shell command and evaluates
6667 to the output of the command.  The only processing @code{make} does on
6668 the result is to convert each newline (or carriage-return / newline
6669 pair) to a single space.  If there is a trailing (carriage-return
6670 and) newline it will simply be removed.@refill
6672 The commands run by calls to the @code{shell} function are run when the
6673 function calls are expanded (@pxref{Reading Makefiles, , How
6674 @code{make} Reads a Makefile}).  Because this function involves
6675 spawning a new shell, you should carefully consider the performance
6676 implications of using the @code{shell} function within recursively
6677 expanded variables vs. simply expanded variables (@pxref{Flavors, ,The
6678 Two Flavors of Variables}).
6680 Here are some examples of the use of the @code{shell} function:
6682 @example
6683 contents := $(shell cat foo)
6684 @end example
6686 @noindent
6687 sets @code{contents} to the contents of the file @file{foo}, with a space
6688 (rather than a newline) separating each line.
6690 @example
6691 files := $(shell echo *.c)
6692 @end example
6694 @noindent
6695 sets @code{files} to the expansion of @samp{*.c}.  Unless @code{make} is
6696 using a very strange shell, this has the same result as
6697 @w{@samp{$(wildcard *.c)}} (as long as at least one @samp{.c} file
6698 exists).@refill
6700 @node Make Control Functions,  , Shell Function, Functions
6701 @section Functions That Control Make
6702 @cindex functions, for controlling make
6703 @cindex controlling make
6705 These functions control the way make runs.  Generally, they are used to
6706 provide information to the user of the makefile or to cause make to stop
6707 if some sort of environmental error is detected.
6709 @table @code
6710 @item $(error @var{text}@dots{})
6711 @findex error
6712 @cindex error, stopping on
6713 @cindex stopping make
6714 Generates a fatal error where the message is @var{text}.  Note that the
6715 error is generated whenever this function is evaluated.  So, if you put
6716 it inside a command script or on the right side of a recursive variable
6717 assignment, it won't be evaluated until later.  The @var{text} will be
6718 expanded before the error is generated.
6720 For example,
6722 @example
6723 ifdef ERROR1
6724 $(error error is $(ERROR1))
6725 endif
6726 @end example
6728 @noindent
6729 will generate a fatal error during the read of the makefile if the
6730 @code{make} variable @code{ERROR1} is defined.  Or,
6732 @example
6733 ERR = $(error found an error!)
6735 .PHONY: err
6736 err: ; $(ERR)
6737 @end example
6739 @noindent
6740 will generate a fatal error while @code{make} is running, if the
6741 @code{err} target is invoked.
6743 @item $(warning @var{text}@dots{})
6744 @findex warning
6745 @cindex warnings, printing
6746 @cindex printing user warnings
6747 This function works similarly to the @code{error} function, above,
6748 except that @code{make} doesn't exit.  Instead, @var{text} is expanded
6749 and the resulting message is displayed, but processing of the makefile
6750 continues.
6752 The result of the expansion of this function is the empty string.
6754 @item $(info @var{text}@dots{})
6755 @findex info
6756 @cindex printing messages
6757 This function does nothing more than print its (expanded) argument(s)
6758 to standard output.  No makefile name or line number is added.  The
6759 result of the expansion of this function is the empty string.
6760 @end table
6762 @node Running, Implicit Rules, Functions, Top
6763 @chapter How to Run @code{make}
6765 A makefile that says how to recompile a program can be used in more
6766 than one way.  The simplest use is to recompile every file that is out
6767 of date.  Usually, makefiles are written so that if you run
6768 @code{make} with no arguments, it does just that.
6770 But you might want to update only some of the files; you might want to use
6771 a different compiler or different compiler options; you might want just to
6772 find out which files are out of date without changing them.
6774 By giving arguments when you run @code{make}, you can do any of these
6775 things and many others.
6777 The exit status of @code{make} is always one of three values:
6778 @table @code
6779 @item 0
6780 The exit status is zero if @code{make} is successful.
6781 @item 2
6782 The exit status is two if @code{make} encounters any errors.
6783 It will print messages describing the particular errors.
6784 @item 1
6785 The exit status is one if you use the @samp{-q} flag and @code{make}
6786 determines that some target is not already up to date.
6787 @xref{Instead of Execution, ,Instead of Executing the Commands}.
6788 @end table
6790 @menu
6791 * Makefile Arguments::          How to specify which makefile to use.
6792 * Goals::                       How to use goal arguments to specify which
6793                                   parts of the makefile to use.
6794 * Instead of Execution::        How to use mode flags to specify what
6795                                   kind of thing to do with the commands
6796                                   in the makefile other than simply
6797                                   execute them.
6798 * Avoiding Compilation::        How to avoid recompiling certain files.
6799 * Overriding::                  How to override a variable to specify
6800                                   an alternate compiler and other things.
6801 * Testing::                     How to proceed past some errors, to
6802                                   test compilation.
6803 * Options Summary::             Summary of Options
6804 @end menu
6806 @node Makefile Arguments, Goals, Running, Running
6807 @section Arguments to Specify the Makefile
6808 @cindex @code{--file}
6809 @cindex @code{--makefile}
6810 @cindex @code{-f}
6812 The way to specify the name of the makefile is with the @samp{-f} or
6813 @samp{--file} option (@samp{--makefile} also works).  For example,
6814 @samp{-f altmake} says to use the file @file{altmake} as the makefile.
6816 If you use the @samp{-f} flag several times and follow each @samp{-f}
6817 with an argument, all the specified files are used jointly as
6818 makefiles.
6820 If you do not use the @samp{-f} or @samp{--file} flag, the default is
6821 to try @file{GNUmakefile}, @file{makefile}, and @file{Makefile}, in
6822 that order, and use the first of these three which exists or can be made
6823 (@pxref{Makefiles, ,Writing Makefiles}).@refill
6825 @node Goals, Instead of Execution, Makefile Arguments, Running
6826 @section Arguments to Specify the Goals
6827 @cindex goal, how to specify
6829 The @dfn{goals} are the targets that @code{make} should strive ultimately
6830 to update.  Other targets are updated as well if they appear as
6831 prerequisites of goals, or prerequisites of prerequisites of goals, etc.
6833 By default, the goal is the first target in the makefile (not counting
6834 targets that start with a period).  Therefore, makefiles are usually
6835 written so that the first target is for compiling the entire program or
6836 programs they describe.  If the first rule in the makefile has several
6837 targets, only the first target in the rule becomes the default goal, not
6838 the whole list.
6840 You can specify a different goal or goals with arguments to @code{make}.
6841 Use the name of the goal as an argument.  If you specify several goals,
6842 @code{make} processes each of them in turn, in the order you name them.
6844 Any target in the makefile may be specified as a goal (unless it
6845 starts with @samp{-} or contains an @samp{=}, in which case it will be
6846 parsed as a switch or variable definition, respectively).  Even
6847 targets not in the makefile may be specified, if @code{make} can find
6848 implicit rules that say how to make them.
6850 @cindex @code{MAKECMDGOALS}
6851 @vindex MAKECMDGOALS
6852 @code{Make} will set the special variable @code{MAKECMDGOALS} to the
6853 list of goals you specified on the command line.  If no goals were given
6854 on the command line, this variable is empty.  Note that this variable
6855 should be used only in special circumstances.
6857 An example of appropriate use is to avoid including @file{.d} files
6858 during @code{clean} rules (@pxref{Automatic Prerequisites}), so
6859 @code{make} won't create them only to immediately remove them
6860 again:@refill
6862 @example
6863 @group
6864 sources = foo.c bar.c
6866 ifneq ($(MAKECMDGOALS),clean)
6867 include $(sources:.c=.d)
6868 endif
6869 @end group
6870 @end example
6872 One use of specifying a goal is if you want to compile only a part of
6873 the program, or only one of several programs.  Specify as a goal each
6874 file that you wish to remake.  For example, consider a directory containing
6875 several programs, with a makefile that starts like this:
6877 @example
6878 .PHONY: all
6879 all: size nm ld ar as
6880 @end example
6882 If you are working on the program @code{size}, you might want to say
6883 @w{@samp{make size}} so that only the files of that program are recompiled.
6885 Another use of specifying a goal is to make files that are not normally
6886 made.  For example, there may be a file of debugging output, or a
6887 version of the program that is compiled specially for testing, which has
6888 a rule in the makefile but is not a prerequisite of the default goal.
6890 Another use of specifying a goal is to run the commands associated with
6891 a phony target (@pxref{Phony Targets}) or empty target (@pxref{Empty
6892 Targets, ,Empty Target Files to Record Events}).  Many makefiles contain
6893 a phony target named @file{clean} which deletes everything except source
6894 files.  Naturally, this is done only if you request it explicitly with
6895 @w{@samp{make clean}}.  Following is a list of typical phony and empty
6896 target names.  @xref{Standard Targets}, for a detailed list of all the
6897 standard target names which GNU software packages use.
6899 @table @file
6900 @item all
6901 @cindex @code{all} @r{(standard target)}
6902 Make all the top-level targets the makefile knows about.
6904 @item clean
6905 @cindex @code{clean} @r{(standard target)}
6906 Delete all files that are normally created by running @code{make}.
6908 @item mostlyclean
6909 @cindex @code{mostlyclean} @r{(standard target)}
6910 Like @samp{clean}, but may refrain from deleting a few files that people
6911 normally don't want to recompile.  For example, the @samp{mostlyclean}
6912 target for GCC does not delete @file{libgcc.a}, because recompiling it
6913 is rarely necessary and takes a lot of time.
6915 @item distclean
6916 @cindex @code{distclean} @r{(standard target)}
6917 @itemx realclean
6918 @cindex @code{realclean} @r{(standard target)}
6919 @itemx clobber
6920 @cindex @code{clobber} @r{(standard target)}
6921 Any of these targets might be defined to delete @emph{more} files than
6922 @samp{clean} does.  For example, this would delete configuration files
6923 or links that you would normally create as preparation for compilation,
6924 even if the makefile itself cannot create these files.
6926 @item install
6927 @cindex @code{install} @r{(standard target)}
6928 Copy the executable file into a directory that users typically search
6929 for commands; copy any auxiliary files that the executable uses into
6930 the directories where it will look for them.
6932 @item print
6933 @cindex @code{print} @r{(standard target)}
6934 Print listings of the source files that have changed.
6936 @item tar
6937 @cindex @code{tar} @r{(standard target)}
6938 Create a tar file of the source files.
6940 @item shar
6941 @cindex @code{shar} @r{(standard target)}
6942 Create a shell archive (shar file) of the source files.
6944 @item dist
6945 @cindex @code{dist} @r{(standard target)}
6946 Create a distribution file of the source files.  This might
6947 be a tar file, or a shar file, or a compressed version of one of the
6948 above, or even more than one of the above.
6950 @item TAGS
6951 @cindex @code{TAGS} @r{(standard target)}
6952 Update a tags table for this program.
6954 @item check
6955 @cindex @code{check} @r{(standard target)}
6956 @itemx test
6957 @cindex @code{test} @r{(standard target)}
6958 Perform self tests on the program this makefile builds.
6959 @end table
6961 @node Instead of Execution, Avoiding Compilation, Goals, Running
6962 @section Instead of Executing the Commands
6963 @cindex execution, instead of
6964 @cindex commands, instead of executing
6966 The makefile tells @code{make} how to tell whether a target is up to date,
6967 and how to update each target.  But updating the targets is not always
6968 what you want.  Certain options specify other activities for @code{make}.
6970 @comment Extra blank lines make it print better.
6971 @table @samp
6972 @item -n
6973 @itemx --just-print
6974 @itemx --dry-run
6975 @itemx --recon
6976 @cindex @code{--just-print}
6977 @cindex @code{--dry-run}
6978 @cindex @code{--recon}
6979 @cindex @code{-n}
6981 ``No-op''.  The activity is to print what commands would be used to make
6982 the targets up to date, but not actually execute them.
6984 @item -t
6985 @itemx --touch
6986 @cindex @code{--touch}
6987 @cindex touching files
6988 @cindex target, touching
6989 @cindex @code{-t}
6991 ``Touch''.  The activity is to mark the targets as up to date without
6992 actually changing them.  In other words, @code{make} pretends to compile
6993 the targets but does not really change their contents.
6995 @item -q
6996 @itemx --question
6997 @cindex @code{--question}
6998 @cindex @code{-q}
6999 @cindex question mode
7001 ``Question''.  The activity is to find out silently whether the targets
7002 are up to date already; but execute no commands in either case.  In other
7003 words, neither compilation nor output will occur.
7005 @item -W @var{file}
7006 @itemx --what-if=@var{file}
7007 @itemx --assume-new=@var{file}
7008 @itemx --new-file=@var{file}
7009 @cindex @code{--what-if}
7010 @cindex @code{-W}
7011 @cindex @code{--assume-new}
7012 @cindex @code{--new-file}
7013 @cindex what if
7014 @cindex files, assuming new
7016 ``What if''.  Each @samp{-W} flag is followed by a file name.  The given
7017 files' modification times are recorded by @code{make} as being the present
7018 time, although the actual modification times remain the same.
7019 You can use the @samp{-W} flag in conjunction with the @samp{-n} flag
7020 to see what would happen if you were to modify specific files.@refill
7021 @end table
7023 With the @samp{-n} flag, @code{make} prints the commands that it would
7024 normally execute but does not execute them.
7026 With the @samp{-t} flag, @code{make} ignores the commands in the rules
7027 and uses (in effect) the command @code{touch} for each target that needs to
7028 be remade.  The @code{touch} command is also printed, unless @samp{-s} or
7029 @code{.SILENT} is used.  For speed, @code{make} does not actually invoke
7030 the program @code{touch}.  It does the work directly.
7032 With the @samp{-q} flag, @code{make} prints nothing and executes no
7033 commands, but the exit status code it returns is zero if and only if the
7034 targets to be considered are already up to date.  If the exit status is
7035 one, then some updating needs to be done.  If @code{make} encounters an
7036 error, the exit status is two, so you can distinguish an error from a
7037 target that is not up to date.
7039 It is an error to use more than one of these three flags in the same
7040 invocation of @code{make}.
7042 @cindex +, and command execution
7043 The @samp{-n}, @samp{-t}, and @samp{-q} options do not affect command
7044 lines that begin with @samp{+} characters or contain the strings
7045 @samp{$(MAKE)} or @samp{$@{MAKE@}}.  Note that only the line containing
7046 the @samp{+} character or the strings @samp{$(MAKE)} or @samp{$@{MAKE@}}
7047 is run regardless of these options.  Other lines in the same rule are
7048 not run unless they too begin with @samp{+} or contain @samp{$(MAKE)} or
7049 @samp{$@{MAKE@}} (@xref{MAKE Variable, ,How the @code{MAKE} Variable Works}.)
7051 The @samp{-W} flag provides two features:
7053 @itemize @bullet
7054 @item
7055 If you also use the @samp{-n} or @samp{-q} flag, you can see what
7056 @code{make} would do if you were to modify some files.
7058 @item
7059 Without the @samp{-n} or @samp{-q} flag, when @code{make} is actually
7060 executing commands, the @samp{-W} flag can direct @code{make} to act
7061 as if some files had been modified, without actually modifying the
7062 files.@refill
7063 @end itemize
7065 Note that the options @samp{-p} and @samp{-v} allow you to obtain other
7066 information about @code{make} or about the makefiles in use
7067 (@pxref{Options Summary, ,Summary of Options}).@refill
7069 @node Avoiding Compilation, Overriding, Instead of Execution, Running
7070 @section Avoiding Recompilation of Some Files
7071 @cindex @code{-o}
7072 @cindex @code{--old-file}
7073 @cindex @code{--assume-old}
7074 @cindex files, assuming old
7075 @cindex files, avoiding recompilation of
7076 @cindex recompilation, avoiding
7078 Sometimes you may have changed a source file but you do not want to
7079 recompile all the files that depend on it.  For example, suppose you add
7080 a macro or a declaration to a header file that many other files depend
7081 on.  Being conservative, @code{make} assumes that any change in the
7082 header file requires recompilation of all dependent files, but you know
7083 that they do not need to be recompiled and you would rather not waste
7084 the time waiting for them to compile.
7086 If you anticipate the problem before changing the header file, you can
7087 use the @samp{-t} flag.  This flag tells @code{make} not to run the
7088 commands in the rules, but rather to mark the target up to date by
7089 changing its last-modification date.  You would follow this procedure:
7091 @enumerate
7092 @item
7093 Use the command @samp{make} to recompile the source files that really
7094 need recompilation, ensuring that the object files are up-to-date
7095 before you begin.
7097 @item
7098 Make the changes in the header files.
7100 @item
7101 Use the command @samp{make -t} to mark all the object files as
7102 up to date.  The next time you run @code{make}, the changes in the
7103 header files will not cause any recompilation.
7104 @end enumerate
7106 If you have already changed the header file at a time when some files
7107 do need recompilation, it is too late to do this.  Instead, you can
7108 use the @w{@samp{-o @var{file}}} flag, which marks a specified file as
7109 ``old'' (@pxref{Options Summary, ,Summary of Options}).  This means
7110 that the file itself will not be remade, and nothing else will be
7111 remade on its account.  Follow this procedure:
7113 @enumerate
7114 @item
7115 Recompile the source files that need compilation for reasons independent
7116 of the particular header file, with @samp{make -o @var{headerfile}}.
7117 If several header files are involved, use a separate @samp{-o} option
7118 for each header file.
7120 @item
7121 Touch all the object files with @samp{make -t}.
7122 @end enumerate
7124 @node Overriding, Testing, Avoiding Compilation, Running
7125 @section Overriding Variables
7126 @cindex overriding variables with arguments
7127 @cindex variables, overriding with arguments
7128 @cindex command line variables
7129 @cindex variables, command line
7131 An argument that contains @samp{=} specifies the value of a variable:
7132 @samp{@var{v}=@var{x}} sets the value of the variable @var{v} to @var{x}.
7133 If you specify a value in this way, all ordinary assignments of the same
7134 variable in the makefile are ignored; we say they have been
7135 @dfn{overridden} by the command line argument.
7137 The most common way to use this facility is to pass extra flags to
7138 compilers.  For example, in a properly written makefile, the variable
7139 @code{CFLAGS} is included in each command that runs the C compiler, so a
7140 file @file{foo.c} would be compiled something like this:
7142 @example
7143 cc -c $(CFLAGS) foo.c
7144 @end example
7146 Thus, whatever value you set for @code{CFLAGS} affects each compilation
7147 that occurs.  The makefile probably specifies the usual value for
7148 @code{CFLAGS}, like this:
7150 @example
7151 CFLAGS=-g
7152 @end example
7154 Each time you run @code{make}, you can override this value if you
7155 wish.  For example, if you say @samp{make CFLAGS='-g -O'}, each C
7156 compilation will be done with @samp{cc -c -g -O}.  (This also
7157 illustrates how you can use quoting in the shell to enclose spaces and
7158 other special characters in the value of a variable when you override
7159 it.)
7161 The variable @code{CFLAGS} is only one of many standard variables that
7162 exist just so that you can change them this way.  @xref{Implicit
7163 Variables, , Variables Used by Implicit Rules}, for a complete list.
7165 You can also program the makefile to look at additional variables of your
7166 own, giving the user the ability to control other aspects of how the
7167 makefile works by changing the variables.
7169 When you override a variable with a command argument, you can define either
7170 a recursively-expanded variable or a simply-expanded variable.  The
7171 examples shown above make a recursively-expanded variable; to make a
7172 simply-expanded variable, write @samp{:=} instead of @samp{=}.  But, unless
7173 you want to include a variable reference or function call in the
7174 @emph{value} that you specify, it makes no difference which kind of
7175 variable you create.
7177 There is one way that the makefile can change a variable that you have
7178 overridden.  This is to use the @code{override} directive, which is a line
7179 that looks like this: @samp{override @var{variable} = @var{value}}
7180 (@pxref{Override Directive, ,The @code{override} Directive}).
7182 @node Testing, Options Summary, Overriding, Running
7183 @section Testing the Compilation of a Program
7184 @cindex testing compilation
7185 @cindex compilation, testing
7187 Normally, when an error happens in executing a shell command, @code{make}
7188 gives up immediately, returning a nonzero status.  No further commands are
7189 executed for any target.  The error implies that the goal cannot be
7190 correctly remade, and @code{make} reports this as soon as it knows.
7192 When you are compiling a program that you have just changed, this is not
7193 what you want.  Instead, you would rather that @code{make} try compiling
7194 every file that can be tried, to show you as many compilation errors
7195 as possible.
7197 @cindex @code{-k}
7198 @cindex @code{--keep-going}
7199 On these occasions, you should use the @samp{-k} or
7200 @samp{--keep-going} flag.  This tells @code{make} to continue to
7201 consider the other prerequisites of the pending targets, remaking them
7202 if necessary, before it gives up and returns nonzero status.  For
7203 example, after an error in compiling one object file, @samp{make -k}
7204 will continue compiling other object files even though it already
7205 knows that linking them will be impossible.  In addition to continuing
7206 after failed shell commands, @samp{make -k} will continue as much as
7207 possible after discovering that it does not know how to make a target
7208 or prerequisite file.  This will always cause an error message, but
7209 without @samp{-k}, it is a fatal error (@pxref{Options Summary,
7210 ,Summary of Options}).@refill
7212 The usual behavior of @code{make} assumes that your purpose is to get the
7213 goals up to date; once @code{make} learns that this is impossible, it might
7214 as well report the failure immediately.  The @samp{-k} flag says that the
7215 real purpose is to test as much as possible of the changes made in the
7216 program, perhaps to find several independent problems so that you can
7217 correct them all before the next attempt to compile.  This is why Emacs'
7218 @kbd{M-x compile} command passes the @samp{-k} flag by default.
7220 @node Options Summary,  , Testing, Running
7221 @section Summary of Options
7222 @cindex options
7223 @cindex flags
7224 @cindex switches
7226 Here is a table of all the options @code{make} understands:
7228 @table @samp
7229 @item -b
7230 @cindex @code{-b}
7231 @itemx -m
7232 @cindex @code{-m}
7233 These options are ignored for compatibility with other versions of @code{make}.
7235 @item -B
7236 @cindex @code{-B}
7237 @itemx --always-make
7238 @cindex @code{--always-make}
7239 Consider all targets out-of-date.  GNU @code{make} proceeds to
7240 consider targets and their prerequisites using the normal algorithms;
7241 however, all these targets are remade, regardless of the status of
7242 their prerequisites.
7244 @item -C @var{dir}
7245 @cindex @code{-C}
7246 @itemx --directory=@var{dir}
7247 @cindex @code{--directory}
7248 Change to directory @var{dir} before reading the makefiles.  If multiple
7249 @samp{-C} options are specified, each is interpreted relative to the
7250 previous one: @samp{-C / -C etc} is equivalent to @samp{-C /etc}.
7251 This is typically used with recursive invocations of @code{make}
7252 (@pxref{Recursion, ,Recursive Use of @code{make}}).
7254 @item -d
7255 @cindex @code{-d}
7256 @c Extra blank line here makes the table look better.
7258 Print debugging information in addition to normal processing.  The
7259 debugging information says which files are being considered for
7260 remaking, which file-times are being compared and with what results,
7261 which files actually need to be remade, which implicit rules are
7262 considered and which are applied---everything interesting about how
7263 @code{make} decides what to do.  The @code{-d} option is equivalent to
7264 @samp{--debug=a} (see below).
7266 @item --debug[=@var{options}]
7267 @cindex @code{--debug}
7268 @c Extra blank line here makes the table look better.
7270 Print debugging information in addition to normal processing.  Various
7271 levels and types of output can be chosen.  With no arguments, print the
7272 ``basic'' level of debugging.  Possible arguments are below; only the
7273 first character is considered, and values must be comma- or
7274 space-separated.
7276 @table @code
7277 @item a (@i{all})
7278 All types of debugging output are enabled.  This is equivalent to using
7279 @samp{-d}.
7281 @item b (@i{basic})
7282 Basic debugging prints each target that was found to be out-of-date, and
7283 whether the build was successful or not.
7285 @item v (@i{verbose})
7286 A level above @samp{basic}; includes messages about which makefiles were
7287 parsed, prerequisites that did not need to be rebuilt, etc.  This option
7288 also enables @samp{basic} messages.
7290 @item i (@i{implicit})
7291 Prints messages describing the implicit rule searches for each target.
7292 This option also enables @samp{basic} messages.
7294 @item j (@i{jobs})
7295 Prints messages giving details on the invocation of specific subcommands.
7297 @item m (@i{makefile})
7298 By default, the above messages are not enabled while trying to remake
7299 the makefiles.  This option enables messages while rebuilding makefiles,
7300 too.  Note that the @samp{all} option does enable this option.  This
7301 option also enables @samp{basic} messages.
7302 @end table
7304 @item -e
7305 @cindex @code{-e}
7306 @itemx --environment-overrides
7307 @cindex @code{--environment-overrides}
7308 Give variables taken from the environment precedence
7309 over variables from makefiles.
7310 @xref{Environment, ,Variables from the Environment}.
7312 @item -f @var{file}
7313 @cindex @code{-f}
7314 @itemx --file=@var{file}
7315 @cindex @code{--file}
7316 @itemx --makefile=@var{file}
7317 @cindex @code{--makefile}
7318 Read the file named @var{file} as a makefile.
7319 @xref{Makefiles, ,Writing Makefiles}.
7321 @item -h
7322 @cindex @code{-h}
7323 @itemx --help
7324 @cindex @code{--help}
7325 @c Extra blank line here makes the table look better.
7327 Remind you of the options that @code{make} understands and then exit.
7329 @item -i
7330 @cindex @code{-i}
7331 @itemx --ignore-errors
7332 @cindex @code{--ignore-errors}
7333 Ignore all errors in commands executed to remake files.
7334 @xref{Errors, ,Errors in Commands}.
7336 @item -I @var{dir}
7337 @cindex @code{-I}
7338 @itemx --include-dir=@var{dir}
7339 @cindex @code{--include-dir}
7340 Specifies a directory @var{dir} to search for included makefiles.
7341 @xref{Include, ,Including Other Makefiles}.  If several @samp{-I}
7342 options are used to specify several directories, the directories are
7343 searched in the order specified.
7345 @item -j [@var{jobs}]
7346 @cindex @code{-j}
7347 @itemx --jobs[=@var{jobs}]
7348 @cindex @code{--jobs}
7349 Specifies the number of jobs (commands) to run simultaneously.  With no
7350 argument, @code{make} runs as many jobs simultaneously as possible.  If
7351 there is more than one @samp{-j} option, the last one is effective.
7352 @xref{Parallel, ,Parallel Execution},
7353 for more information on how commands are run.
7354 Note that this option is ignored on MS-DOS.
7356 @item -k
7357 @cindex @code{-k}
7358 @itemx --keep-going
7359 @cindex @code{--keep-going}
7360 Continue as much as possible after an error.  While the target that
7361 failed, and those that depend on it, cannot be remade, the other
7362 prerequisites of these targets can be processed all the same.
7363 @xref{Testing, ,Testing the Compilation of a Program}.
7365 @item -l [@var{load}]
7366 @cindex @code{-l}
7367 @itemx --load-average[=@var{load}]
7368 @cindex @code{--load-average}
7369 @itemx --max-load[=@var{load}]
7370 @cindex @code{--max-load}
7371 Specifies that no new jobs (commands) should be started if there are
7372 other jobs running and the load average is at least @var{load} (a
7373 floating-point number).  With no argument, removes a previous load
7374 limit.  @xref{Parallel, ,Parallel Execution}.
7376 @item -L
7377 @cindex @code{-L}
7378 @itemx --check-symlink-times
7379 @cindex @code{--check-symlink-times}
7380 On systems that support symbolic links, this option causes @code{make}
7381 to consider the timestamps on any symbolic links in addition to the
7382 timestamp on the file referenced by those links.  When this option is
7383 provided, the most recent timestamp among the file and the symbolic
7384 links is taken as the modification time for this target file.
7386 @item -n
7387 @cindex @code{-n}
7388 @itemx --just-print
7389 @cindex @code{--just-print}
7390 @itemx --dry-run
7391 @cindex @code{--dry-run}
7392 @itemx --recon
7393 @cindex @code{--recon}
7394 @c Extra blank line here makes the table look better.
7396 Print the commands that would be executed, but do not execute them.
7397 @xref{Instead of Execution, ,Instead of Executing the Commands}.
7399 @item -o @var{file}
7400 @cindex @code{-o}
7401 @itemx --old-file=@var{file}
7402 @cindex @code{--old-file}
7403 @itemx --assume-old=@var{file}
7404 @cindex @code{--assume-old}
7405 Do not remake the file @var{file} even if it is older than its
7406 prerequisites, and do not remake anything on account of changes in
7407 @var{file}.  Essentially the file is treated as very old and its rules
7408 are ignored.  @xref{Avoiding Compilation, ,Avoiding Recompilation of
7409 Some Files}.@refill
7411 @item -p
7412 @cindex @code{-p}
7413 @itemx --print-data-base
7414 @cindex @code{--print-data-base}
7415 @cindex data base of @code{make} rules
7416 @cindex predefined rules and variables, printing
7417 Print the data base (rules and variable values) that results from
7418 reading the makefiles; then execute as usual or as otherwise specified.
7419 This also prints the version information given by the @samp{-v} switch
7420 (see below).  To print the data base without trying to remake any files,
7421 use @w{@samp{make -qp}}.  To print the data base of predefined rules and
7422 variables, use @w{@samp{make -p -f /dev/null}}.  The data base output
7423 contains filename and linenumber information for command and variable
7424 definitions, so it can be a useful debugging tool in complex environments.
7426 @item -q
7427 @cindex @code{-q}
7428 @itemx --question
7429 @cindex @code{--question}
7430 ``Question mode''.  Do not run any commands, or print anything; just
7431 return an exit status that is zero if the specified targets are already
7432 up to date, one if any remaking is required, or two if an error is
7433 encountered.  @xref{Instead of Execution, ,Instead of Executing the
7434 Commands}.@refill
7436 @item -r
7437 @cindex @code{-r}
7438 @itemx --no-builtin-rules
7439 @cindex @code{--no-builtin-rules}
7440 Eliminate use of the built-in implicit rules (@pxref{Implicit Rules,
7441 ,Using Implicit Rules}).  You can still define your own by writing
7442 pattern rules (@pxref{Pattern Rules, ,Defining and Redefining Pattern
7443 Rules}).  The @samp{-r} option also clears out the default list of
7444 suffixes for suffix rules (@pxref{Suffix Rules, ,Old-Fashioned Suffix
7445 Rules}).  But you can still define your own suffixes with a rule for
7446 @code{.SUFFIXES}, and then define your own suffix rules.  Note that only
7447 @emph{rules} are affected by the @code{-r} option; default variables
7448 remain in effect (@pxref{Implicit Variables, ,Variables Used by Implicit
7449 Rules}); see the @samp{-R} option below.
7451 @item -R
7452 @cindex @code{-R}
7453 @itemx --no-builtin-variables
7454 @cindex @code{--no-builtin-variables}
7455 Eliminate use of the built-in rule-specific variables (@pxref{Implicit
7456 Variables, ,Variables Used by Implicit Rules}).  You can still define
7457 your own, of course.  The @samp{-R} option also automatically enables
7458 the @samp{-r} option (see above), since it doesn't make sense to have
7459 implicit rules without any definitions for the variables that they use.
7461 @item -s
7462 @cindex @code{-s}
7463 @itemx --silent
7464 @cindex @code{--silent}
7465 @itemx --quiet
7466 @cindex @code{--quiet}
7467 @c Extra blank line here makes the table look better.
7469 Silent operation; do not print the commands as they are executed.
7470 @xref{Echoing, ,Command Echoing}.
7472 @item -S
7473 @cindex @code{-S}
7474 @itemx --no-keep-going
7475 @cindex @code{--no-keep-going}
7476 @itemx --stop
7477 @cindex @code{--stop}
7478 @c Extra blank line here makes the table look better.
7480 Cancel the effect of the @samp{-k} option.  This is never necessary
7481 except in a recursive @code{make} where @samp{-k} might be inherited
7482 from the top-level @code{make} via @code{MAKEFLAGS}
7483 (@pxref{Recursion, ,Recursive Use of @code{make}})
7484 or if you set @samp{-k} in @code{MAKEFLAGS} in your environment.@refill
7486 @item -t
7487 @cindex @code{-t}
7488 @itemx --touch
7489 @cindex @code{--touch}
7490 @c Extra blank line here makes the table look better.
7492 Touch files (mark them up to date without really changing them)
7493 instead of running their commands.  This is used to pretend that the
7494 commands were done, in order to fool future invocations of
7495 @code{make}.  @xref{Instead of Execution, ,Instead of Executing the Commands}.
7497 @item -v
7498 @cindex @code{-v}
7499 @itemx --version
7500 @cindex @code{--version}
7501 Print the version of the @code{make} program plus a copyright, a list
7502 of authors, and a notice that there is no warranty; then exit.
7504 @item -w
7505 @cindex @code{-w}
7506 @itemx --print-directory
7507 @cindex @code{--print-directory}
7508 Print a message containing the working directory both before and after
7509 executing the makefile.  This may be useful for tracking down errors
7510 from complicated nests of recursive @code{make} commands.
7511 @xref{Recursion, ,Recursive Use of @code{make}}.  (In practice, you
7512 rarely need to specify this option since @samp{make} does it for you;
7513 see @ref{-w Option, ,The @samp{--print-directory} Option}.)
7515 @itemx --no-print-directory
7516 @cindex @code{--no-print-directory}
7517 Disable printing of the working directory under @code{-w}.
7518 This option is useful when @code{-w} is turned on automatically,
7519 but you do not want to see the extra messages.
7520 @xref{-w Option, ,The @samp{--print-directory} Option}.
7522 @item -W @var{file}
7523 @cindex @code{-W}
7524 @itemx --what-if=@var{file}
7525 @cindex @code{--what-if}
7526 @itemx --new-file=@var{file}
7527 @cindex @code{--new-file}
7528 @itemx --assume-new=@var{file}
7529 @cindex @code{--assume-new}
7530 Pretend that the target @var{file} has just been modified.  When used
7531 with the @samp{-n} flag, this shows you what would happen if you were
7532 to modify that file.  Without @samp{-n}, it is almost the same as
7533 running a @code{touch} command on the given file before running
7534 @code{make}, except that the modification time is changed only in the
7535 imagination of @code{make}.
7536 @xref{Instead of Execution, ,Instead of Executing the Commands}.
7538 @item --warn-undefined-variables
7539 @cindex @code{--warn-undefined-variables}
7540 @cindex variables, warning for undefined
7541 @cindex undefined variables, warning message
7542 Issue a warning message whenever @code{make} sees a reference to an
7543 undefined variable.  This can be helpful when you are trying to debug
7544 makefiles which use variables in complex ways.
7545 @end table
7547 @node Implicit Rules, Archives, Running, Top
7548 @chapter Using Implicit Rules
7549 @cindex implicit rule
7550 @cindex rule, implicit
7552 Certain standard ways of remaking target files are used very often.  For
7553 example, one customary way to make an object file is from a C source file
7554 using the C compiler, @code{cc}.
7556 @dfn{Implicit rules} tell @code{make} how to use customary techniques so
7557 that you do not have to specify them in detail when you want to use
7558 them.  For example, there is an implicit rule for C compilation.  File
7559 names determine which implicit rules are run.  For example, C
7560 compilation typically takes a @file{.c} file and makes a @file{.o} file.
7561 So @code{make} applies the implicit rule for C compilation when it sees
7562 this combination of file name endings.@refill
7564 A chain of implicit rules can apply in sequence; for example, @code{make}
7565 will remake a @file{.o} file from a @file{.y} file by way of a @file{.c} file.
7566 @iftex
7567 @xref{Chained Rules, ,Chains of Implicit Rules}.
7568 @end iftex
7570 The built-in implicit rules use several variables in their commands so
7571 that, by changing the values of the variables, you can change the way the
7572 implicit rule works.  For example, the variable @code{CFLAGS} controls the
7573 flags given to the C compiler by the implicit rule for C compilation.
7574 @iftex
7575 @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
7576 @end iftex
7578 You can define your own implicit rules by writing @dfn{pattern rules}.
7579 @iftex
7580 @xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.
7581 @end iftex
7583 @dfn{Suffix rules} are a more limited way to define implicit rules.
7584 Pattern rules are more general and clearer, but suffix rules are
7585 retained for compatibility.
7586 @iftex
7587 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
7588 @end iftex
7590 @menu
7591 * Using Implicit::              How to use an existing implicit rule
7592                                   to get the commands for updating a file.
7593 * Catalogue of Rules::          A list of built-in implicit rules.
7594 * Implicit Variables::          How to change what predefined rules do.
7595 * Chained Rules::               How to use a chain of implicit rules.
7596 * Pattern Rules::               How to define new implicit rules.
7597 * Last Resort::                 How to define commands for rules which
7598                                 cannot find any.
7599 * Suffix Rules::                The old-fashioned style of implicit rule.
7600 * Implicit Rule Search::        The precise algorithm for applying
7601                                   implicit rules.
7602 @end menu
7604 @node Using Implicit, Catalogue of Rules, Implicit Rules, Implicit Rules
7605 @section Using Implicit Rules
7606 @cindex implicit rule, how to use
7607 @cindex rule, implicit, how to use
7609 To allow @code{make} to find a customary method for updating a target file,
7610 all you have to do is refrain from specifying commands yourself.  Either
7611 write a rule with no command lines, or don't write a rule at all.  Then
7612 @code{make} will figure out which implicit rule to use based on which
7613 kind of source file exists or can be made.
7615 For example, suppose the makefile looks like this:
7617 @example
7618 foo : foo.o bar.o
7619         cc -o foo foo.o bar.o $(CFLAGS) $(LDFLAGS)
7620 @end example
7622 @noindent
7623 Because you mention @file{foo.o} but do not give a rule for it, @code{make}
7624 will automatically look for an implicit rule that tells how to update it.
7625 This happens whether or not the file @file{foo.o} currently exists.
7627 If an implicit rule is found, it can supply both commands and one or
7628 more prerequisites (the source files).  You would want to write a rule
7629 for @file{foo.o} with no command lines if you need to specify additional
7630 prerequisites, such as header files, that the implicit rule cannot
7631 supply.
7633 Each implicit rule has a target pattern and prerequisite patterns.  There may
7634 be many implicit rules with the same target pattern.  For example, numerous
7635 rules make @samp{.o} files: one, from a @samp{.c} file with the C compiler;
7636 another, from a @samp{.p} file with the Pascal compiler; and so on.  The rule
7637 that actually applies is the one whose prerequisites exist or can be made.
7638 So, if you have a file @file{foo.c}, @code{make} will run the C compiler;
7639 otherwise, if you have a file @file{foo.p}, @code{make} will run the Pascal
7640 compiler; and so on.
7642 Of course, when you write the makefile, you know which implicit rule you
7643 want @code{make} to use, and you know it will choose that one because you
7644 know which possible prerequisite files are supposed to exist.
7645 @xref{Catalogue of Rules, ,Catalogue of Implicit Rules},
7646 for a catalogue of all the predefined implicit rules.
7648 Above, we said an implicit rule applies if the required prerequisites ``exist
7649 or can be made''.  A file ``can be made'' if it is mentioned explicitly in
7650 the makefile as a target or a prerequisite, or if an implicit rule can be
7651 recursively found for how to make it.  When an implicit prerequisite is the
7652 result of another implicit rule, we say that @dfn{chaining} is occurring.
7653 @xref{Chained Rules, ,Chains of Implicit Rules}.
7655 In general, @code{make} searches for an implicit rule for each target, and
7656 for each double-colon rule, that has no commands.  A file that is mentioned
7657 only as a prerequisite is considered a target whose rule specifies nothing,
7658 so implicit rule search happens for it.  @xref{Implicit Rule Search, ,Implicit Rule Search Algorithm}, for the
7659 details of how the search is done.
7661 Note that explicit prerequisites do not influence implicit rule search.
7662 For example, consider this explicit rule:
7664 @example
7665 foo.o: foo.p
7666 @end example
7668 @noindent
7669 The prerequisite on @file{foo.p} does not necessarily mean that
7670 @code{make} will remake @file{foo.o} according to the implicit rule to
7671 make an object file, a @file{.o} file, from a Pascal source file, a
7672 @file{.p} file.  For example, if @file{foo.c} also exists, the implicit
7673 rule to make an object file from a C source file is used instead,
7674 because it appears before the Pascal rule in the list of predefined
7675 implicit rules (@pxref{Catalogue of Rules, , Catalogue of Implicit
7676 Rules}).
7678 If you do not want an implicit rule to be used for a target that has no
7679 commands, you can give that target empty commands by writing a semicolon
7680 (@pxref{Empty Commands, ,Defining Empty Commands}).
7682 @node Catalogue of Rules, Implicit Variables, Using Implicit, Implicit Rules
7683 @section Catalogue of Implicit Rules
7684 @cindex implicit rule, predefined
7685 @cindex rule, implicit, predefined
7687 Here is a catalogue of predefined implicit rules which are always
7688 available unless the makefile explicitly overrides or cancels them.
7689 @xref{Canceling Rules, ,Canceling Implicit Rules}, for information on
7690 canceling or overriding an implicit rule.  The @samp{-r} or
7691 @samp{--no-builtin-rules} option cancels all predefined rules.
7693 Not all of these rules will always be defined, even when the @samp{-r}
7694 option is not given.  Many of the predefined implicit rules are
7695 implemented in @code{make} as suffix rules, so which ones will be
7696 defined depends on the @dfn{suffix list} (the list of prerequisites of
7697 the special target @code{.SUFFIXES}).  The default suffix list is:
7698 @code{.out}, @code{.a}, @code{.ln}, @code{.o}, @code{.c}, @code{.cc},
7699 @code{.C}, @code{.p}, @code{.f}, @code{.F}, @code{.r}, @code{.y},
7700 @code{.l}, @code{.s}, @code{.S}, @code{.mod}, @code{.sym}, @code{.def},
7701 @code{.h}, @code{.info}, @code{.dvi}, @code{.tex}, @code{.texinfo},
7702 @code{.texi}, @code{.txinfo}, @code{.w}, @code{.ch} @code{.web},
7703 @code{.sh}, @code{.elc}, @code{.el}.  All of the implicit rules
7704 described below whose prerequisites have one of these suffixes are
7705 actually suffix rules.  If you modify the suffix list, the only
7706 predefined suffix rules in effect will be those named by one or two of
7707 the suffixes that are on the list you specify; rules whose suffixes fail
7708 to be on the list are disabled.  @xref{Suffix Rules, ,Old-Fashioned
7709 Suffix Rules}, for full details on suffix rules.
7711 @table @asis
7712 @item Compiling C programs
7713 @cindex C, rule to compile
7714 @pindex cc
7715 @pindex gcc
7716 @pindex .o
7717 @pindex .c
7718 @file{@var{n}.o} is made automatically from @file{@var{n}.c} with
7719 a command of the form @samp{$(CC) -c $(CPPFLAGS) $(CFLAGS)}.@refill
7721 @item Compiling C++ programs
7722 @cindex C++, rule to compile
7723 @pindex g++
7724 @pindex .C
7725 @pindex .cc
7726 @file{@var{n}.o} is made automatically from @file{@var{n}.cc} or
7727 @file{@var{n}.C} with a command of the form @samp{$(CXX) -c $(CPPFLAGS)
7728 $(CXXFLAGS)}.  We encourage you to use the suffix @samp{.cc} for C++
7729 source files instead of @samp{.C}.@refill
7731 @item Compiling Pascal programs
7732 @cindex Pascal, rule to compile
7733 @pindex pc
7734 @pindex .p
7735 @file{@var{n}.o} is made automatically from @file{@var{n}.p}
7736 with the command @samp{$(PC) -c $(PFLAGS)}.@refill
7738 @item Compiling Fortran and Ratfor programs
7739 @cindex Fortran, rule to compile
7740 @cindex Ratfor, rule to compile
7741 @pindex f77
7742 @pindex .f
7743 @pindex .r
7744 @pindex .F
7745 @file{@var{n}.o} is made automatically from @file{@var{n}.r},
7746 @file{@var{n}.F} or @file{@var{n}.f} by running the
7747 Fortran compiler.  The precise command used is as follows:@refill
7749 @table @samp
7750 @item .f
7751 @samp{$(FC) -c $(FFLAGS)}.
7752 @item .F
7753 @samp{$(FC) -c $(FFLAGS) $(CPPFLAGS)}.
7754 @item .r
7755 @samp{$(FC) -c $(FFLAGS) $(RFLAGS)}.
7756 @end table
7758 @item Preprocessing Fortran and Ratfor programs
7759 @file{@var{n}.f} is made automatically from @file{@var{n}.r} or
7760 @file{@var{n}.F}.  This rule runs just the preprocessor to convert a
7761 Ratfor or preprocessable Fortran program into a strict Fortran
7762 program.  The precise command used is as follows:@refill
7764 @table @samp
7765 @item .F
7766 @samp{$(FC) -F $(CPPFLAGS) $(FFLAGS)}.
7767 @item .r
7768 @samp{$(FC) -F $(FFLAGS) $(RFLAGS)}.
7769 @end table
7771 @item Compiling Modula-2 programs
7772 @cindex Modula-2, rule to compile
7773 @pindex m2c
7774 @pindex .sym
7775 @pindex .def
7776 @pindex .mod
7777 @file{@var{n}.sym} is made from @file{@var{n}.def} with a command
7778 of the form @samp{$(M2C) $(M2FLAGS) $(DEFFLAGS)}.  @file{@var{n}.o}
7779 is made from @file{@var{n}.mod}; the form is:
7780 @w{@samp{$(M2C) $(M2FLAGS) $(MODFLAGS)}}.@refill
7782 @need 1200
7783 @item Assembling and preprocessing assembler programs
7784 @cindex assembly, rule to compile
7785 @pindex as
7786 @pindex .s
7787 @file{@var{n}.o} is made automatically from @file{@var{n}.s} by
7788 running the assembler, @code{as}.  The precise command is
7789 @samp{$(AS) $(ASFLAGS)}.@refill
7791 @pindex .S
7792 @file{@var{n}.s} is made automatically from @file{@var{n}.S} by
7793 running the C preprocessor, @code{cpp}.  The precise command is
7794 @w{@samp{$(CPP) $(CPPFLAGS)}}.
7796 @item Linking a single object file
7797 @cindex linking, predefined rule for
7798 @pindex ld
7799 @pindex .o
7800 @file{@var{n}} is made automatically from @file{@var{n}.o} by running
7801 the linker (usually called @code{ld}) via the C compiler.  The precise
7802 command used is @w{@samp{$(CC) $(LDFLAGS) @var{n}.o $(LOADLIBES) $(LDLIBS)}}.
7804 This rule does the right thing for a simple program with only one
7805 source file.  It will also do the right thing if there are multiple
7806 object files (presumably coming from various other source files), one
7807 of which has a name matching that of the executable file.  Thus,
7809 @example
7810 x: y.o z.o
7811 @end example
7813 @noindent
7814 when @file{x.c}, @file{y.c} and @file{z.c} all exist will execute:
7816 @example
7817 @group
7818 cc -c x.c -o x.o
7819 cc -c y.c -o y.o
7820 cc -c z.c -o z.o
7821 cc x.o y.o z.o -o x
7822 rm -f x.o
7823 rm -f y.o
7824 rm -f z.o
7825 @end group
7826 @end example
7828 @noindent
7829 In more complicated cases, such as when there is no object file whose
7830 name derives from the executable file name, you must write an explicit
7831 command for linking.
7833 Each kind of file automatically made into @samp{.o} object files will
7834 be automatically linked by using the compiler (@samp{$(CC)},
7835 @samp{$(FC)} or @samp{$(PC)}; the C compiler @samp{$(CC)} is used to
7836 assemble @samp{.s} files) without the @samp{-c} option.  This could be
7837 done by using the @samp{.o} object files as intermediates, but it is
7838 faster to do the compiling and linking in one step, so that's how it's
7839 done.@refill
7841 @item Yacc for C programs
7842 @pindex yacc
7843 @cindex Yacc, rule to run
7844 @pindex .y
7845 @file{@var{n}.c} is made automatically from @file{@var{n}.y} by
7846 running Yacc with the command @samp{$(YACC) $(YFLAGS)}.
7848 @item Lex for C programs
7849 @pindex lex
7850 @cindex Lex, rule to run
7851 @pindex .l
7852 @file{@var{n}.c} is made automatically from @file{@var{n}.l} by
7853 running Lex.  The actual command is @samp{$(LEX) $(LFLAGS)}.
7855 @item Lex for Ratfor programs
7856 @file{@var{n}.r} is made automatically from @file{@var{n}.l} by
7857 running Lex.  The actual command is @samp{$(LEX) $(LFLAGS)}.
7859 The convention of using the same suffix @samp{.l} for all Lex files
7860 regardless of whether they produce C code or Ratfor code makes it
7861 impossible for @code{make} to determine automatically which of the two
7862 languages you are using in any particular case.  If @code{make} is
7863 called upon to remake an object file from a @samp{.l} file, it must
7864 guess which compiler to use.  It will guess the C compiler, because
7865 that is more common.  If you are using Ratfor, make sure @code{make}
7866 knows this by mentioning @file{@var{n}.r} in the makefile.  Or, if you
7867 are using Ratfor exclusively, with no C files, remove @samp{.c} from
7868 the list of implicit rule suffixes with:@refill
7870 @example
7871 @group
7872 .SUFFIXES:
7873 .SUFFIXES: .o .r .f .l @dots{}
7874 @end group
7875 @end example
7877 @item Making Lint Libraries from C, Yacc, or Lex programs
7878 @pindex lint
7879 @cindex @code{lint}, rule to run
7880 @pindex .ln
7881 @file{@var{n}.ln} is made from @file{@var{n}.c} by running @code{lint}.
7882 The precise command is @w{@samp{$(LINT) $(LINTFLAGS) $(CPPFLAGS) -i}}.
7883 The same command is used on the C code produced from
7884 @file{@var{n}.y} or @file{@var{n}.l}.@refill
7886 @item @TeX{} and Web
7887 @cindex @TeX{}, rule to run
7888 @cindex Web, rule to run
7889 @pindex tex
7890 @pindex cweave
7891 @pindex weave
7892 @pindex tangle
7893 @pindex ctangle
7894 @pindex .dvi
7895 @pindex .tex
7896 @pindex .web
7897 @pindex .w
7898 @pindex .ch
7899 @file{@var{n}.dvi} is made from @file{@var{n}.tex} with the command
7900 @samp{$(TEX)}.  @file{@var{n}.tex} is made from @file{@var{n}.web} with
7901 @samp{$(WEAVE)}, or from @file{@var{n}.w} (and from @file{@var{n}.ch} if
7902 it exists or can be made) with @samp{$(CWEAVE)}.  @file{@var{n}.p} is
7903 made from @file{@var{n}.web} with @samp{$(TANGLE)} and @file{@var{n}.c}
7904 is made from @file{@var{n}.w} (and from @file{@var{n}.ch} if it exists
7905 or can be made) with @samp{$(CTANGLE)}.@refill
7907 @item Texinfo and Info
7908 @cindex Texinfo, rule to format
7909 @cindex Info, rule to format
7910 @pindex texi2dvi
7911 @pindex makeinfo
7912 @pindex .texinfo
7913 @pindex .info
7914 @pindex .texi
7915 @pindex .txinfo
7916 @file{@var{n}.dvi} is made from @file{@var{n}.texinfo},
7917 @file{@var{n}.texi}, or @file{@var{n}.txinfo}, with the command
7918 @w{@samp{$(TEXI2DVI) $(TEXI2DVI_FLAGS)}}.  @file{@var{n}.info} is made from
7919 @file{@var{n}.texinfo}, @file{@var{n}.texi}, or @file{@var{n}.txinfo}, with
7920 the command @w{@samp{$(MAKEINFO) $(MAKEINFO_FLAGS)}}.
7922 @item RCS
7923 @cindex RCS, rule to extract from
7924 @pindex co
7925 @pindex ,v @r{(RCS file extension)}
7926 Any file @file{@var{n}} is extracted if necessary from an RCS file
7927 named either @file{@var{n},v} or @file{RCS/@var{n},v}.  The precise
7928 command used is @w{@samp{$(CO) $(COFLAGS)}}.  @file{@var{n}} will not be
7929 extracted from RCS if it already exists, even if the RCS file is
7930 newer.  The rules for RCS are terminal
7931 (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}),
7932 so RCS files cannot be generated from another source; they must
7933 actually exist.@refill
7935 @item SCCS
7936 @cindex SCCS, rule to extract from
7937 @pindex get
7938 @pindex s. @r{(SCCS file prefix)}
7939 Any file @file{@var{n}} is extracted if necessary from an SCCS file
7940 named either @file{s.@var{n}} or @file{SCCS/s.@var{n}}.  The precise
7941 command used is @w{@samp{$(GET) $(GFLAGS)}}.  The rules for SCCS are
7942 terminal (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}),
7943 so SCCS files cannot be generated from another source; they must
7944 actually exist.@refill
7946 @pindex .sh
7947 For the benefit of SCCS, a file @file{@var{n}} is copied from
7948 @file{@var{n}.sh} and made executable (by everyone).  This is for
7949 shell scripts that are checked into SCCS.  Since RCS preserves the
7950 execution permission of a file, you do not need to use this feature
7951 with RCS.@refill
7953 We recommend that you avoid using of SCCS.  RCS is widely held to be
7954 superior, and is also free.  By choosing free software in place of
7955 comparable (or inferior) proprietary software, you support the free
7956 software movement.
7957 @end table
7959 Usually, you want to change only the variables listed in the table
7960 above, which are documented in the following section.
7962 However, the commands in built-in implicit rules actually use
7963 variables such as @code{COMPILE.c}, @code{LINK.p}, and
7964 @code{PREPROCESS.S}, whose values contain the commands listed above.
7966 @code{make} follows the convention that the rule to compile a
7967 @file{.@var{x}} source file uses the variable @code{COMPILE.@var{x}}.
7968 Similarly, the rule to produce an executable from a @file{.@var{x}}
7969 file uses @code{LINK.@var{x}}; and the rule to preprocess a
7970 @file{.@var{x}} file uses @code{PREPROCESS.@var{x}}.
7972 @vindex OUTPUT_OPTION
7973 Every rule that produces an object file uses the variable
7974 @code{OUTPUT_OPTION}.  @code{make} defines this variable either to
7975 contain @samp{-o $@@}, or to be empty, depending on a compile-time
7976 option.  You need the @samp{-o} option to ensure that the output goes
7977 into the right file when the source file is in a different directory,
7978 as when using @code{VPATH} (@pxref{Directory Search}).  However,
7979 compilers on some systems do not accept a @samp{-o} switch for object
7980 files.  If you use such a system, and use @code{VPATH}, some
7981 compilations will put their output in the wrong place.
7982 A possible workaround for this problem is to give @code{OUTPUT_OPTION}
7983 the value @w{@samp{; mv $*.o $@@}}.
7985 @node Implicit Variables, Chained Rules, Catalogue of Rules, Implicit Rules
7986 @section Variables Used by Implicit Rules
7987 @cindex flags for compilers
7989 The commands in built-in implicit rules make liberal use of certain
7990 predefined variables.  You can alter these variables in the makefile,
7991 with arguments to @code{make}, or in the environment to alter how the
7992 implicit rules work without redefining the rules themselves.  You can
7993 cancel all variables used by implicit rules with the @samp{-R} or
7994 @samp{--no-builtin-variables} option.
7996 For example, the command used to compile a C source file actually says
7997 @samp{$(CC) -c $(CFLAGS) $(CPPFLAGS)}.  The default values of the variables
7998 used are @samp{cc} and nothing, resulting in the command @samp{cc -c}.  By
7999 redefining @samp{CC} to @samp{ncc}, you could cause @samp{ncc} to be
8000 used for all C compilations performed by the implicit rule.  By redefining
8001 @samp{CFLAGS} to be @samp{-g}, you could pass the @samp{-g} option to
8002 each compilation.  @emph{All} implicit rules that do C compilation use
8003 @samp{$(CC)} to get the program name for the compiler and @emph{all}
8004 include @samp{$(CFLAGS)} among the arguments given to the compiler.@refill
8006 The variables used in implicit rules fall into two classes: those that are
8007 names of programs (like @code{CC}) and those that contain arguments for the
8008 programs (like @code{CFLAGS}).  (The ``name of a program'' may also contain
8009 some command arguments, but it must start with an actual executable program
8010 name.)  If a variable value contains more than one argument, separate them
8011 with spaces.
8013 Here is a table of variables used as names of programs in built-in rules:
8015 @table @code
8016 @item AR
8017 @vindex AR
8018 Archive-maintaining program; default @samp{ar}.
8019 @pindex ar
8021 @item AS
8022 @vindex AS
8023 Program for doing assembly; default @samp{as}.
8024 @pindex as
8026 @item CC
8027 @vindex CC
8028 Program for compiling C programs; default @samp{cc}.
8029 @pindex cc
8031 @item CXX
8032 @vindex CXX
8033 Program for compiling C++ programs; default @samp{g++}.
8034 @pindex g++
8036 @item CO
8037 @vindex CO
8038 Program for extracting a file from RCS; default @samp{co}.
8039 @pindex co
8041 @item CPP
8042 @vindex CPP
8043 Program for running the C preprocessor, with results to standard output;
8044 default @samp{$(CC) -E}.
8046 @item FC
8047 @vindex FC
8048 Program for compiling or preprocessing Fortran and Ratfor programs;
8049 default @samp{f77}.
8050 @pindex f77
8052 @item GET
8053 @vindex GET
8054 Program for extracting a file from SCCS; default @samp{get}.
8055 @pindex get
8057 @item LEX
8058 @vindex LEX
8059 Program to use to turn Lex grammars into C programs or Ratfor programs;
8060 default @samp{lex}.
8061 @pindex lex
8063 @item PC
8064 @vindex PC
8065 Program for compiling Pascal programs; default @samp{pc}.
8066 @pindex pc
8068 @item YACC
8069 @vindex YACC
8070 Program to use to turn Yacc grammars into C programs; default @samp{yacc}.
8071 @pindex yacc
8073 @item YACCR
8074 @vindex YACCR
8075 Program to use to turn Yacc grammars into Ratfor
8076 programs; default @samp{yacc -r}.
8078 @item MAKEINFO
8079 @vindex MAKEINFO
8080 Program to convert a Texinfo source file into an Info file; default
8081 @samp{makeinfo}.
8082 @pindex makeinfo
8084 @item TEX
8085 @vindex TEX
8086 Program to make @TeX{} @sc{dvi} files from @TeX{} source;
8087 default @samp{tex}.
8088 @pindex tex
8090 @item TEXI2DVI
8091 @vindex TEXI2DVI
8092 Program to make @TeX{} @sc{dvi} files from Texinfo source;
8093 default @samp{texi2dvi}.
8094 @pindex texi2dvi
8096 @item WEAVE
8097 @vindex WEAVE
8098 Program to translate Web into @TeX{}; default @samp{weave}.
8099 @pindex weave
8101 @item CWEAVE
8102 @vindex CWEAVE
8103 Program to translate C Web into @TeX{}; default @samp{cweave}.
8104 @pindex cweave
8106 @item TANGLE
8107 @vindex TANGLE
8108 Program to translate Web into Pascal; default @samp{tangle}.
8109 @pindex tangle
8111 @item CTANGLE
8112 @vindex CTANGLE
8113 Program to translate C Web into C; default @samp{ctangle}.
8114 @pindex ctangle
8116 @item RM
8117 @vindex RM
8118 Command to remove a file; default @samp{rm -f}.
8119 @pindex rm
8120 @end table
8122 Here is a table of variables whose values are additional arguments for the
8123 programs above.  The default values for all of these is the empty
8124 string, unless otherwise noted.
8126 @table @code
8127 @item ARFLAGS
8128 @vindex ARFLAGS
8129 Flags to give the archive-maintaining program; default @samp{rv}.
8131 @item ASFLAGS
8132 @vindex ASFLAGS
8133 Extra flags to give to the assembler (when explicitly
8134 invoked on a @samp{.s} or @samp{.S} file).
8136 @item CFLAGS
8137 @vindex CFLAGS
8138 Extra flags to give to the C compiler.
8140 @item CXXFLAGS
8141 @vindex CXXFLAGS
8142 Extra flags to give to the C++ compiler.
8144 @item COFLAGS
8145 @vindex COFLAGS
8146 Extra flags to give to the RCS @code{co} program.
8148 @item CPPFLAGS
8149 @vindex CPPFLAGS
8150 Extra flags to give to the C preprocessor and programs
8151 that use it (the C and Fortran compilers).
8153 @item FFLAGS
8154 @vindex FFLAGS
8155 Extra flags to give to the Fortran compiler.
8157 @item GFLAGS
8158 @vindex GFLAGS
8159 Extra flags to give to the SCCS @code{get} program.
8161 @item LDFLAGS
8162 @vindex LDFLAGS
8163 Extra flags to give to compilers when they are
8164 supposed to invoke the linker, @samp{ld}.
8166 @item LFLAGS
8167 @vindex LFLAGS
8168 Extra flags to give to Lex.
8170 @item PFLAGS
8171 @vindex PFLAGS
8172 Extra flags to give to the Pascal compiler.
8174 @item RFLAGS
8175 @vindex RFLAGS
8176 Extra flags to give to the Fortran compiler for Ratfor programs.
8178 @item YFLAGS
8179 @vindex YFLAGS
8180 Extra flags to give to Yacc.
8181 @end table
8183 @node Chained Rules, Pattern Rules, Implicit Variables, Implicit Rules
8184 @section Chains of Implicit Rules
8186 @cindex chains of rules
8187 @cindex rule, implicit, chains of
8188 Sometimes a file can be made by a sequence of implicit rules.  For example,
8189 a file @file{@var{n}.o} could be made from @file{@var{n}.y} by running
8190 first Yacc and then @code{cc}.  Such a sequence is called a @dfn{chain}.
8192 If the file @file{@var{n}.c} exists, or is mentioned in the makefile, no
8193 special searching is required: @code{make} finds that the object file can
8194 be made by C compilation from @file{@var{n}.c}; later on, when considering
8195 how to make @file{@var{n}.c}, the rule for running Yacc is
8196 used.  Ultimately both @file{@var{n}.c} and @file{@var{n}.o} are
8197 updated.@refill
8199 @cindex intermediate files
8200 @cindex files, intermediate
8201 However, even if @file{@var{n}.c} does not exist and is not mentioned,
8202 @code{make} knows how to envision it as the missing link between
8203 @file{@var{n}.o} and @file{@var{n}.y}!  In this case, @file{@var{n}.c} is
8204 called an @dfn{intermediate file}.  Once @code{make} has decided to use the
8205 intermediate file, it is entered in the data base as if it had been
8206 mentioned in the makefile, along with the implicit rule that says how to
8207 create it.@refill
8209 Intermediate files are remade using their rules just like all other
8210 files.  But intermediate files are treated differently in two ways.
8212 The first difference is what happens if the intermediate file does not
8213 exist.  If an ordinary file @var{b} does not exist, and @code{make}
8214 considers a target that depends on @var{b}, it invariably creates
8215 @var{b} and then updates the target from @var{b}.  But if @var{b} is an
8216 intermediate file, then @code{make} can leave well enough alone.  It
8217 won't bother updating @var{b}, or the ultimate target, unless some
8218 prerequisite of @var{b} is newer than that target or there is some other
8219 reason to update that target.
8221 The second difference is that if @code{make} @emph{does} create @var{b}
8222 in order to update something else, it deletes @var{b} later on after it
8223 is no longer needed.  Therefore, an intermediate file which did not
8224 exist before @code{make} also does not exist after @code{make}.
8225 @code{make} reports the deletion to you by printing a @samp{rm -f}
8226 command showing which file it is deleting.
8228 Ordinarily, a file cannot be intermediate if it is mentioned in the
8229 makefile as a target or prerequisite.  However, you can explicitly mark a
8230 file as intermediate by listing it as a prerequisite of the special target
8231 @code{.INTERMEDIATE}.  This takes effect even if the file is mentioned
8232 explicitly in some other way.
8234 @cindex intermediate files, preserving
8235 @cindex preserving intermediate files
8236 @cindex secondary files
8237 You can prevent automatic deletion of an intermediate file by marking it
8238 as a @dfn{secondary} file.  To do this, list it as a prerequisite of the
8239 special target @code{.SECONDARY}.  When a file is secondary, @code{make}
8240 will not create the file merely because it does not already exist, but
8241 @code{make} does not automatically delete the file.  Marking a file as
8242 secondary also marks it as intermediate.
8244 You can list the target pattern of an implicit rule (such as @samp{%.o})
8245 as a prerequisite of the special target @code{.PRECIOUS} to preserve
8246 intermediate files made by implicit rules whose target patterns match
8247 that file's name; see @ref{Interrupts}.@refill
8248 @cindex preserving with @code{.PRECIOUS}
8249 @cindex @code{.PRECIOUS} intermediate files
8251 A chain can involve more than two implicit rules.  For example, it is
8252 possible to make a file @file{foo} from @file{RCS/foo.y,v} by running RCS,
8253 Yacc and @code{cc}.  Then both @file{foo.y} and @file{foo.c} are
8254 intermediate files that are deleted at the end.@refill
8256 No single implicit rule can appear more than once in a chain.  This means
8257 that @code{make} will not even consider such a ridiculous thing as making
8258 @file{foo} from @file{foo.o.o} by running the linker twice.  This
8259 constraint has the added benefit of preventing any infinite loop in the
8260 search for an implicit rule chain.
8262 There are some special implicit rules to optimize certain cases that would
8263 otherwise be handled by rule chains.  For example, making @file{foo} from
8264 @file{foo.c} could be handled by compiling and linking with separate
8265 chained rules, using @file{foo.o} as an intermediate file.  But what
8266 actually happens is that a special rule for this case does the compilation
8267 and linking with a single @code{cc} command.  The optimized rule is used in
8268 preference to the step-by-step chain because it comes earlier in the
8269 ordering of rules.
8271 @node Pattern Rules, Last Resort, Chained Rules, Implicit Rules
8272 @section Defining and Redefining Pattern Rules
8274 You define an implicit rule by writing a @dfn{pattern rule}.  A pattern
8275 rule looks like an ordinary rule, except that its target contains the
8276 character @samp{%} (exactly one of them).  The target is considered a
8277 pattern for matching file names; the @samp{%} can match any nonempty
8278 substring, while other characters match only themselves.  The prerequisites
8279 likewise use @samp{%} to show how their names relate to the target name.
8281 Thus, a pattern rule @samp{%.o : %.c} says how to make any file
8282 @file{@var{stem}.o} from another file @file{@var{stem}.c}.@refill
8284 Note that expansion using @samp{%} in pattern rules occurs
8285 @strong{after} any variable or function expansions, which take place
8286 when the makefile is read.  @xref{Using Variables, , How to Use
8287 Variables}, and @ref{Functions, ,Functions for Transforming Text}.
8289 @menu
8290 * Pattern Intro::               An introduction to pattern rules.
8291 * Pattern Examples::            Examples of pattern rules.
8292 * Automatic Variables::         How to use automatic variables in the
8293                                   commands of implicit rules.
8294 * Pattern Match::               How patterns match.
8295 * Match-Anything Rules::        Precautions you should take prior to
8296                                   defining rules that can match any
8297                                   target file whatever.
8298 * Canceling Rules::             How to override or cancel built-in rules.
8299 @end menu
8301 @node Pattern Intro, Pattern Examples, Pattern Rules, Pattern Rules
8302 @subsection Introduction to Pattern Rules
8303 @cindex pattern rule
8304 @cindex rule, pattern
8306 A pattern rule contains the character @samp{%} (exactly one of them)
8307 in the target; otherwise, it looks exactly like an ordinary rule.  The
8308 target is a pattern for matching file names; the @samp{%} matches any
8309 nonempty substring, while other characters match only themselves.
8310 @cindex target pattern, implicit
8311 @cindex @code{%}, in pattern rules
8313 For example, @samp{%.c} as a pattern matches any file name that ends in
8314 @samp{.c}.  @samp{s.%.c} as a pattern matches any file name that starts
8315 with @samp{s.}, ends in @samp{.c} and is at least five characters long.
8316 (There must be at least one character to match the @samp{%}.)  The substring
8317 that the @samp{%} matches is called the @dfn{stem}.@refill
8319 @samp{%} in a prerequisite of a pattern rule stands for the same stem
8320 that was matched by the @samp{%} in the target.  In order for
8321 the pattern rule to apply, its target pattern must match the file name
8322 under consideration, and its prerequisite patterns must name files that
8323 exist or can be made.  These files become prerequisites of the target.
8324 @cindex prerequisite pattern, implicit
8326 Thus, a rule of the form
8328 @example
8329 %.o : %.c ; @var{command}@dots{}
8330 @end example
8332 @noindent
8333 specifies how to make a file @file{@var{n}.o}, with another file
8334 @file{@var{n}.c} as its prerequisite, provided that @file{@var{n}.c}
8335 exists or can be made.
8337 There may also be prerequisites that do not use @samp{%}; such a prerequisite
8338 attaches to every file made by this pattern rule.  These unvarying
8339 prerequisites are useful occasionally.
8341 A pattern rule need not have any prerequisites that contain @samp{%}, or
8342 in fact any prerequisites at all.  Such a rule is effectively a general
8343 wildcard.  It provides a way to make any file that matches the target
8344 pattern.  @xref{Last Resort}.
8346 @c !!! The end of of this paragraph should be rewritten.  --bob
8347 Pattern rules may have more than one target.  Unlike normal rules, this
8348 does not act as many different rules with the same prerequisites and
8349 commands.  If a pattern rule has multiple targets, @code{make} knows that
8350 the rule's commands are responsible for making all of the targets.  The
8351 commands are executed only once to make all the targets.  When searching
8352 for a pattern rule to match a target, the target patterns of a rule other
8353 than the one that matches the target in need of a rule are incidental:
8354 @code{make} worries only about giving commands and prerequisites to the file
8355 presently in question.  However, when this file's commands are run, the
8356 other targets are marked as having been updated themselves.
8357 @cindex multiple targets, in pattern rule
8358 @cindex target, multiple in pattern rule
8360 The order in which pattern rules appear in the makefile is important
8361 since this is the order in which they are considered.
8362 Of equally applicable
8363 rules, only the first one found is used.  The rules you write take precedence
8364 over those that are built in.  Note however, that a rule whose
8365 prerequisites actually exist or are mentioned always takes priority over a
8366 rule with prerequisites that must be made by chaining other implicit rules.
8367 @cindex pattern rules, order of
8368 @cindex order of pattern rules
8370 @node Pattern Examples, Automatic Variables, Pattern Intro, Pattern Rules
8371 @subsection Pattern Rule Examples
8373 Here are some examples of pattern rules actually predefined in
8374 @code{make}.  First, the rule that compiles @samp{.c} files into @samp{.o}
8375 files:@refill
8377 @example
8378 %.o : %.c
8379         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@@
8380 @end example
8382 @noindent
8383 defines a rule that can make any file @file{@var{x}.o} from
8384 @file{@var{x}.c}.  The command uses the automatic variables @samp{$@@} and
8385 @samp{$<} to substitute the names of the target file and the source file
8386 in each case where the rule applies (@pxref{Automatic Variables}).@refill
8388 Here is a second built-in rule:
8390 @example
8391 % :: RCS/%,v
8392         $(CO) $(COFLAGS) $<
8393 @end example
8395 @noindent
8396 defines a rule that can make any file @file{@var{x}} whatsoever from a
8397 corresponding file @file{@var{x},v} in the subdirectory @file{RCS}.  Since
8398 the target is @samp{%}, this rule will apply to any file whatever, provided
8399 the appropriate prerequisite file exists.  The double colon makes the rule
8400 @dfn{terminal}, which means that its prerequisite may not be an intermediate
8401 file (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}).@refill
8403 @need 500
8404 This pattern rule has two targets:
8406 @example
8407 @group
8408 %.tab.c %.tab.h: %.y
8409         bison -d $<
8410 @end group
8411 @end example
8413 @noindent
8414 @c The following paragraph is rewritten to avoid overfull hboxes
8415 This tells @code{make} that the command @samp{bison -d @var{x}.y} will
8416 make both @file{@var{x}.tab.c} and @file{@var{x}.tab.h}.  If the file
8417 @file{foo} depends on the files @file{parse.tab.o} and @file{scan.o}
8418 and the file @file{scan.o} depends on the file @file{parse.tab.h},
8419 when @file{parse.y} is changed, the command @samp{bison -d parse.y}
8420 will be executed only once, and the prerequisites of both
8421 @file{parse.tab.o} and @file{scan.o} will be satisfied.  (Presumably
8422 the file @file{parse.tab.o} will be recompiled from @file{parse.tab.c}
8423 and the file @file{scan.o} from @file{scan.c}, while @file{foo} is
8424 linked from @file{parse.tab.o}, @file{scan.o}, and its other
8425 prerequisites, and it will execute happily ever after.)@refill
8427 @node Automatic Variables, Pattern Match, Pattern Examples, Pattern Rules
8428 @subsection Automatic Variables
8429 @cindex automatic variables
8430 @cindex variables, automatic
8431 @cindex variables, and implicit rule
8433 Suppose you are writing a pattern rule to compile a @samp{.c} file into a
8434 @samp{.o} file: how do you write the @samp{cc} command so that it operates
8435 on the right source file name?  You cannot write the name in the command,
8436 because the name is different each time the implicit rule is applied.
8438 What you do is use a special feature of @code{make}, the @dfn{automatic
8439 variables}.  These variables have values computed afresh for each rule that
8440 is executed, based on the target and prerequisites of the rule.  In this
8441 example, you would use @samp{$@@} for the object file name and @samp{$<}
8442 for the source file name.
8444 @cindex automatic variables in prerequisites
8445 @cindex prerequisites, and automatic variables
8446 It's very important that you recognize the limited scope in which
8447 automatic variable values are available: they only have values within
8448 the command script.  In particular, you cannot use them anywhere
8449 within the target or prerequisite lists of a rule; they have no value
8450 there and will expand to the empty string.  A common mistake is
8451 attempting to use @code{$@@} within the prerequisites list in a rule;
8452 this will not work.  However, see below for information on the
8453 SysV-style @code{$$@@} variables.
8455 Here is a table of automatic variables:
8457 @table @code
8458 @vindex $@@
8459 @vindex @@ @r{(automatic variable)}
8460 @item $@@
8461 The file name of the target of the rule.  If the target is an archive
8462 member, then @samp{$@@} is the name of the archive file.  In a pattern
8463 rule that has multiple targets (@pxref{Pattern Intro, ,Introduction to
8464 Pattern Rules}), @samp{$@@} is the name of whichever target caused the
8465 rule's commands to be run.
8467 @vindex $%
8468 @vindex % @r{(automatic variable)}
8469 @item $%
8470 The target member name, when the target is an archive member.
8471 @xref{Archives}.  For example, if the target is @file{foo.a(bar.o)} then
8472 @samp{$%} is @file{bar.o} and @samp{$@@} is @file{foo.a}.  @samp{$%} is
8473 empty when the target is not an archive member.
8475 @vindex $<
8476 @vindex < @r{(automatic variable)}
8477 @item $<
8478 The name of the first prerequisite.  If the target got its commands from
8479 an implicit rule, this will be the first prerequisite added by the
8480 implicit rule (@pxref{Implicit Rules}).
8482 @vindex $?
8483 @vindex ? @r{(automatic variable)}
8484 @item $?
8485 The names of all the prerequisites that are newer than the target, with
8486 spaces between them.  For prerequisites which are archive members, only
8487 the member named is used (@pxref{Archives}).
8488 @cindex prerequisites, list of changed
8489 @cindex list of changed prerequisites
8491 @vindex $^
8492 @vindex ^ @r{(automatic variable)}
8493 @item $^
8494 The names of all the prerequisites, with spaces between them.  For
8495 prerequisites which are archive members, only the member named is used
8496 (@pxref{Archives}).  A target has only one prerequisite on each other file
8497 it depends on, no matter how many times each file is listed as a
8498 prerequisite.  So if you list a prerequisite more than once for a target,
8499 the value of @code{$^} contains just one copy of the name.
8500 @cindex prerequisites, list of all
8501 @cindex list of all prerequisites
8503 @vindex $+
8504 @vindex + @r{(automatic variable)}
8505 @item $+
8506 This is like @samp{$^}, but prerequisites listed more than once are
8507 duplicated in the order they were listed in the makefile.  This is
8508 primarily useful for use in linking commands where it is meaningful to
8509 repeat library file names in a particular order.
8511 @vindex $*
8512 @vindex * @r{(automatic variable)}
8513 @item $*
8514 The stem with which an implicit rule matches (@pxref{Pattern Match, ,How
8515 Patterns Match}).  If the target is @file{dir/a.foo.b} and the target
8516 pattern is @file{a.%.b} then the stem is @file{dir/foo}.  The stem is
8517 useful for constructing names of related files.@refill
8518 @cindex stem, variable for
8520 In a static pattern rule, the stem is part of the file name that matched
8521 the @samp{%} in the target pattern.
8523 In an explicit rule, there is no stem; so @samp{$*} cannot be determined
8524 in that way.  Instead, if the target name ends with a recognized suffix
8525 (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}), @samp{$*} is set to
8526 the target name minus the suffix.  For example, if the target name is
8527 @samp{foo.c}, then @samp{$*} is set to @samp{foo}, since @samp{.c} is a
8528 suffix.  GNU @code{make} does this bizarre thing only for compatibility
8529 with other implementations of @code{make}.  You should generally avoid
8530 using @samp{$*} except in implicit rules or static pattern rules.@refill
8532 If the target name in an explicit rule does not end with a recognized
8533 suffix, @samp{$*} is set to the empty string for that rule.
8534 @end table
8536 @samp{$?} is useful even in explicit rules when you wish to operate on only
8537 the prerequisites that have changed.  For example, suppose that an archive
8538 named @file{lib} is supposed to contain copies of several object files.
8539 This rule copies just the changed object files into the archive:
8541 @example
8542 @group
8543 lib: foo.o bar.o lose.o win.o
8544         ar r lib $?
8545 @end group
8546 @end example
8548 Of the variables listed above, four have values that are single file
8549 names, and three have values that are lists of file names.  These seven
8550 have variants that get just the file's directory name or just the file
8551 name within the directory.  The variant variables' names are formed by
8552 appending @samp{D} or @samp{F}, respectively.  These variants are
8553 semi-obsolete in GNU @code{make} since the functions @code{dir} and
8554 @code{notdir} can be used to get a similar effect (@pxref{File Name
8555 Functions, , Functions for File Names}).  Note, however, that the
8556 @samp{D} variants all omit the trailing slash which always appears in
8557 the output of the @code{dir} function.  Here is a table of the variants:
8559 @table @samp
8560 @vindex $(@@D)
8561 @vindex @@D @r{(automatic variable)}
8562 @item $(@@D)
8563 The directory part of the file name of the target, with the trailing
8564 slash removed.  If the value of @samp{$@@} is @file{dir/foo.o} then
8565 @samp{$(@@D)} is @file{dir}.  This value is @file{.} if @samp{$@@} does
8566 not contain a slash.
8568 @vindex $(@@F)
8569 @vindex @@F @r{(automatic variable)}
8570 @item $(@@F)
8571 The file-within-directory part of the file name of the target.  If the
8572 value of @samp{$@@} is @file{dir/foo.o} then @samp{$(@@F)} is
8573 @file{foo.o}.  @samp{$(@@F)} is equivalent to @samp{$(notdir $@@)}.
8575 @vindex $(*D)
8576 @vindex *D @r{(automatic variable)}
8577 @item $(*D)
8578 @vindex $(*F)
8579 @vindex *F @r{(automatic variable)}
8580 @itemx $(*F)
8581 The directory part and the file-within-directory
8582 part of the stem; @file{dir} and @file{foo} in this example.
8584 @vindex $(%D)
8585 @vindex %D @r{(automatic variable)}
8586 @item $(%D)
8587 @vindex $(%F)
8588 @vindex %F @r{(automatic variable)}
8589 @itemx $(%F)
8590 The directory part and the file-within-directory part of the target
8591 archive member name.  This makes sense only for archive member targets
8592 of the form @file{@var{archive}(@var{member})} and is useful only when
8593 @var{member} may contain a directory name.  (@xref{Archive Members,
8594 ,Archive Members as Targets}.)
8596 @vindex $(<D)
8597 @vindex <D @r{(automatic variable)}
8598 @item $(<D)
8599 @vindex $(<F)
8600 @vindex <F @r{(automatic variable)}
8601 @itemx $(<F)
8602 The directory part and the file-within-directory
8603 part of the first prerequisite.
8605 @vindex $(^D)
8606 @vindex ^D @r{(automatic variable)}
8607 @item $(^D)
8608 @vindex $(^F)
8609 @vindex ^F @r{(automatic variable)}
8610 @itemx $(^F)
8611 Lists of the directory parts and the file-within-directory
8612 parts of all prerequisites.
8614 @vindex $(+D)
8615 @vindex +D @r{(automatic variable)}
8616 @item $(+D)
8617 @vindex $(+F)
8618 @vindex +F @r{(automatic variable)}
8619 @itemx $(+F)
8620 Lists of the directory parts and the file-within-directory
8621 parts of all prerequisites, including multiple instances of duplicated
8622 prerequisites.
8624 @vindex $(?D)
8625 @vindex ?D @r{(automatic variable)}
8626 @item $(?D)
8627 @vindex $(?F)
8628 @vindex ?F @r{(automatic variable)}
8629 @itemx $(?F)
8630 Lists of the directory parts and the file-within-directory parts of
8631 all prerequisites that are newer than the target.
8632 @end table
8634 Note that we use a special stylistic convention when we talk about these
8635 automatic variables; we write ``the value of @samp{$<}'', rather than
8636 @w{``the variable @code{<}''} as we would write for ordinary variables
8637 such as @code{objects} and @code{CFLAGS}.  We think this convention
8638 looks more natural in this special case.  Please do not assume it has a
8639 deep significance; @samp{$<} refers to the variable named @code{<} just
8640 as @samp{$(CFLAGS)} refers to the variable named @code{CFLAGS}.
8641 You could just as well use @samp{$(<)} in place of @samp{$<}.
8643 @vindex $$@@
8644 @vindex $$(@@D)
8645 @vindex $$(@@F)
8646 @cindex $$@@, support for
8647 GNU @code{make} provides support for the SysV @code{make} feature that
8648 allows special variable references @code{$$@@}, @code{$$(@@D)}, and
8649 @code{$$(@@F)} (note the required double-''$''!) to appear with the
8650 @emph{prerequisites list} (normal automatic variables are available
8651 only within a command script).  When appearing in a prerequisites
8652 list, these variables are expanded to the name of the target, the
8653 directory component of the target, and the file component of the
8654 target, respectively.
8656 Note that these variables are available only within explicit and
8657 static pattern (@pxref{Static Pattern, ,Static Pattern Rules}) rules;
8658 they have no special significance within implicit (suffix or pattern)
8659 rules.  Also note that while SysV @code{make} actually expands its
8660 entire prerequisite list @emph{twice}, GNU @code{make} does not behave
8661 this way: instead it simply expands these special variables without
8662 re-expanding any other part of the prerequisites list.
8664 This somewhat bizarre feature is included only to provide some
8665 compatibility with SysV makefiles.  In a native GNU @code{make} file
8666 there are other ways to accomplish the same results.  This feature is
8667 disabled if the special pseudo target @code{.POSIX} is defined.
8669 @node Pattern Match, Match-Anything Rules, Automatic Variables, Pattern Rules
8670 @subsection How Patterns Match
8672 @cindex stem
8673 A target pattern is composed of a @samp{%} between a prefix and a suffix,
8674 either or both of which may be empty.  The pattern matches a file name only
8675 if the file name starts with the prefix and ends with the suffix, without
8676 overlap.  The text between the prefix and the suffix is called the
8677 @dfn{stem}.  Thus, when the pattern @samp{%.o} matches the file name
8678 @file{test.o}, the stem is @samp{test}.  The pattern rule prerequisites are
8679 turned into actual file names by substituting the stem for the character
8680 @samp{%}.  Thus, if in the same example one of the prerequisites is written
8681 as @samp{%.c}, it expands to @samp{test.c}.@refill
8683 When the target pattern does not contain a slash (and it usually does
8684 not), directory names in the file names are removed from the file name
8685 before it is compared with the target prefix and suffix.  After the
8686 comparison of the file name to the target pattern, the directory
8687 names, along with the slash that ends them, are added on to the
8688 prerequisite file names generated from the pattern rule's prerequisite
8689 patterns and the file name. The directories are ignored only for the
8690 purpose of finding an implicit rule to use, not in the application of
8691 that rule.  Thus, @samp{e%t} matches the file name @file{src/eat},
8692 with @samp{src/a} as the stem.  When prerequisites are turned into file
8693 names, the directories from the stem are added at the front, while the
8694 rest of the stem is substituted for the @samp{%}.  The stem
8695 @samp{src/a} with a prerequisite pattern @samp{c%r} gives the file name
8696 @file{src/car}.@refill
8698 @node Match-Anything Rules, Canceling Rules, Pattern Match, Pattern Rules
8699 @subsection Match-Anything Pattern Rules
8701 @cindex match-anything rule
8702 @cindex terminal rule
8703 When a pattern rule's target is just @samp{%}, it matches any file name
8704 whatever.  We call these rules @dfn{match-anything} rules.  They are very
8705 useful, but it can take a lot of time for @code{make} to think about them,
8706 because it must consider every such rule for each file name listed either
8707 as a target or as a prerequisite.
8709 Suppose the makefile mentions @file{foo.c}.  For this target, @code{make}
8710 would have to consider making it by linking an object file @file{foo.c.o},
8711 or by C compilation-and-linking in one step from @file{foo.c.c}, or by
8712 Pascal compilation-and-linking from @file{foo.c.p}, and many other
8713 possibilities.
8715 We know these possibilities are ridiculous since @file{foo.c} is a C source
8716 file, not an executable.  If @code{make} did consider these possibilities,
8717 it would ultimately reject them, because files such as @file{foo.c.o} and
8718 @file{foo.c.p} would not exist.  But these possibilities are so
8719 numerous that @code{make} would run very slowly if it had to consider
8720 them.@refill
8722 To gain speed, we have put various constraints on the way @code{make}
8723 considers match-anything rules.  There are two different constraints that
8724 can be applied, and each time you define a match-anything rule you must
8725 choose one or the other for that rule.
8727 One choice is to mark the match-anything rule as @dfn{terminal} by defining
8728 it with a double colon.  When a rule is terminal, it does not apply unless
8729 its prerequisites actually exist.  Prerequisites that could be made with
8730 other implicit rules are not good enough.  In other words, no further
8731 chaining is allowed beyond a terminal rule.
8733 For example, the built-in implicit rules for extracting sources from RCS
8734 and SCCS files are terminal; as a result, if the file @file{foo.c,v} does
8735 not exist, @code{make} will not even consider trying to make it as an
8736 intermediate file from @file{foo.c,v.o} or from @file{RCS/SCCS/s.foo.c,v}.
8737 RCS and SCCS files are generally ultimate source files, which should not be
8738 remade from any other files; therefore, @code{make} can save time by not
8739 looking for ways to remake them.@refill
8741 If you do not mark the match-anything rule as terminal, then it is
8742 nonterminal.  A nonterminal match-anything rule cannot apply to a file name
8743 that indicates a specific type of data.  A file name indicates a specific
8744 type of data if some non-match-anything implicit rule target matches it.
8746 For example, the file name @file{foo.c} matches the target for the pattern
8747 rule @samp{%.c : %.y} (the rule to run Yacc).  Regardless of whether this
8748 rule is actually applicable (which happens only if there is a file
8749 @file{foo.y}), the fact that its target matches is enough to prevent
8750 consideration of any nonterminal match-anything rules for the file
8751 @file{foo.c}.  Thus, @code{make} will not even consider trying to make
8752 @file{foo.c} as an executable file from @file{foo.c.o}, @file{foo.c.c},
8753 @file{foo.c.p}, etc.@refill
8755 The motivation for this constraint is that nonterminal match-anything
8756 rules are used for making files containing specific types of data (such as
8757 executable files) and a file name with a recognized suffix indicates some
8758 other specific type of data (such as a C source file).
8760 Special built-in dummy pattern rules are provided solely to recognize
8761 certain file names so that nonterminal match-anything rules will not be
8762 considered.  These dummy rules have no prerequisites and no commands, and
8763 they are ignored for all other purposes.  For example, the built-in
8764 implicit rule
8766 @example
8767 %.p :
8768 @end example
8770 @noindent
8771 exists to make sure that Pascal source files such as @file{foo.p} match a
8772 specific target pattern and thereby prevent time from being wasted looking
8773 for @file{foo.p.o} or @file{foo.p.c}.
8775 Dummy pattern rules such as the one for @samp{%.p} are made for every
8776 suffix listed as valid for use in suffix rules (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}).
8778 @node Canceling Rules,  , Match-Anything Rules, Pattern Rules
8779 @subsection Canceling Implicit Rules
8781 You can override a built-in implicit rule (or one you have defined
8782 yourself) by defining a new pattern rule with the same target and
8783 prerequisites, but different commands.  When the new rule is defined, the
8784 built-in one is replaced.  The new rule's position in the sequence of
8785 implicit rules is determined by where you write the new rule.
8787 You can cancel a built-in implicit rule by defining a pattern rule with the
8788 same target and prerequisites, but no commands.  For example, the following
8789 would cancel the rule that runs the assembler:
8791 @example
8792 %.o : %.s
8793 @end example
8795 @node Last Resort, Suffix Rules, Pattern Rules, Implicit Rules
8796 @section Defining Last-Resort Default Rules
8797 @cindex last-resort default rules
8798 @cindex default rules, last-resort
8800 You can define a last-resort implicit rule by writing a terminal
8801 match-anything pattern rule with no prerequisites (@pxref{Match-Anything
8802 Rules}).  This is just like any other pattern rule; the only thing
8803 special about it is that it will match any target.  So such a rule's
8804 commands are used for all targets and prerequisites that have no commands
8805 of their own and for which no other implicit rule applies.
8807 For example, when testing a makefile, you might not care if the source
8808 files contain real data, only that they exist.  Then you might do this:
8810 @example
8812         touch $@@
8813 @end example
8815 @noindent
8816 to cause all the source files needed (as prerequisites) to be created
8817 automatically.
8819 @findex .DEFAULT
8820 You can instead define commands to be used for targets for which there
8821 are no rules at all, even ones which don't specify commands.  You do
8822 this by writing a rule for the target @code{.DEFAULT}.  Such a rule's
8823 commands are used for all prerequisites which do not appear as targets in
8824 any explicit rule, and for which no implicit rule applies.  Naturally,
8825 there is no @code{.DEFAULT} rule unless you write one.
8827 If you use @code{.DEFAULT} with no commands or prerequisites:
8829 @example
8830 .DEFAULT:
8831 @end example
8833 @noindent
8834 the commands previously stored for @code{.DEFAULT} are cleared.
8835 Then @code{make} acts as if you had never defined @code{.DEFAULT} at all.
8837 If you do not want a target to get the commands from a match-anything
8838 pattern rule or @code{.DEFAULT}, but you also do not want any commands
8839 to be run for the target, you can give it empty commands (@pxref{Empty
8840 Commands, ,Defining Empty Commands}).@refill
8842 You can use a last-resort rule to override part of another makefile.
8843 @xref{Overriding Makefiles, , Overriding Part of Another Makefile}.
8845 @node Suffix Rules, Implicit Rule Search, Last Resort, Implicit Rules
8846 @section Old-Fashioned Suffix Rules
8847 @cindex old-fashioned suffix rules
8848 @cindex suffix rule
8850 @dfn{Suffix rules} are the old-fashioned way of defining implicit rules for
8851 @code{make}.  Suffix rules are obsolete because pattern rules are more
8852 general and clearer.  They are supported in GNU @code{make} for
8853 compatibility with old makefiles.  They come in two kinds:
8854 @dfn{double-suffix} and @dfn{single-suffix}.@refill
8856 A double-suffix rule is defined by a pair of suffixes: the target suffix
8857 and the source suffix.  It matches any file whose name ends with the
8858 target suffix.  The corresponding implicit prerequisite is made by
8859 replacing the target suffix with the source suffix in the file name.  A
8860 two-suffix rule whose target and source suffixes are @samp{.o} and
8861 @samp{.c} is equivalent to the pattern rule @samp{%.o : %.c}.
8863 A single-suffix rule is defined by a single suffix, which is the source
8864 suffix.  It matches any file name, and the corresponding implicit
8865 prerequisite name is made by appending the source suffix.  A single-suffix
8866 rule whose source suffix is @samp{.c} is equivalent to the pattern rule
8867 @samp{% : %.c}.
8869 Suffix rule definitions are recognized by comparing each rule's target
8870 against a defined list of known suffixes.  When @code{make} sees a rule
8871 whose target is a known suffix, this rule is considered a single-suffix
8872 rule.  When @code{make} sees a rule whose target is two known suffixes
8873 concatenated, this rule is taken as a double-suffix rule.
8875 For example, @samp{.c} and @samp{.o} are both on the default list of
8876 known suffixes.  Therefore, if you define a rule whose target is
8877 @samp{.c.o}, @code{make} takes it to be a double-suffix rule with source
8878 suffix @samp{.c} and target suffix @samp{.o}.  Here is the old-fashioned
8879 way to define the rule for compiling a C source file:@refill
8881 @example
8882 .c.o:
8883         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
8884 @end example
8886 Suffix rules cannot have any prerequisites of their own.  If they have any,
8887 they are treated as normal files with funny names, not as suffix rules.
8888 Thus, the rule:
8890 @example
8891 .c.o: foo.h
8892         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
8893 @end example
8895 @noindent
8896 tells how to make the file @file{.c.o} from the prerequisite file
8897 @file{foo.h}, and is not at all like the pattern rule:
8899 @example
8900 %.o: %.c foo.h
8901         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
8902 @end example
8904 @noindent
8905 which tells how to make @samp{.o} files from @samp{.c} files, and makes all
8906 @samp{.o} files using this pattern rule also depend on @file{foo.h}.
8908 Suffix rules with no commands are also meaningless.  They do not remove
8909 previous rules as do pattern rules with no commands (@pxref{Canceling
8910 Rules, , Canceling Implicit Rules}).  They simply enter the suffix or pair of suffixes concatenated as
8911 a target in the data base.@refill
8913 @findex .SUFFIXES
8914 The known suffixes are simply the names of the prerequisites of the special
8915 target @code{.SUFFIXES}.  You can add your own suffixes by writing a rule
8916 for @code{.SUFFIXES} that adds more prerequisites, as in:
8918 @example
8919 .SUFFIXES: .hack .win
8920 @end example
8922 @noindent
8923 which adds @samp{.hack} and @samp{.win} to the end of the list of suffixes.
8925 If you wish to eliminate the default known suffixes instead of just adding
8926 to them, write a rule for @code{.SUFFIXES} with no prerequisites.  By
8927 special dispensation, this eliminates all existing prerequisites of
8928 @code{.SUFFIXES}.  You can then write another rule to add the suffixes you
8929 want.  For example,
8931 @example
8932 @group
8933 .SUFFIXES:            # @r{Delete the default suffixes}
8934 .SUFFIXES: .c .o .h   # @r{Define our suffix list}
8935 @end group
8936 @end example
8938 The @samp{-r} or @samp{--no-builtin-rules} flag causes the default
8939 list of suffixes to be empty.
8941 @vindex SUFFIXES
8942 The variable @code{SUFFIXES} is defined to the default list of suffixes
8943 before @code{make} reads any makefiles.  You can change the list of suffixes
8944 with a rule for the special target @code{.SUFFIXES}, but that does not alter
8945 this variable.
8947 @node Implicit Rule Search,  , Suffix Rules, Implicit Rules
8948 @section Implicit Rule Search Algorithm
8949 @cindex implicit rule, search algorithm
8950 @cindex search algorithm, implicit rule
8952 Here is the procedure @code{make} uses for searching for an implicit rule
8953 for a target @var{t}.  This procedure is followed for each double-colon
8954 rule with no commands, for each target of ordinary rules none of which have
8955 commands, and for each prerequisite that is not the target of any rule.  It
8956 is also followed recursively for prerequisites that come from implicit
8957 rules, in the search for a chain of rules.
8959 Suffix rules are not mentioned in this algorithm because suffix rules are
8960 converted to equivalent pattern rules once the makefiles have been read in.
8962 For an archive member target of the form
8963 @samp{@var{archive}(@var{member})}, the following algorithm is run
8964 twice, first using the entire target name @var{t}, and second using
8965 @samp{(@var{member})} as the target @var{t} if the first run found no
8966 rule.@refill
8968 @enumerate
8969 @item
8970 Split @var{t} into a directory part, called @var{d}, and the rest,
8971 called @var{n}.  For example, if @var{t} is @samp{src/foo.o}, then
8972 @var{d} is @samp{src/} and @var{n} is @samp{foo.o}.@refill
8974 @item
8975 Make a list of all the pattern rules one of whose targets matches
8976 @var{t} or @var{n}.  If the target pattern contains a slash, it is
8977 matched against @var{t}; otherwise, against @var{n}.
8979 @item
8980 If any rule in that list is @emph{not} a match-anything rule, then
8981 remove all nonterminal match-anything rules from the list.
8983 @item
8984 Remove from the list all rules with no commands.
8986 @item
8987 For each pattern rule in the list:
8989 @enumerate a
8990 @item
8991 Find the stem @var{s}, which is the nonempty part of @var{t} or @var{n}
8992 matched by the @samp{%} in the target pattern.@refill
8994 @item
8995 Compute the prerequisite names by substituting @var{s} for @samp{%}; if
8996 the target pattern does not contain a slash, append @var{d} to
8997 the front of each prerequisite name.@refill
8999 @item
9000 Test whether all the prerequisites exist or ought to exist.  (If a
9001 file name is mentioned in the makefile as a target or as an explicit
9002 prerequisite, then we say it ought to exist.)
9004 If all prerequisites exist or ought to exist, or there are no prerequisites,
9005 then this rule applies.
9006 @end enumerate
9008 @item
9009 If no pattern rule has been found so far, try harder.
9010 For each pattern rule in the list:
9012 @enumerate a
9013 @item
9014 If the rule is terminal, ignore it and go on to the next rule.
9016 @item
9017 Compute the prerequisite names as before.
9019 @item
9020 Test whether all the prerequisites exist or ought to exist.
9022 @item
9023 For each prerequisite that does not exist, follow this algorithm
9024 recursively to see if the prerequisite can be made by an implicit
9025 rule.
9027 @item
9028 If all prerequisites exist, ought to exist, or can be
9029 made by implicit rules, then this rule applies.
9030 @end enumerate
9032 @item
9033 If no implicit rule applies, the rule for @code{.DEFAULT}, if any,
9034 applies.  In that case, give @var{t} the same commands that
9035 @code{.DEFAULT} has.  Otherwise, there are no commands for @var{t}.
9036 @end enumerate
9038 Once a rule that applies has been found, for each target pattern of the
9039 rule other than the one that matched @var{t} or @var{n}, the @samp{%} in
9040 the pattern is replaced with @var{s} and the resultant file name is stored
9041 until the commands to remake the target file @var{t} are executed.  After
9042 these commands are executed, each of these stored file names are entered
9043 into the data base and marked as having been updated and having the same
9044 update status as the file @var{t}.
9046 When the commands of a pattern rule are executed for @var{t}, the automatic
9047 variables are set corresponding to the target and prerequisites.
9048 @xref{Automatic Variables}.
9050 @node Archives, Features, Implicit Rules, Top
9051 @chapter Using @code{make} to Update Archive Files
9052 @cindex archive
9054 @dfn{Archive files} are files containing named subfiles called
9055 @dfn{members}; they are maintained with the program @code{ar} and their
9056 main use is as subroutine libraries for linking.
9058 @menu
9059 * Archive Members::             Archive members as targets.
9060 * Archive Update::              The implicit rule for archive member targets.
9061 * Archive Pitfalls::            Dangers to watch out for when using archives.
9062 * Archive Suffix Rules::        You can write a special kind of suffix rule
9063                                   for updating archives.
9064 @end menu
9066 @node Archive Members, Archive Update, Archives, Archives
9067 @section Archive Members as Targets
9068 @cindex archive member targets
9070 An individual member of an archive file can be used as a target or
9071 prerequisite in @code{make}.  You specify the member named @var{member} in
9072 archive file @var{archive} as follows:
9074 @example
9075 @var{archive}(@var{member})
9076 @end example
9078 @noindent
9079 This construct is available only in targets and prerequisites, not in
9080 commands!  Most programs that you might use in commands do not support this
9081 syntax and cannot act directly on archive members.  Only @code{ar} and
9082 other programs specifically designed to operate on archives can do so.
9083 Therefore, valid commands to update an archive member target probably must
9084 use @code{ar}.  For example, this rule says to create a member
9085 @file{hack.o} in archive @file{foolib} by copying the file @file{hack.o}:
9087 @example
9088 foolib(hack.o) : hack.o
9089         ar cr foolib hack.o
9090 @end example
9092 In fact, nearly all archive member targets are updated in just this way
9093 and there is an implicit rule to do it for you.  @strong{Note:} The
9094 @samp{c} flag to @code{ar} is required if the archive file does not
9095 already exist.
9097 To specify several members in the same archive, you can write all the
9098 member names together between the parentheses.  For example:
9100 @example
9101 foolib(hack.o kludge.o)
9102 @end example
9104 @noindent
9105 is equivalent to:
9107 @example
9108 foolib(hack.o) foolib(kludge.o)
9109 @end example
9111 @cindex wildcard, in archive member
9112 You can also use shell-style wildcards in an archive member reference.
9113 @xref{Wildcards, ,Using Wildcard Characters in File Names}.  For
9114 example, @w{@samp{foolib(*.o)}} expands to all existing members of the
9115 @file{foolib} archive whose names end in @samp{.o}; perhaps
9116 @samp{@w{foolib(hack.o)} @w{foolib(kludge.o)}}.
9118 @node Archive Update, Archive Pitfalls, Archive Members, Archives
9119 @section Implicit Rule for Archive Member Targets
9121 Recall that a target that looks like @file{@var{a}(@var{m})} stands for the
9122 member named @var{m} in the archive file @var{a}.
9124 When @code{make} looks for an implicit rule for such a target, as a special
9125 feature it considers implicit rules that match @file{(@var{m})}, as well as
9126 those that match the actual target @file{@var{a}(@var{m})}.
9128 This causes one special rule whose target is @file{(%)} to match.  This
9129 rule updates the target @file{@var{a}(@var{m})} by copying the file @var{m}
9130 into the archive.  For example, it will update the archive member target
9131 @file{foo.a(bar.o)} by copying the @emph{file} @file{bar.o} into the
9132 archive @file{foo.a} as a @emph{member} named @file{bar.o}.
9134 When this rule is chained with others, the result is very powerful.
9135 Thus, @samp{make "foo.a(bar.o)"} (the quotes are needed to protect the
9136 @samp{(} and @samp{)} from being interpreted specially by the shell) in
9137 the presence of a file @file{bar.c} is enough to cause the following
9138 commands to be run, even without a makefile:
9140 @example
9141 cc -c bar.c -o bar.o
9142 ar r foo.a bar.o
9143 rm -f bar.o
9144 @end example
9146 @noindent
9147 Here @code{make} has envisioned the file @file{bar.o} as an intermediate
9148 file.  @xref{Chained Rules, ,Chains of Implicit Rules}.
9150 Implicit rules such as this one are written using the automatic variable
9151 @samp{$%}.  @xref{Automatic Variables}.
9153 An archive member name in an archive cannot contain a directory name, but
9154 it may be useful in a makefile to pretend that it does.  If you write an
9155 archive member target @file{foo.a(dir/file.o)}, @code{make} will perform
9156 automatic updating with this command:
9158 @example
9159 ar r foo.a dir/file.o
9160 @end example
9162 @noindent
9163 which has the effect of copying the file @file{dir/file.o} into a member
9164 named @file{file.o}.  In connection with such usage, the automatic variables
9165 @code{%D} and @code{%F} may be useful.
9167 @menu
9168 * Archive Symbols::             How to update archive symbol directories.
9169 @end menu
9171 @node Archive Symbols,  , Archive Update, Archive Update
9172 @subsection Updating Archive Symbol Directories
9173 @cindex @code{__.SYMDEF}
9174 @cindex updating archive symbol directories
9175 @cindex archive symbol directory updating
9176 @cindex symbol directories, updating archive
9177 @cindex directories, updating archive symbol
9179 An archive file that is used as a library usually contains a special member
9180 named @file{__.SYMDEF} that contains a directory of the external symbol
9181 names defined by all the other members.  After you update any other
9182 members, you need to update @file{__.SYMDEF} so that it will summarize the
9183 other members properly.  This is done by running the @code{ranlib} program:
9185 @example
9186 ranlib @var{archivefile}
9187 @end example
9189 Normally you would put this command in the rule for the archive file,
9190 and make all the members of the archive file prerequisites of that rule.
9191 For example,
9193 @example
9194 libfoo.a: libfoo.a(x.o) libfoo.a(y.o) @dots{}
9195         ranlib libfoo.a
9196 @end example
9198 @noindent
9199 The effect of this is to update archive members @file{x.o}, @file{y.o},
9200 etc., and then update the symbol directory member @file{__.SYMDEF} by
9201 running @code{ranlib}.  The rules for updating the members are not shown
9202 here; most likely you can omit them and use the implicit rule which copies
9203 files into the archive, as described in the preceding section.
9205 This is not necessary when using the GNU @code{ar} program, which
9206 updates the @file{__.SYMDEF} member automatically.
9208 @node Archive Pitfalls, Archive Suffix Rules, Archive Update, Archives
9209 @section Dangers When Using Archives
9210 @cindex archive, and parallel execution
9211 @cindex parallel execution, and archive update
9212 @cindex archive, and @code{-j}
9213 @cindex @code{-j}, and archive update
9215 It is important to be careful when using parallel execution (the
9216 @code{-j} switch; @pxref{Parallel, ,Parallel Execution}) and archives.
9217 If multiple @code{ar} commands run at the same time on the same archive
9218 file, they will not know about each other and can corrupt the file.
9220 Possibly a future version of @code{make} will provide a mechanism to
9221 circumvent this problem by serializing all commands that operate on the
9222 same archive file.  But for the time being, you must either write your
9223 makefiles to avoid this problem in some other way, or not use @code{-j}.
9225 @node Archive Suffix Rules,  , Archive Pitfalls, Archives
9226 @section Suffix Rules for Archive Files
9227 @cindex suffix rule, for archive
9228 @cindex archive, suffix rule for
9229 @cindex library archive, suffix rule for
9230 @cindex @code{.a} (archives)
9232 You can write a special kind of suffix rule for dealing with archive
9233 files.  @xref{Suffix Rules}, for a full explanation of suffix rules.
9234 Archive suffix rules are obsolete in GNU @code{make}, because pattern
9235 rules for archives are a more general mechanism (@pxref{Archive
9236 Update}).  But they are retained for compatibility with other
9237 @code{make}s.
9239 To write a suffix rule for archives, you simply write a suffix rule
9240 using the target suffix @samp{.a} (the usual suffix for archive files).
9241 For example, here is the old-fashioned suffix rule to update a library
9242 archive from C source files:
9244 @example
9245 @group
9246 .c.a:
9247         $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
9248         $(AR) r $@@ $*.o
9249         $(RM) $*.o
9250 @end group
9251 @end example
9253 @noindent
9254 This works just as if you had written the pattern rule:
9256 @example
9257 @group
9258 (%.o): %.c
9259         $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
9260         $(AR) r $@@ $*.o
9261         $(RM) $*.o
9262 @end group
9263 @end example
9265 In fact, this is just what @code{make} does when it sees a suffix rule
9266 with @samp{.a} as the target suffix.  Any double-suffix rule
9267 @w{@samp{.@var{x}.a}} is converted to a pattern rule with the target
9268 pattern @samp{(%.o)} and a prerequisite pattern of @samp{%.@var{x}}.
9270 Since you might want to use @samp{.a} as the suffix for some other kind
9271 of file, @code{make} also converts archive suffix rules to pattern rules
9272 in the normal way (@pxref{Suffix Rules}).  Thus a double-suffix rule
9273 @w{@samp{.@var{x}.a}} produces two pattern rules: @samp{@w{(%.o):}
9274 @w{%.@var{x}}} and @samp{@w{%.a}: @w{%.@var{x}}}.@refill
9276 @node Features, Missing, Archives, Top
9277 @chapter Features of GNU @code{make}
9278 @cindex features of GNU @code{make}
9279 @cindex portability
9280 @cindex compatibility
9282 Here is a summary of the features of GNU @code{make}, for comparison
9283 with and credit to other versions of @code{make}.  We consider the
9284 features of @code{make} in 4.2 BSD systems as a baseline.  If you are
9285 concerned with writing portable makefiles, you should not use the
9286 features of @code{make} listed here, nor the ones in @ref{Missing}.
9288 Many features come from the version of @code{make} in System V.
9290 @itemize @bullet
9291 @item
9292 The @code{VPATH} variable and its special meaning.
9293 @xref{Directory Search, , Searching Directories for Prerequisites}.
9294 This feature exists in System V @code{make}, but is undocumented.
9295 It is documented in 4.3 BSD @code{make} (which says it mimics System V's
9296 @code{VPATH} feature).@refill
9298 @item
9299 Included makefiles.  @xref{Include, ,Including Other Makefiles}.
9300 Allowing multiple files to be included with a single directive is a GNU
9301 extension.
9303 @item
9304 Variables are read from and communicated via the environment.
9305 @xref{Environment, ,Variables from the Environment}.
9307 @item
9308 Options passed through the variable @code{MAKEFLAGS} to recursive
9309 invocations of @code{make}.
9310 @xref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
9312 @item
9313 The automatic variable @code{$%} is set to the member name
9314 in an archive reference.  @xref{Automatic Variables}.
9316 @item
9317 The automatic variables @code{$@@}, @code{$*}, @code{$<}, @code{$%},
9318 and @code{$?} have corresponding forms like @code{$(@@F)} and
9319 @code{$(@@D)}.  We have generalized this to @code{$^} as an obvious
9320 extension.  @xref{Automatic Variables}.@refill
9322 @item
9323 Substitution variable references.
9324 @xref{Reference, ,Basics of Variable References}.
9326 @item
9327 The command-line options @samp{-b} and @samp{-m}, accepted and
9328 ignored.  In System V @code{make}, these options actually do something.
9330 @item
9331 Execution of recursive commands to run @code{make} via the variable
9332 @code{MAKE} even if @samp{-n}, @samp{-q} or @samp{-t} is specified.
9333 @xref{Recursion, ,Recursive Use of @code{make}}.
9335 @item
9336 Support for suffix @samp{.a} in suffix rules.  @xref{Archive Suffix
9337 Rules}.  This feature is obsolete in GNU @code{make}, because the
9338 general feature of rule chaining (@pxref{Chained Rules, ,Chains of
9339 Implicit Rules}) allows one pattern rule for installing members in an
9340 archive (@pxref{Archive Update}) to be sufficient.
9342 @item
9343 The arrangement of lines and backslash-newline combinations in
9344 commands is retained when the commands are printed, so they appear as
9345 they do in the makefile, except for the stripping of initial
9346 whitespace.
9347 @end itemize
9349 The following features were inspired by various other versions of
9350 @code{make}.  In some cases it is unclear exactly which versions inspired
9351 which others.
9353 @itemize @bullet
9354 @item
9355 Pattern rules using @samp{%}.
9356 This has been implemented in several versions of @code{make}.
9357 We're not sure who invented it first, but it's been spread around a bit.
9358 @xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.@refill
9360 @item
9361 Rule chaining and implicit intermediate files.
9362 This was implemented by Stu Feldman in his version of @code{make}
9363 for AT&T Eighth Edition Research Unix, and later by Andrew Hume of
9364 AT&T Bell Labs in his @code{mk} program (where he terms it
9365 ``transitive closure'').  We do not really know if
9366 we got this from either of them or thought it up ourselves at the
9367 same time.  @xref{Chained Rules, ,Chains of Implicit Rules}.
9369 @item
9370 The automatic variable @code{$^} containing a list of all prerequisites
9371 of the current target.  We did not invent this, but we have no idea who
9372 did.  @xref{Automatic Variables}.  The automatic variable
9373 @code{$+} is a simple extension of @code{$^}.
9375 @item
9376 The ``what if'' flag (@samp{-W} in GNU @code{make}) was (as far as we know)
9377 invented by Andrew Hume in @code{mk}.
9378 @xref{Instead of Execution, ,Instead of Executing the Commands}.
9380 @item
9381 The concept of doing several things at once (parallelism) exists in
9382 many incarnations of @code{make} and similar programs, though not in the
9383 System V or BSD implementations.  @xref{Execution, ,Command Execution}.
9385 @item
9386 Modified variable references using pattern substitution come from
9387 SunOS 4.  @xref{Reference, ,Basics of Variable References}.
9388 This functionality was provided in GNU @code{make} by the
9389 @code{patsubst} function before the alternate syntax was implemented
9390 for compatibility with SunOS 4.  It is not altogether clear who
9391 inspired whom, since GNU @code{make} had @code{patsubst} before SunOS
9392 4 was released.@refill
9394 @item
9395 The special significance of @samp{+} characters preceding command lines
9396 (@pxref{Instead of Execution, ,Instead of Executing the Commands}) is
9397 mandated by
9398 @cite{IEEE Standard 1003.2-1992} (POSIX.2).
9400 @item
9401 The @samp{+=} syntax to append to the value of a variable comes from SunOS
9402 4 @code{make}.  @xref{Appending, , Appending More Text to Variables}.
9404 @item
9405 The syntax @w{@samp{@var{archive}(@var{mem1} @var{mem2}@dots{})}} to list
9406 multiple members in a single archive file comes from SunOS 4 @code{make}.
9407 @xref{Archive Members}.
9409 @item
9410 The @code{-include} directive to include makefiles with no error for a
9411 nonexistent file comes from SunOS 4 @code{make}.  (But note that SunOS 4
9412 @code{make} does not allow multiple makefiles to be specified in one
9413 @code{-include} directive.)  The same feature appears with the name
9414 @code{sinclude} in SGI @code{make} and perhaps others.
9415 @end itemize
9417 The remaining features are inventions new in GNU @code{make}:
9419 @itemize @bullet
9420 @item
9421 Use the @samp{-v} or @samp{--version} option to print version and
9422 copyright information.
9424 @item
9425 Use the @samp{-h} or @samp{--help} option to summarize the options to
9426 @code{make}.
9428 @item
9429 Simply-expanded variables.  @xref{Flavors, ,The Two Flavors of Variables}.
9431 @item
9432 Pass command-line variable assignments automatically through the
9433 variable @code{MAKE} to recursive @code{make} invocations.
9434 @xref{Recursion, ,Recursive Use of @code{make}}.
9436 @item
9437 Use the @samp{-C} or @samp{--directory} command option to change
9438 directory.  @xref{Options Summary, ,Summary of Options}.
9440 @item
9441 Make verbatim variable definitions with @code{define}.
9442 @xref{Defining, ,Defining Variables Verbatim}.
9444 @item
9445 Declare phony targets with the special target @code{.PHONY}.
9447 Andrew Hume of AT&T Bell Labs implemented a similar feature with a
9448 different syntax in his @code{mk} program.  This seems to be a case of
9449 parallel discovery.  @xref{Phony Targets, ,Phony Targets}.
9451 @item
9452 Manipulate text by calling functions.
9453 @xref{Functions, ,Functions for Transforming Text}.
9455 @item
9456 Use the @samp{-o} or @samp{--old-file}
9457 option to pretend a file's modification-time is old.
9458 @xref{Avoiding Compilation, ,Avoiding Recompilation of Some Files}.
9460 @item
9461 Conditional execution.
9463 This feature has been implemented numerous times in various versions
9464 of @code{make}; it seems a natural extension derived from the features
9465 of the C preprocessor and similar macro languages and is not a
9466 revolutionary concept.  @xref{Conditionals, ,Conditional Parts of Makefiles}.
9468 @item
9469 Specify a search path for included makefiles.
9470 @xref{Include, ,Including Other Makefiles}.
9472 @item
9473 Specify extra makefiles to read with an environment variable.
9474 @xref{MAKEFILES Variable, ,The Variable @code{MAKEFILES}}.
9476 @item
9477 Strip leading sequences of @samp{./} from file names, so that
9478 @file{./@var{file}} and @file{@var{file}} are considered to be the
9479 same file.@refill
9481 @item
9482 Use a special search method for library prerequisites written in the
9483 form @samp{-l@var{name}}.
9484 @xref{Libraries/Search, ,Directory Search for Link Libraries}.
9486 @item
9487 Allow suffixes for suffix rules
9488 (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}) to contain any
9489 characters.  In other versions of @code{make}, they must begin with
9490 @samp{.} and not contain any @samp{/} characters.
9492 @item
9493 Keep track of the current level of @code{make} recursion using the
9494 variable @code{MAKELEVEL}.  @xref{Recursion, ,Recursive Use of @code{make}}.
9496 @item
9497 Provide any goals given on the command line in the variable
9498 @code{MAKECMDGOALS}.  @xref{Goals, ,Arguments to Specify the Goals}.
9500 @item
9501 Specify static pattern rules.  @xref{Static Pattern, ,Static Pattern Rules}.
9503 @item
9504 Provide selective @code{vpath} search.
9505 @xref{Directory Search, ,Searching Directories for Prerequisites}.
9507 @item
9508 Provide computed variable references.
9509 @xref{Reference, ,Basics of Variable References}.
9511 @item
9512 Update makefiles.  @xref{Remaking Makefiles, ,How Makefiles Are Remade}.
9513 System V @code{make} has a very, very limited form of this
9514 functionality in that it will check out SCCS files for makefiles.
9516 @item
9517 Various new built-in implicit rules.
9518 @xref{Catalogue of Rules, ,Catalogue of Implicit Rules}.
9520 @item
9521 The built-in variable @samp{MAKE_VERSION} gives the version number of
9522 @code{make}.
9523 @vindex MAKE_VERSION
9524 @end itemize
9526 @node Missing, Makefile Conventions, Features, Top
9527 @chapter Incompatibilities and Missing Features
9528 @cindex incompatibilities
9529 @cindex missing features
9530 @cindex features, missing
9532 The @code{make} programs in various other systems support a few features
9533 that are not implemented in GNU @code{make}.  The POSIX.2 standard
9534 (@cite{IEEE Standard 1003.2-1992}) which specifies @code{make} does not
9535 require any of these features.@refill
9537 @itemize @bullet
9538 @item
9539 A target of the form @samp{@var{file}((@var{entry}))} stands for a member
9540 of archive file @var{file}.  The member is chosen, not by name, but by
9541 being an object file which defines the linker symbol @var{entry}.@refill
9543 This feature was not put into GNU @code{make} because of the
9544 nonmodularity of putting knowledge into @code{make} of the internal
9545 format of archive file symbol tables.
9546 @xref{Archive Symbols, ,Updating Archive Symbol Directories}.
9548 @item
9549 Suffixes (used in suffix rules) that end with the character @samp{~}
9550 have a special meaning to System V @code{make};
9551 they refer to the SCCS file that corresponds
9552 to the file one would get without the @samp{~}.  For example, the
9553 suffix rule @samp{.c~.o} would make the file @file{@var{n}.o} from
9554 the SCCS file @file{s.@var{n}.c}.  For complete coverage, a whole
9555 series of such suffix rules is required.
9556 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
9558 In GNU @code{make}, this entire series of cases is handled by two
9559 pattern rules for extraction from SCCS, in combination with the
9560 general feature of rule chaining.
9561 @xref{Chained Rules, ,Chains of Implicit Rules}.
9563 @item
9564 In System V and 4.3 BSD @code{make}, files found by @code{VPATH} search
9565 (@pxref{Directory Search, ,Searching Directories for Prerequisites}) have their names changed inside command
9566 strings.  We feel it is much cleaner to always use automatic variables
9567 and thus make this feature obsolete.@refill
9569 @item
9570 In some Unix @code{make}s, the automatic variable @code{$*} appearing in
9571 the prerequisites of a rule has the amazingly strange ``feature'' of
9572 expanding to the full name of the @emph{target of that rule}.  We cannot
9573 imagine what went on in the minds of Unix @code{make} developers to do
9574 this; it is utterly inconsistent with the normal definition of @code{$*}.
9575 @vindex * @r{(automatic variable), unsupported bizarre usage}
9577 @item
9578 In some Unix @code{make}s, implicit rule search
9579 (@pxref{Implicit Rules, ,Using Implicit Rules}) is apparently done for
9580 @emph{all} targets, not just those without commands.  This means you can
9581 do:@refill
9583 @example
9584 @group
9585 foo.o:
9586         cc -c foo.c
9587 @end group
9588 @end example
9590 @noindent
9591 and Unix @code{make} will intuit that @file{foo.o} depends on
9592 @file{foo.c}.@refill
9594 We feel that such usage is broken.  The prerequisite properties of
9595 @code{make} are well-defined (for GNU @code{make}, at least),
9596 and doing such a thing simply does not fit the model.@refill
9598 @item
9599 GNU @code{make} does not include any built-in implicit rules for
9600 compiling or preprocessing EFL programs.  If we hear of anyone who is
9601 using EFL, we will gladly add them.
9603 @item
9604 It appears that in SVR4 @code{make}, a suffix rule can be specified with
9605 no commands, and it is treated as if it had empty commands
9606 (@pxref{Empty Commands}).  For example:
9608 @example
9609 .c.a:
9610 @end example
9612 @noindent
9613 will override the built-in @file{.c.a} suffix rule.
9615 We feel that it is cleaner for a rule without commands to always simply
9616 add to the prerequisite list for the target.  The above example can be
9617 easily rewritten to get the desired behavior in GNU @code{make}:
9619 @example
9620 .c.a: ;
9621 @end example
9623 @item
9624 Some versions of @code{make} invoke the shell with the @samp{-e} flag,
9625 except under @samp{-k} (@pxref{Testing, ,Testing the Compilation of a
9626 Program}).  The @samp{-e} flag tells the shell to exit as soon as any
9627 program it runs returns a nonzero status.  We feel it is cleaner to
9628 write each shell command line to stand on its own and not require this
9629 special treatment.
9630 @end itemize
9632 @comment The makefile standards are in a separate file that is also
9633 @comment included by standards.texi.
9634 @include make-stds.texi
9636 @node Quick Reference, Error Messages, Makefile Conventions, Top
9637 @appendix Quick Reference
9639 This appendix summarizes the directives, text manipulation functions,
9640 and special variables which GNU @code{make} understands.
9641 @xref{Special Targets}, @ref{Catalogue of Rules, ,Catalogue of Implicit Rules},
9642 and @ref{Options Summary, ,Summary of Options},
9643 for other summaries.
9645 Here is a summary of the directives GNU @code{make} recognizes:
9647 @table @code
9648 @item define @var{variable}
9649 @itemx endef
9651 Define a multi-line, recursively-expanded variable.@*
9652 @xref{Sequences}.
9654 @item ifdef @var{variable}
9655 @itemx ifndef @var{variable}
9656 @itemx ifeq (@var{a},@var{b})
9657 @itemx ifeq "@var{a}" "@var{b}"
9658 @itemx ifeq '@var{a}' '@var{b}'
9659 @itemx ifneq (@var{a},@var{b})
9660 @itemx ifneq "@var{a}" "@var{b}"
9661 @itemx ifneq '@var{a}' '@var{b}'
9662 @itemx else
9663 @itemx endif
9665 Conditionally evaluate part of the makefile.@*
9666 @xref{Conditionals}.
9668 @item include @var{file}
9669 @itemx -include @var{file}
9670 @itemx sinclude @var{file}
9672 Include another makefile.@*
9673 @xref{Include, ,Including Other Makefiles}.
9675 @item override @var{variable} = @var{value}
9676 @itemx override @var{variable} := @var{value}
9677 @itemx override @var{variable} += @var{value}
9678 @itemx override @var{variable} ?= @var{value}
9679 @itemx override define @var{variable}
9680 @itemx endef
9682 Define a variable, overriding any previous definition, even one from
9683 the command line.@*
9684 @xref{Override Directive, ,The @code{override} Directive}.
9686 @item export
9688 Tell @code{make} to export all variables to child processes by default.@*
9689 @xref{Variables/Recursion, , Communicating Variables to a Sub-@code{make}}.
9691 @item export @var{variable}
9692 @itemx export @var{variable} = @var{value}
9693 @itemx export @var{variable} := @var{value}
9694 @itemx export @var{variable} += @var{value}
9695 @itemx export @var{variable} ?= @var{value}
9696 @itemx unexport @var{variable}
9697 Tell @code{make} whether or not to export a particular variable to child
9698 processes.@*
9699 @xref{Variables/Recursion, , Communicating Variables to a Sub-@code{make}}.
9701 @item vpath @var{pattern} @var{path}
9702 Specify a search path for files matching a @samp{%} pattern.@*
9703 @xref{Selective Search, , The @code{vpath} Directive}.
9705 @item vpath @var{pattern}
9706 Remove all search paths previously specified for @var{pattern}.
9708 @item vpath
9709 Remove all search paths previously specified in any @code{vpath}
9710 directive.
9711 @end table
9713 Here is a summary of the built-in functions (@pxref{Functions}):
9715 @table @code
9716 @item $(subst @var{from},@var{to},@var{text})
9717 Replace @var{from} with @var{to} in @var{text}.@*
9718 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9720 @item $(patsubst @var{pattern},@var{replacement},@var{text})
9721 Replace words matching @var{pattern} with @var{replacement} in @var{text}.@*
9722 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9724 @item $(strip @var{string})
9725 Remove excess whitespace characters from @var{string}.@*
9726 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9728 @item $(findstring @var{find},@var{text})
9729 Locate @var{find} in @var{text}.@*
9730 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9732 @item $(filter @var{pattern}@dots{},@var{text})
9733 Select words in @var{text} that match one of the @var{pattern} words.@*
9734 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9736 @item $(filter-out @var{pattern}@dots{},@var{text})
9737 Select words in @var{text} that @emph{do not} match any of the @var{pattern} words.@*
9738 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9740 @item $(sort @var{list})
9741 Sort the words in @var{list} lexicographically, removing duplicates.@*
9742 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9744 @item $(word @var{n},@var{text})
9745 Extract the @var{n}th word (one-origin) of @var{text}.@*
9746 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9748 @item $(words @var{text})
9749 Count the number of words in @var{text}.@*
9750 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9752 @item $(wordlist @var{s},@var{e},@var{text})
9753 Returns the list of words in @var{text} from @var{s} to @var{e}.@*
9754 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9756 @item $(firstword @var{names}@dots{})
9757 Extract the first word of @var{names}.@*
9758 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9760 @item $(lastword @var{names}@dots{})
9761 Extract the last word of @var{names}.@*
9762 @xref{Text Functions, , Functions for String Substitution and Analysis}.
9764 @item $(dir @var{names}@dots{})
9765 Extract the directory part of each file name.@*
9766 @xref{File Name Functions, ,Functions for File Names}.
9768 @item $(notdir @var{names}@dots{})
9769 Extract the non-directory part of each file name.@*
9770 @xref{File Name Functions, ,Functions for File Names}.
9772 @item $(suffix @var{names}@dots{})
9773 Extract the suffix (the last @samp{.} and following characters) of each file name.@*
9774 @xref{File Name Functions, ,Functions for File Names}.
9776 @item $(basename @var{names}@dots{})
9777 Extract the base name (name without suffix) of each file name.@*
9778 @xref{File Name Functions, ,Functions for File Names}.
9780 @item $(addsuffix @var{suffix},@var{names}@dots{})
9781 Append @var{suffix} to each word in @var{names}.@*
9782 @xref{File Name Functions, ,Functions for File Names}.
9784 @item $(addprefix @var{prefix},@var{names}@dots{})
9785 Prepend @var{prefix} to each word in @var{names}.@*
9786 @xref{File Name Functions, ,Functions for File Names}.
9788 @item $(join @var{list1},@var{list2})
9789 Join two parallel lists of words.@*
9790 @xref{File Name Functions, ,Functions for File Names}.
9792 @item $(wildcard @var{pattern}@dots{})
9793 Find file names matching a shell file name pattern (@emph{not} a
9794 @samp{%} pattern).@*
9795 @xref{Wildcard Function, ,The Function @code{wildcard}}.
9797 @item $(realpath @var{names}@dots{})
9798 For each file name in @var{names}, expand to an absolute name that
9799 does not contain any @code{.}, @code{..}, nor symlinks.@*
9800 @xref{File Name Functions, ,Functions for File Names}.
9802 @item $(abspath @var{names}@dots{})
9803 For each file name in @var{names}, expand to an absolute name that
9804 does not contain any @code{.} or @code{..} components, but preserves
9805 symlinks.@*
9806 @xref{File Name Functions, ,Functions for File Names}.
9808 @item $(error @var{text}@dots{})
9810 When this function is evaluated, @code{make} generates a fatal error
9811 with the message @var{text}.@*
9812 @xref{Make Control Functions, ,Functions That Control Make}.
9814 @item $(warning @var{text}@dots{})
9816 When this function is evaluated, @code{make} generates a warning with
9817 the message @var{text}.@*
9818 @xref{Make Control Functions, ,Functions That Control Make}.
9820 @item $(shell @var{command})
9822 Execute a shell command and return its output.@*
9823 @xref{Shell Function, , The @code{shell} Function}.
9825 @item $(origin @var{variable})
9827 Return a string describing how the @code{make} variable @var{variable} was
9828 defined.@*
9829 @xref{Origin Function, , The @code{origin} Function}.
9831 @item $(foreach @var{var},@var{words},@var{text})
9833 Evaluate @var{text} with @var{var} bound to each word in @var{words},
9834 and concatenate the results.@*
9835 @xref{Foreach Function, ,The @code{foreach} Function}.
9837 @item $(call @var{var},@var{param},@dots{})
9839 Evaluate the variable @var{var} replacing any references to @code{$(1)},
9840 @code{$(2)} with the first, second, etc. @var{param} values.@*
9841 @xref{Call Function, ,The @code{call} Function}.
9843 @item $(eval @var{text})
9845 Evaluate @var{text} then read the results as makefile commands.
9846 Expands to the empty string.@*
9847 @xref{Eval Function, ,The @code{eval} Function}.
9849 @item $(value @var{var})
9851 Evaluates to the contents of the variable @var{var}, with no expansion
9852 performed on it.@*
9853 @xref{Value Function, ,The @code{value} Function}.
9854 @end table
9856 Here is a summary of the automatic variables.
9857 @xref{Automatic Variables},
9858 for full information.
9860 @table @code
9861 @item $@@
9862 The file name of the target.
9864 @item $%
9865 The target member name, when the target is an archive member.
9867 @item $<
9868 The name of the first prerequisite.
9870 @item $?
9871 The names of all the prerequisites that are
9872 newer than the target, with spaces between them.
9873 For prerequisites which are archive members, only
9874 the member named is used (@pxref{Archives}).
9876 @item $^
9877 @itemx $+
9878 The names of all the prerequisites, with spaces between them.  For
9879 prerequisites which are archive members, only the member named is used
9880 (@pxref{Archives}).  The value of @code{$^} omits duplicate
9881 prerequisites, while @code{$+} retains them and preserves their order.
9883 @item $*
9884 The stem with which an implicit rule matches
9885 (@pxref{Pattern Match, ,How Patterns Match}).
9887 @item $(@@D)
9888 @itemx $(@@F)
9889 The directory part and the file-within-directory part of @code{$@@}.
9891 @item $(*D)
9892 @itemx $(*F)
9893 The directory part and the file-within-directory part of @code{$*}.
9895 @item $(%D)
9896 @itemx $(%F)
9897 The directory part and the file-within-directory part of @code{$%}.
9899 @item $(<D)
9900 @itemx $(<F)
9901 The directory part and the file-within-directory part of @code{$<}.
9903 @item $(^D)
9904 @itemx $(^F)
9905 The directory part and the file-within-directory part of @code{$^}.
9907 @item $(+D)
9908 @itemx $(+F)
9909 The directory part and the file-within-directory part of @code{$+}.
9911 @item $(?D)
9912 @itemx $(?F)
9913 The directory part and the file-within-directory part of @code{$?}.
9914 @end table
9916 These variables are used specially by GNU @code{make}:
9918 @table @code
9919 @item MAKEFILES
9921 Makefiles to be read on every invocation of @code{make}.@*
9922 @xref{MAKEFILES Variable, ,The Variable @code{MAKEFILES}}.
9924 @item VPATH
9926 Directory search path for files not found in the current directory.@*
9927 @xref{General Search, , @code{VPATH} Search Path for All Prerequisites}.
9929 @item SHELL
9931 The name of the system default command interpreter, usually @file{/bin/sh}.
9932 You can set @code{SHELL} in the makefile to change the shell used to run
9933 commands.  @xref{Execution, ,Command Execution}.  The @code{SHELL}
9934 variable is handled specially when importing from and exporting to the
9935 environment.  @xref{Environment, ,Using Variable from the Environment}.
9937 @item MAKESHELL
9939 On MS-DOS only, the name of the command interpreter that is to be used
9940 by @code{make}. This value takes precedence over the value of
9941 @code{SHELL}.  @xref{Execution, ,MAKESHELL variable}.
9943 @item MAKE
9945 The name with which @code{make} was invoked.
9946 Using this variable in commands has special meaning.
9947 @xref{MAKE Variable, ,How the @code{MAKE} Variable Works}.
9949 @item MAKELEVEL
9951 The number of levels of recursion (sub-@code{make}s).@*
9952 @xref{Variables/Recursion}.
9954 @item MAKEFLAGS
9956 The flags given to @code{make}.  You can set this in the environment or
9957 a makefile to set flags.@*
9958 @xref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
9960 It is @emph{never} appropriate to use @code{MAKEFLAGS} directly on a
9961 command line: its contents may not be quoted correctly for use in the
9962 shell.  Always allow recursive @code{make}'s to obtain these values
9963 through the environment from its parent.
9965 @item MAKECMDGOALS
9967 The targets given to @code{make} on the command line.  Setting this
9968 variable has no effect on the operation of @code{make}.@*
9969 @xref{Goals, ,Arguments to Specify the Goals}.
9971 @item CURDIR
9973 Set to the pathname of the current working directory (after all
9974 @code{-C} options are processed, if any).  Setting this variable has no
9975 effect on the operation of @code{make}.@*
9976 @xref{Recursion, ,Recursive Use of @code{make}}.
9978 @item SUFFIXES
9980 The default list of suffixes before @code{make} reads any makefiles.
9982 @item .LIBPATTERNS
9983 Defines the naming of the libraries @code{make} searches for, and their
9984 order.@*
9985 @xref{Libraries/Search, ,Directory Search for Link Libraries}.
9986 @end table
9988 @node Error Messages, Complex Makefile, Quick Reference, Top
9989 @comment  node-name,  next,  previous,  up
9990 @appendix Errors Generated by Make
9992 Here is a list of the more common errors you might see generated by
9993 @code{make}, and some information about what they mean and how to fix
9994 them.
9996 Sometimes @code{make} errors are not fatal, especially in the presence
9997 of a @code{-} prefix on a command script line, or the @code{-k} command
9998 line option.  Errors that are fatal are prefixed with the string
9999 @code{***}.
10001 Error messages are all either prefixed with the name of the program
10002 (usually @samp{make}), or, if the error is found in a makefile, the name
10003 of the file and linenumber containing the problem.
10005 In the table below, these common prefixes are left off.
10007 @table @samp
10009 @item [@var{foo}] Error @var{NN}
10010 @itemx [@var{foo}] @var{signal description}
10011 These errors are not really @code{make} errors at all.  They mean that a
10012 program that @code{make} invoked as part of a command script returned a
10013 non-0 error code (@samp{Error @var{NN}}), which @code{make} interprets
10014 as failure, or it exited in some other abnormal fashion (with a
10015 signal of some type).  @xref{Errors, ,Errors in Commands}.
10017 If no @code{***} is attached to the message, then the subprocess failed
10018 but the rule in the makefile was prefixed with the @code{-} special
10019 character, so @code{make} ignored the error.
10021 @item missing separator.  Stop.
10022 @itemx missing separator (did you mean TAB instead of 8 spaces?).  Stop.
10023 This means that @code{make} could not understand much of anything about
10024 the command line it just read.  GNU @code{make} looks for various kinds
10025 of separators (@code{:}, @code{=}, TAB characters, etc.) to help it
10026 decide what kind of commandline it's seeing.  This means it couldn't
10027 find a valid one.
10029 One of the most common reasons for this message is that you (or perhaps
10030 your oh-so-helpful editor, as is the case with many MS-Windows editors)
10031 have attempted to indent your command scripts with spaces instead of a
10032 TAB character.  In this case, @code{make} will use the second form of
10033 the error above.  Remember that every line in the command script must
10034 begin with a TAB character.  Eight spaces do not count.  @xref{Rule
10035 Syntax}.
10037 @item commands commence before first target.  Stop.
10038 @itemx missing rule before commands.  Stop.
10039 This means the first thing in the makefile seems to be part of a command
10040 script: it begins with a TAB character and doesn't appear to be a legal
10041 @code{make} command (such as a variable assignment).  Command scripts
10042 must always be associated with a target.
10044 The second form is generated if the line has a semicolon as the first
10045 non-whitespace character; @code{make} interprets this to mean you left
10046 out the "target: prerequisite" section of a rule.  @xref{Rule Syntax}.
10048 @item No rule to make target `@var{xxx}'.
10049 @itemx No rule to make target `@var{xxx}', needed by `@var{yyy}'.
10050 This means that @code{make} decided it needed to build a target, but
10051 then couldn't find any instructions in the makefile on how to do that,
10052 either explicit or implicit (including in the default rules database).
10054 If you want that file to be built, you will need to add a rule to your
10055 makefile describing how that target can be built.  Other possible
10056 sources of this problem are typos in the makefile (if that filename is
10057 wrong) or a corrupted source tree (if that file is not supposed to be
10058 built, but rather only a prerequisite).
10060 @item No targets specified and no makefile found.  Stop.
10061 @itemx No targets.  Stop.
10062 The former means that you didn't provide any targets to be built on the
10063 command line, and @code{make} couldn't find any makefiles to read in.
10064 The latter means that some makefile was found, but it didn't contain any
10065 default target and none was given on the command line.  GNU @code{make}
10066 has nothing to do in these situations.
10067 @xref{Makefile Arguments, ,Arguments to Specify the Makefile}.@refill
10069 @item Makefile `@var{xxx}' was not found.
10070 @itemx Included makefile `@var{xxx}' was not found.
10071 A makefile specified on the command line (first form) or included
10072 (second form) was not found.
10074 @item warning: overriding commands for target `@var{xxx}'
10075 @itemx warning: ignoring old commands for target `@var{xxx}'
10076 GNU @code{make} allows commands to be specified only once per target
10077 (except for double-colon rules).  If you give commands for a target
10078 which already has been defined to have commands, this warning is issued
10079 and the second set of commands will overwrite the first set.
10080 @xref{Multiple Rules, ,Multiple Rules for One Target}.
10082 @item Circular @var{xxx} <- @var{yyy} dependency dropped.
10083 This means that @code{make} detected a loop in the dependency graph:
10084 after tracing the prerequisite @var{yyy} of target @var{xxx}, and its
10085 prerequisites, etc., one of them depended on @var{xxx} again.
10087 @item Recursive variable `@var{xxx}' references itself (eventually).  Stop.
10088 This means you've defined a normal (recursive) @code{make} variable
10089 @var{xxx} that, when it's expanded, will refer to itself (@var{xxx}).
10090 This is not allowed; either use simply-expanded variables (@code{:=}) or
10091 use the append operator (@code{+=}).  @xref{Using Variables, ,How to Use
10092 Variables}.
10094 @item Unterminated variable reference.  Stop.
10095 This means you forgot to provide the proper closing parenthesis
10096 or brace in your variable or function reference.
10098 @item insufficient arguments to function `@var{xxx}'.  Stop.
10099 This means you haven't provided the requisite number of arguments for
10100 this function.  See the documentation of the function for a description
10101 of its arguments.  @xref{Functions, ,Functions for Transforming Text}.
10103 @item missing target pattern.  Stop.
10104 @itemx multiple target patterns.  Stop.
10105 @itemx target pattern contains no `%'.  Stop.
10106 @itemx mixed implicit and static pattern rules.  Stop.
10107 These are generated for malformed static pattern rules.  The first means
10108 there's no pattern in the target section of the rule; the second means
10109 there are multiple patterns in the target section; the third means
10110 the target doesn't contain a pattern character (@code{%}); and the
10111 fourth means that all three parts of the static pattern rule contain
10112 pattern characters (@code{%})--only the first two parts should.
10113 @xref{Static Usage, ,Syntax of Static Pattern Rules}.
10115 @item warning: -jN forced in submake: disabling jobserver mode.
10116 This warning and the next are generated if @code{make} detects error
10117 conditions related to parallel processing on systems where
10118 sub-@code{make}s can communicate (@pxref{Options/Recursion,
10119 ,Communicating Options to a Sub-@code{make}}).  This warning is
10120 generated if a recursive invocation of a @code{make} process is forced
10121 to have @samp{-j@var{N}} in its argument list (where @var{N} is greater
10122 than one).  This could happen, for example, if you set the @code{MAKE}
10123 environment variable to @samp{make -j2}.  In this case, the
10124 sub-@code{make} doesn't communicate with other @code{make} processes and
10125 will simply pretend it has two jobs of its own.
10127 @item warning: jobserver unavailable: using -j1.  Add `+' to parent make rule.
10128 In order for @code{make} processes to communicate, the parent will pass
10129 information to the child.  Since this could result in problems if the
10130 child process isn't actually a @code{make}, the parent will only do this
10131 if it thinks the child is a @code{make}.  The parent uses the normal
10132 algorithms to determine this (@pxref{MAKE Variable, ,How the @code{MAKE}
10133 Variable Works}).  If the makefile is constructed such that the parent
10134 doesn't know the child is a @code{make} process, then the child will
10135 receive only part of the information necessary.  In this case, the child
10136 will generate this warning message and proceed with its build in a
10137 sequential manner.
10139 @end table
10141 @node Complex Makefile, GNU Free Documentation License, Error Messages, Top
10142 @appendix Complex Makefile Example
10144 Here is the makefile for the GNU @code{tar} program.  This is a
10145 moderately complex makefile.
10147 Because it is the first target, the default goal is @samp{all}.  An
10148 interesting feature of this makefile is that @file{testpad.h} is a
10149 source file automatically created by the @code{testpad} program,
10150 itself compiled from @file{testpad.c}.
10152 If you type @samp{make} or @samp{make all}, then @code{make} creates
10153 the @file{tar} executable, the @file{rmt} daemon that provides
10154 remote tape access, and the @file{tar.info} Info file.
10156 If you type @samp{make install}, then @code{make} not only creates
10157 @file{tar}, @file{rmt}, and @file{tar.info}, but also installs
10158 them.
10160 If you type @samp{make clean}, then @code{make} removes the @samp{.o}
10161 files, and the @file{tar}, @file{rmt}, @file{testpad},
10162 @file{testpad.h}, and @file{core} files.
10164 If you type @samp{make distclean}, then @code{make} not only removes
10165 the same files as does @samp{make clean} but also the
10166 @file{TAGS}, @file{Makefile}, and @file{config.status} files.
10167 (Although it is not evident, this makefile (and
10168 @file{config.status}) is generated by the user with the
10169 @code{configure} program, which is provided in the @code{tar}
10170 distribution, but is not shown here.)
10172 If you type @samp{make realclean}, then @code{make} removes the same
10173 files as does @samp{make distclean} and also removes the Info files
10174 generated from @file{tar.texinfo}.
10176 In addition, there are targets @code{shar} and @code{dist} that create
10177 distribution kits.
10179 @example
10180 @group
10181 # Generated automatically from Makefile.in by configure.
10182 # Un*x Makefile for GNU tar program.
10183 # Copyright (C) 1991 Free Software Foundation, Inc.
10184 @end group
10186 @group
10187 # This program is free software; you can redistribute
10188 # it and/or modify it under the terms of the GNU
10189 # General Public License @dots{}
10190 @dots{}
10191 @dots{}
10192 @end group
10194 SHELL = /bin/sh
10196 #### Start of system configuration section. ####
10198 srcdir = .
10200 @group
10201 # If you use gcc, you should either run the
10202 # fixincludes script that comes with it or else use
10203 # gcc with the -traditional option.  Otherwise ioctl
10204 # calls will be compiled incorrectly on some systems.
10205 CC = gcc -O
10206 YACC = bison -y
10207 INSTALL = /usr/local/bin/install -c
10208 INSTALLDATA = /usr/local/bin/install -c -m 644
10209 @end group
10211 # Things you might add to DEFS:
10212 # -DSTDC_HEADERS        If you have ANSI C headers and
10213 #                       libraries.
10214 # -DPOSIX               If you have POSIX.1 headers and
10215 #                       libraries.
10216 # -DBSD42               If you have sys/dir.h (unless
10217 #                       you use -DPOSIX), sys/file.h,
10218 #                       and st_blocks in `struct stat'.
10219 # -DUSG                 If you have System V/ANSI C
10220 #                       string and memory functions
10221 #                       and headers, sys/sysmacros.h,
10222 #                       fcntl.h, getcwd, no valloc,
10223 #                       and ndir.h (unless
10224 #                       you use -DDIRENT).
10225 # -DNO_MEMORY_H         If USG or STDC_HEADERS but do not
10226 #                       include memory.h.
10227 # -DDIRENT              If USG and you have dirent.h
10228 #                       instead of ndir.h.
10229 # -DSIGTYPE=int         If your signal handlers
10230 #                       return int, not void.
10231 # -DNO_MTIO             If you lack sys/mtio.h
10232 #                       (magtape ioctls).
10233 # -DNO_REMOTE           If you do not have a remote shell
10234 #                       or rexec.
10235 # -DUSE_REXEC           To use rexec for remote tape
10236 #                       operations instead of
10237 #                       forking rsh or remsh.
10238 # -DVPRINTF_MISSING     If you lack vprintf function
10239 #                       (but have _doprnt).
10240 # -DDOPRNT_MISSING      If you lack _doprnt function.
10241 #                       Also need to define
10242 #                       -DVPRINTF_MISSING.
10243 # -DFTIME_MISSING       If you lack ftime system call.
10244 # -DSTRSTR_MISSING      If you lack strstr function.
10245 # -DVALLOC_MISSING      If you lack valloc function.
10246 # -DMKDIR_MISSING       If you lack mkdir and
10247 #                       rmdir system calls.
10248 # -DRENAME_MISSING      If you lack rename system call.
10249 # -DFTRUNCATE_MISSING   If you lack ftruncate
10250 #                       system call.
10251 # -DV7                  On Version 7 Unix (not
10252 #                       tested in a long time).
10253 # -DEMUL_OPEN3          If you lack a 3-argument version
10254 #                       of open, and want to emulate it
10255 #                       with system calls you do have.
10256 # -DNO_OPEN3            If you lack the 3-argument open
10257 #                       and want to disable the tar -k
10258 #                       option instead of emulating open.
10259 # -DXENIX               If you have sys/inode.h
10260 #                       and need it 94 to be included.
10262 DEFS =  -DSIGTYPE=int -DDIRENT -DSTRSTR_MISSING \
10263         -DVPRINTF_MISSING -DBSD42
10264 # Set this to rtapelib.o unless you defined NO_REMOTE,
10265 # in which case make it empty.
10266 RTAPELIB = rtapelib.o
10267 LIBS =
10268 DEF_AR_FILE = /dev/rmt8
10269 DEFBLOCKING = 20
10271 @group
10272 CDEBUG = -g
10273 CFLAGS = $(CDEBUG) -I. -I$(srcdir) $(DEFS) \
10274         -DDEF_AR_FILE=\"$(DEF_AR_FILE)\" \
10275         -DDEFBLOCKING=$(DEFBLOCKING)
10276 LDFLAGS = -g
10277 @end group
10279 @group
10280 prefix = /usr/local
10281 # Prefix for each installed program,
10282 # normally empty or `g'.
10283 binprefix =
10285 # The directory to install tar in.
10286 bindir = $(prefix)/bin
10288 # The directory to install the info files in.
10289 infodir = $(prefix)/info
10290 @end group
10292 #### End of system configuration section. ####
10294 SRC1 =  tar.c create.c extract.c buffer.c \
10295         getoldopt.c update.c gnu.c mangle.c
10296 SRC2 =  version.c list.c names.c diffarch.c \
10297         port.c wildmat.c getopt.c
10298 SRC3 =  getopt1.c regex.c getdate.y
10299 SRCS =  $(SRC1) $(SRC2) $(SRC3)
10300 OBJ1 =  tar.o create.o extract.o buffer.o \
10301         getoldopt.o update.o gnu.o mangle.o
10302 OBJ2 =  version.o list.o names.o diffarch.o \
10303         port.o wildmat.o getopt.o
10304 OBJ3 =  getopt1.o regex.o getdate.o $(RTAPELIB)
10305 OBJS =  $(OBJ1) $(OBJ2) $(OBJ3)
10306 @group
10307 AUX =   README COPYING ChangeLog Makefile.in  \
10308         makefile.pc configure configure.in \
10309         tar.texinfo tar.info* texinfo.tex \
10310         tar.h port.h open3.h getopt.h regex.h \
10311         rmt.h rmt.c rtapelib.c alloca.c \
10312         msd_dir.h msd_dir.c tcexparg.c \
10313         level-0 level-1 backup-specs testpad.c
10314 @end group
10316 .PHONY: all
10317 all:    tar rmt tar.info
10319 @group
10320 .PHONY: tar
10321 tar:    $(OBJS)
10322         $(CC) $(LDFLAGS) -o $@@ $(OBJS) $(LIBS)
10323 @end group
10325 @group
10326 rmt:    rmt.c
10327         $(CC) $(CFLAGS) $(LDFLAGS) -o $@@ rmt.c
10328 @end group
10330 @group
10331 tar.info: tar.texinfo
10332         makeinfo tar.texinfo
10333 @end group
10335 @group
10336 .PHONY: install
10337 install: all
10338         $(INSTALL) tar $(bindir)/$(binprefix)tar
10339         -test ! -f rmt || $(INSTALL) rmt /etc/rmt
10340         $(INSTALLDATA) $(srcdir)/tar.info* $(infodir)
10341 @end group
10343 @group
10344 $(OBJS): tar.h port.h testpad.h
10345 regex.o buffer.o tar.o: regex.h
10346 # getdate.y has 8 shift/reduce conflicts.
10347 @end group
10349 @group
10350 testpad.h: testpad
10351         ./testpad
10352 @end group
10354 @group
10355 testpad: testpad.o
10356         $(CC) -o $@@ testpad.o
10357 @end group
10359 @group
10360 TAGS:   $(SRCS)
10361         etags $(SRCS)
10362 @end group
10364 @group
10365 .PHONY: clean
10366 clean:
10367         rm -f *.o tar rmt testpad testpad.h core
10368 @end group
10370 @group
10371 .PHONY: distclean
10372 distclean: clean
10373         rm -f TAGS Makefile config.status
10374 @end group
10376 @group
10377 .PHONY: realclean
10378 realclean: distclean
10379         rm -f tar.info*
10380 @end group
10382 @group
10383 .PHONY: shar
10384 shar: $(SRCS) $(AUX)
10385         shar $(SRCS) $(AUX) | compress \
10386           > tar-`sed -e '/version_string/!d' \
10387                      -e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
10388                      -e q
10389                      version.c`.shar.Z
10390 @end group
10392 @group
10393 .PHONY: dist
10394 dist: $(SRCS) $(AUX)
10395         echo tar-`sed \
10396              -e '/version_string/!d' \
10397              -e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
10398              -e q
10399              version.c` > .fname
10400         -rm -rf `cat .fname`
10401         mkdir `cat .fname`
10402         ln $(SRCS) $(AUX) `cat .fname`
10403         tar chZf `cat .fname`.tar.Z `cat .fname`
10404         -rm -rf `cat .fname` .fname
10405 @end group
10407 @group
10408 tar.zoo: $(SRCS) $(AUX)
10409         -rm -rf tmp.dir
10410         -mkdir tmp.dir
10411         -rm tar.zoo
10412         for X in $(SRCS) $(AUX) ; do \
10413             echo $$X ; \
10414             sed 's/$$/^M/' $$X \
10415             > tmp.dir/$$X ; done
10416         cd tmp.dir ; zoo aM ../tar.zoo *
10417         -rm -rf tmp.dir
10418 @end group
10419 @end example
10421 @raisesections
10422 @include fdl.texi
10423 @lowersections
10425 @node Concept Index, Name Index, GNU Free Documentation License, Top
10426 @unnumbered Index of Concepts
10428 @printindex cp
10430 @node Name Index,  , Concept Index, Top
10431 @unnumbered Index of Functions, Variables, & Directives
10433 @printindex fn
10435 @summarycontents
10436 @contents
10437 @bye