Sat Mar 2 16:26:52 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
[make.git] / make.texinfo
blobbbb7470fee8f99ed324b8c142e1c397f91313e71
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.texinfo,v 2.156 1996/03/01 17:02:26 roland Exp $
11 @set EDITION 0.50
12 @set VERSION 3.75 Beta
13 @set UPDATED 28 February 1996
14 @set UPDATE-MONTH February 1996
15 @comment The ISBN number might need to change on next publication.
16 @set ISBN 1-882114-78-7
18 @c finalout
20 @c ISPELL CHECK: done, 10 June 1993 --roland
22 @c Combine the variable and function indices:
23 @syncodeindex vr fn
24 @c Combine the program and concept indices:
25 @syncodeindex pg cp
27 @ifinfo
28 This file documents the GNU Make utility, which determines
29 automatically which pieces of a large program need to be recompiled,
30 and issues the commands to recompile them.
32 This is Edition @value{EDITION}, last updated @value{UPDATED},
33 of @cite{The GNU Make Manual}, for @code{make}, Version @value{VERSION}.
35 Copyright (C) 1988, '89, '90, '91, '92, '93, '94, '95
36         Free Software Foundation, Inc.
38 Permission is granted to make and distribute verbatim copies of
39 this manual provided the copyright notice and this permission notice
40 are preserved on all copies.
42 @ignore
43 Permission is granted to process this file through TeX and print the
44 results, provided the printed document carries copying permission
45 notice identical to this one except for the removal of this paragraph
46 (this paragraph not being relevant to the printed manual).
48 @end ignore
49 Permission is granted to copy and distribute modified versions of this
50 manual under the conditions for verbatim copying, provided that the entire
51 resulting derived work is distributed under the terms of a permission
52 notice identical to this one.
54 Permission is granted to copy and distribute translations of this manual
55 into another language, under the above conditions for modified versions,
56 except that this permission notice may be stated in a translation approved
57 by the Free Software Foundation.
58 @end ifinfo
60 @iftex
61 @shorttitlepage GNU Make
62 @end iftex
63 @titlepage
64 @title GNU Make
65 @subtitle A Program for Directing Recompilation
66 @subtitle Edition @value{EDITION}, for @code{make} Version @value{VERSION}.
67 @subtitle @value{UPDATE-MONTH}
68 @author Richard M. Stallman and Roland McGrath
69 @page
70 @vskip 0pt plus 1filll
71 Copyright @copyright{} 1988, '89, '90, '91, '92, '93, '94, '95 Free Software Foundation, Inc.
72 @sp 2
73 Published by the Free Software Foundation @*
74 59 Temple Place -- Suite 330, @*
75 Boston, MA 02111-1307 USA @*
76 Printed copies are available for $20 each. @*
77 ISBN @value{ISBN} @*
79 Permission is granted to make and distribute verbatim copies of
80 this manual provided the copyright notice and this permission notice
81 are preserved on all copies.
83 Permission is granted to copy and distribute modified versions of this
84 manual under the conditions for verbatim copying, provided that the entire
85 resulting derived work is distributed under the terms of a permission
86 notice identical to this one.
88 Permission is granted to copy and distribute translations of this manual
89 into another language, under the above conditions for modified versions,
90 except that this permission notice may be stated in a translation approved
91 by the Free Software Foundation.
92 @sp 2
93 Cover art by Etienne Suvasa.
94 @end titlepage
95 @page
97 @ifinfo
98 @node Top, Overview, (dir), (dir)
99 @top Make
101 The GNU @code{make} utility automatically determines which pieces of a
102 large program need to be recompiled, and issues the commands to
103 recompile them.@refill
105 This is Edition @value{EDITION} of the @cite{GNU Make Manual},
106 last updated @value{UPDATED}
107 for @code{make} Version @value{VERSION}.@refill
109 This manual describes @code{make} and contains the following chapters:@refill
110 @end ifinfo
112 @menu
113 * Overview::                    Overview of @code{make}.
114 * Introduction::                An introduction to @code{make}.
115 * Makefiles::                   Makefiles tell @code{make} what to do.
116 * Rules::                       Rules describe when a file must be remade.
117 * Commands::                    Commands say how to remake a file.
118 * Using Variables::             You can use variables to avoid repetition.
119 * Conditionals::                Use or ignore parts of the makefile based
120                                  on the values of variables.
121 * Functions::                   Many powerful ways to manipulate text.
122 * make Invocation: Running.     How to invoke @code{make} on the command line.
123 * Implicit Rules::              Use implicit rules to treat many files alike,
124                                  based on their file names.
125 * Archives::                    How @code{make} can update library archives.
126 * Features::                    Features GNU @code{make} has over other @code{make}s.
127 * Missing::                     What GNU @code{make} lacks from other @code{make}s.
128 * Makefile Conventions::        Conventions for makefiles in GNU programs.
129 * Quick Reference::             A quick reference for experienced users.
130 * Complex Makefile::            A real example of a straightforward,
131                                  but nontrivial, makefile.
132 * Concept Index::               Index of Concepts
133 * Name Index::                  Index of Functions, Variables, & Directives
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 Dependency::       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 * Remaking Makefiles::          How makefiles get remade.
160 * Overriding Makefiles::        How to override part of one makefile
161                                  with another makefile.
163 Writing Rules
165 * Rule Example::                An example explained.
166 * Rule Syntax::                 General syntax explained.
167 * Wildcards::                   Using wildcard characters such as `*'.
168 * Directory Search::            Searching other directories for source files.
169 * Phony Targets::               Using a target that is not a real file's name.
170 * Force Targets::               You can use a target without commands
171                                   or dependencies to mark other
172                                   targets as phony.
173 * Empty Targets::               When only the date matters and the
174                                   files are empty.
175 * Special Targets::             Targets with special built-in meanings.
176 * Multiple Targets::            When to make use of several targets in a rule.
177 * Multiple Rules::              How to use several rules with the same target.
178 * Static Pattern::              Static pattern rules apply to multiple targets
179                                   and can vary the dependencies according to
180                                   the target name.
181 * Double-Colon::                How to use a special kind of rule to allow
182                                   several independent rules for one target.
183 * Automatic Dependencies::      How to automatically generate rules giving
184                                  dependencies from the source files themselves.
186 Using Wildcard Characters in File Names
188 * Wildcard Examples::           Several examples
189 * Wildcard Pitfall::            Problems to avoid.
190 * Wildcard Function::           How to cause wildcard expansion where
191                                   it does not normally take place.
193 Searching Directories for Dependencies
195 * General Search::              Specifying a search path that applies
196                                   to every dependency.
197 * Selective Search::            Specifying a search path
198                                   for a specified class of names.
199 * Commands/Search::             How to write shell commands that work together
200                                   with search paths.
201 * Implicit/Search::             How search paths affect implicit rules.
202 * Libraries/Search::            Directory search for link libraries.
204 Static Pattern Rules
206 * Static Usage::                The syntax of static pattern rules.
207 * Static versus Implicit::      When are they better than implicit rules?
209 Writing the Commands in Rules
211 * Echoing::                     How to control when commands are echoed.
212 * Execution::                   How commands are executed.
213 * Parallel::                    How commands can be executed in parallel.
214 * Errors::                      What happens after a command execution error.
215 * Interrupts::                  What happens when a command is interrupted.
216 * Recursion::                   Invoking @code{make} from makefiles.
217 * Sequences::                   Defining canned sequences of commands.
218 * Empty Commands::              Defining useful, do-nothing commands.
220 Recursive Use of @code{make}
222 * MAKE Variable::               The special effects of using @samp{$(MAKE)}.
223 * Variables/Recursion::         How to communicate variables to a sub-@code{make}.
224 * Options/Recursion::           How to communicate options to a sub-@code{make}.
225 * -w Option::                   How the @samp{-w} or @samp{--print-directory} option
226                                  helps debug use of recursive @code{make} commands.
228 How to Use Variables
230 * Reference::                   How to use the value of a variable.
231 * Flavors::                     Variables come in two flavors.
232 * Advanced::                    Advanced features for referencing a variable.
233 * Values::                      All the ways variables get their values.
234 * Setting::                     How to set a variable in the makefile.
235 * Appending::                   How to append more text to the old value
236                                   of a variable.
237 * Override Directive::          How to set a variable in the makefile even if
238                                   the user has set it with a command argument.
239 * Defining::                    An alternate way to set a variable
240                                   to a verbatim string.
241 * Environment::                 Variable values can come from the environment.
243 Advanced Features for Reference to Variables
245 * Substitution Refs::           Referencing a variable with
246                                   substitutions on the value.
247 * Computed Names::              Computing the name of the variable to refer to.
249 Conditional Parts of Makefiles
251 * Conditional Example::         Example of a conditional
252 * Conditional Syntax::          The syntax of conditionals.
253 * Testing Flags::               Conditionals that test flags.
255 Functions for Transforming Text
257 * Syntax of Functions::         How to write a function call.
258 * Text Functions::              General-purpose text manipulation functions.
259 * Filename Functions::          Functions for manipulating file names.
260 * Foreach Function::            Repeat some text with controlled variation.
261 * Origin Function::             Find where a variable got its value.
262 * Shell Function::              Substitute the output of a shell command.
264 How to Run @code{make}
266 * Makefile Arguments::          How to specify which makefile to use.
267 * Goals::                       How to use goal arguments to specify which
268                                   parts of the makefile to use.
269 * Instead of Execution::        How to use mode flags to specify what
270                                   kind of thing to do with the commands
271                                   in the makefile other than simply
272                                   execute them.
273 * Avoiding Compilation::        How to avoid recompiling certain files.
274 * Overriding::                  How to override a variable to specify
275                                   an alternate compiler and other things.
276 * Testing::                     How to proceed past some errors, to
277                                   test compilation.
278 * Options Summary::             Summary of Options
280 Using Implicit Rules
282 * Using Implicit::              How to use an existing implicit rule
283                                   to get the commands for updating a file.
284 * Catalogue of Rules::          A list of built-in implicit rules.
285 * Implicit Variables::          How to change what predefined rules do.
286 * Chained Rules::               How to use a chain of implicit rules.
287 * Pattern Rules::               How to define new implicit rules.
288 * Last Resort::                 How to defining commands for rules
289                                   which cannot find any.
290 * Suffix Rules::                The old-fashioned style of implicit rule.
291 * Search Algorithm::            The precise algorithm for applying
292                                   implicit rules.
294 Defining and Redefining Pattern Rules
296 * Pattern Intro::               An introduction to pattern rules.
297 * Pattern Examples::            Examples of pattern rules.
298 * Automatic::                   How to use automatic variables in the
299                                   commands of implicit rules.
300 * Pattern Match::               How patterns match.
301 * Match-Anything Rules::        Precautions you should take prior to
302                                   defining rules that can match any
303                                   target file whatever.
304 * Canceling Rules::             How to override or cancel built-in rules.
306 Using @code{make} to Update Archive Files
308 * Archive Members::             Archive members as targets.
309 * Archive Update::              The implicit rule for archive member targets.
310 * Archive Suffix Rules::        You can write a special kind of suffix rule
311                                   for updating archives.
313 Implicit Rule for Archive Member Targets
315 * Archive Symbols::             How to update archive symbol directories.
316 @end menu
318 @node Overview, Introduction, Top, Top
319 @comment  node-name,  next,  previous,  up
320 @chapter Overview of @code{make}
322 The @code{make} utility automatically determines which pieces of a large
323 program need to be recompiled, and issues commands to recompile them.
324 This manual describes GNU @code{make}, which was implemented by Richard
325 Stallman and Roland McGrath.  GNU @code{make} conforms to section 6.2 of
326 @cite{IEEE Standard 1003.2-1992} (POSIX.2).
327 @cindex POSIX
328 @cindex IEEE Standard 1003.2
329 @cindex standards conformance
331 Our examples show C programs, since they are most common, but you can use
332 @code{make} with any programming language whose compiler can be run with a
333 shell command.  Indeed, @code{make} is not limited to programs.  You can
334 use it to describe any task where some files must be updated automatically
335 from others whenever the others change.
337 @menu
338 * Preparing::                   Preparing and Running Make
339 * Reading::                     On Reading this Text
340 * Bugs::                        Problems and Bugs
341 @end menu
343 @node Preparing, Reading,  , Overview
344 @ifinfo
345 @heading Preparing and Running Make
346 @end ifinfo
348 To prepare to use @code{make}, you must write a file called
349 the @dfn{makefile} that describes the relationships among files
350 in your program and provides commands for updating each file.
351 In a program, typically, the executable file is updated from object
352 files, which are in turn made by compiling source files.@refill
354 Once a suitable makefile exists, each time you change some source files,
355 this simple shell command:
357 @example
358 make
359 @end example
361 @noindent
362 suffices to perform all necessary recompilations.  The @code{make} program
363 uses the makefile data base and the last-modification times of the files to
364 decide which of the files need to be updated.  For each of those files, it
365 issues the commands recorded in the data base.
367 You can provide command line arguments to @code{make} to control which
368 files should be recompiled, or how.  @xref{Running, ,How to Run
369 @code{make}}.
371 @node Reading, Bugs, Preparing, Overview
372 @section How to Read This Manual
374 If you are new to @code{make}, or are looking for a general
375 introduction, read the first few sections of each chapter, skipping the
376 later sections.  In each chapter, the first few sections contain
377 introductory or general information and the later sections contain
378 specialized or technical information.
379 @ifinfo
380 The exception is the second chapter, @ref{Introduction, ,An
381 Introduction to Makefiles}, all of which is introductory.
382 @end ifinfo
383 @iftex
384 The exception is @ref{Introduction, ,An Introduction to Makefiles},
385 all of which is introductory.
386 @end iftex
388 If you are familiar with other @code{make} programs, see @ref{Features,
389 ,Features of GNU @code{make}}, which lists the enhancements GNU
390 @code{make} has, and @ref{Missing, ,Incompatibilities and Missing
391 Features}, which explains the few things GNU @code{make} lacks that
392 others have.
394 For a quick summary, see @ref{Options Summary}, @ref{Quick Reference},
395 and @ref{Special Targets}.
397 @node Bugs,  , Reading, Overview
398 @section Problems and Bugs
399 @cindex reporting bugs
400 @cindex bugs, reporting
401 @cindex problems and bugs, reporting
403 If you have problems with GNU @code{make} or think you've found a bug,
404 please report it to the developers; we cannot promise to do anything but
405 we might well want to fix it.
407 Before reporting a bug, make sure you've actually found a real bug.
408 Carefully reread the documentation and see if it really says you can do
409 what you're trying to do.  If it's not clear whether you should be able
410 to do something or not, report that too; it's a bug in the
411 documentation!
413 Before reporting a bug or trying to fix it yourself, try to isolate it
414 to the smallest possible makefile that reproduces the problem.  Then
415 send us the makefile and the exact results @code{make} gave you.  Also
416 say what you expected to occur; this will help us decide whether the
417 problem was really in the documentation.
419 Once you've got a precise problem, please send electronic mail either
420 through the Internet or via UUCP:
422 @example
423 @group
424 @r{Internet address:}
425     bug-gnu-utils@@prep.ai.mit.edu
427 @r{UUCP path:}
428     mit-eddie!prep.ai.mit.edu!bug-gnu-utils
429 @end group
430 @end example
432 @noindent
433 Please include the version number of @code{make} you are using.  You can
434 get this information with the command @samp{make --version}.
435 Be sure also to include the type of machine and operating system you are
436 using.  If possible, include the contents of the file @file{config.h}
437 that is generated by the configuration process.
439 @node Introduction, Makefiles, Overview, Top
440 @comment  node-name,  next,  previous,  up
441 @chapter An Introduction to Makefiles
443 You need a file called a @dfn{makefile} to tell @code{make} what to do.
444 Most often, the makefile tells @code{make} how to compile and link a
445 program.
446 @cindex makefile
448 In this chapter, we will discuss a simple makefile that describes how to
449 compile and link a text editor which consists of eight C source files
450 and three header files.  The makefile can also tell @code{make} how to
451 run miscellaneous commands when explicitly asked (for example, to remove
452 certain files as a clean-up operation).  To see a more complex example
453 of a makefile, see @ref{Complex Makefile}.
455 When @code{make} recompiles the editor, each changed C source file
456 must be recompiled.  If a header file has changed, each C source file
457 that includes the header file must be recompiled to be safe.  Each
458 compilation produces an object file corresponding to the source file.
459 Finally, if any source file has been recompiled, all the object files,
460 whether newly made or saved from previous compilations, must be linked
461 together to produce the new executable editor.
462 @cindex recompilation
463 @cindex editor
465 @menu
466 * Rule Introduction::           What a rule looks like.
467 * Simple Makefile::             A Simple Makefile
468 * How Make Works::              How @code{make} Processes This Makefile
469 * Variables Simplify::          Variables Make Makefiles Simpler
470 * make Deduces::                Letting @code{make} Deduce the Commands
471 * Combine By Dependency::       Another Style of Makefile
472 * Cleanup::                     Rules for Cleaning the Directory
473 @end menu
475 @node Rule Introduction, Simple Makefile,  , Introduction
476 @comment  node-name,  next,  previous,  up
477 @section What a Rule Looks Like
478 @cindex rule, introduction to
479 @cindex makefile rule parts
480 @cindex parts of makefile rule
482 A simple makefile consists of ``rules'' with the following shape:
484 @cindex targets, introduction to
485 @cindex dependencies, introduction to
486 @cindex commands, introduction to
487 @example
488 @group
489 @var{target} @dots{} : @var{dependencies} @dots{}
490         @var{command}
491         @dots{}
492         @dots{}
493 @end group
494 @end example
496 A @dfn{target} is usually the name of a file that is generated by a
497 program; examples of targets are executable or object files.  A target
498 can also be the name of an action to carry out, such as @samp{clean}
499 (@pxref{Phony Targets}).
501 A @dfn{dependency} is a file that is used as input to create the
502 target.  A target often depends on several files.
504 @cindex tabs in rules
505 A @dfn{command} is an action that @code{make} carries out.
506 A rule may have more than one command, each on its own line.
507 @strong{Please note:} you need to put a tab character at the beginning of
508 every command line!  This is an obscurity that catches the unwary.
510 Usually a command is in a rule with dependencies and serves to create a
511 target file if any of the dependencies change.  However, the rule that
512 specifies commands for the target need not have dependencies.  For
513 example, the rule containing the delete command associated with the
514 target @samp{clean} does not have dependencies.
516 A @dfn{rule}, then, explains how and when to remake certain files
517 which are the targets of the particular rule.  @code{make} carries out
518 the commands on the dependencies to create or update the target.  A
519 rule can also explain how and when to carry out an action.
520 @xref{Rules, , Writing Rules}.
522 A makefile may contain other text besides rules, but a simple makefile
523 need only contain rules.  Rules may look somewhat more complicated
524 than shown in this template, but all fit the pattern more or less.
526 @node Simple Makefile, How Make Works, Rule Introduction, Introduction
527 @section A Simple Makefile
528 @cindex simple makefile
529 @cindex makefile, simple
531 Here is a straightforward makefile that describes the way an
532 executable file called @code{edit} depends on eight object files
533 which, in turn, depend on eight C source and three header files.
535 In this example, all the C files include @file{defs.h}, but only those
536 defining editing commands include @file{command.h}, and only low
537 level files that change the editor buffer include @file{buffer.h}.
539 @example
540 @group
541 edit : main.o kbd.o command.o display.o \
542        insert.o search.o files.o utils.o
543         cc -o edit main.o kbd.o command.o display.o \
544                    insert.o search.o files.o utils.o
546 main.o : main.c defs.h
547         cc -c main.c
548 kbd.o : kbd.c defs.h command.h
549         cc -c kbd.c
550 command.o : command.c defs.h command.h
551         cc -c command.c
552 display.o : display.c defs.h buffer.h
553         cc -c display.c
554 insert.o : insert.c defs.h buffer.h
555         cc -c insert.c
556 search.o : search.c defs.h buffer.h
557         cc -c search.c
558 files.o : files.c defs.h buffer.h command.h
559         cc -c files.c
560 utils.o : utils.c defs.h
561         cc -c utils.c
562 clean :
563         rm edit main.o kbd.o command.o display.o \
564            insert.o search.o files.o utils.o
565 @end group
566 @end example
568 @noindent
569 We split each long line into two lines using backslash-newline; this is
570 like using one long line, but is easier to read.
571 @cindex continuation lines
572 @cindex @code{\} (backslash), for continuation lines
573 @cindex backslash (@code{\}), for continuation lines
574 @cindex quoting newline, in makefile
575 @cindex newline, quoting, in makefile
577 To use this makefile to create the executable file called @file{edit},
578 type:
580 @example
581 make
582 @end example
584 To use this makefile to delete the executable file and all the object
585 files from the directory, type:
587 @example
588 make clean
589 @end example
591 In the example makefile, the targets include the executable file
592 @samp{edit}, and the object files @samp{main.o} and @samp{kbd.o}.  The
593 dependencies are files such as @samp{main.c} and @samp{defs.h}.
594 In fact, each @samp{.o} file is both a target and a dependency.
595 Commands include @w{@samp{cc -c main.c}} and @w{@samp{cc -c kbd.c}}.
597 When a target is a file, it needs to be recompiled or relinked if any
598 of its dependencies change.  In addition, any dependencies that are
599 themselves automatically generated should be updated first.  In this
600 example, @file{edit} depends on each of the eight object files; the
601 object file @file{main.o} depends on the source file @file{main.c} and
602 on the header file @file{defs.h}.
604 A shell command follows each line that contains a target and
605 dependencies.  These shell commands say how to update the target file.
606 A tab character must come at the beginning of every command line to
607 distinguish commands lines from other lines in the makefile.  (Bear in
608 mind that @code{make} does not know anything about how the commands
609 work.  It is up to you to supply commands that will update the target
610 file properly.  All @code{make} does is execute the commands in the rule
611 you have specified when the target file needs to be updated.)
612 @cindex shell command
614 The target @samp{clean} is not a file, but merely the name of an
615 action.  Since you
616 normally
617 do not want to carry out the actions in this rule, @samp{clean} is not a dependency of any other rule.
618 Consequently, @code{make} never does anything with it unless you tell
619 it specifically.  Note that this rule not only is not a dependency, it
620 also does not have any dependencies, so the only purpose of the rule
621 is to run the specified commands.  Targets that do not refer to files
622 but are just actions are called @dfn{phony targets}.  @xref{Phony
623 Targets}, for information about this kind of target.  @xref{Errors, ,
624 Errors in Commands}, to see how to cause @code{make} to ignore errors
625 from @code{rm} or any other command.
626 @cindex @code{clean} target
627 @cindex @code{rm} (shell command)
629 @node How Make Works, Variables Simplify, Simple Makefile, Introduction
630 @comment  node-name,  next,  previous,  up
631 @section How @code{make} Processes a Makefile
632 @cindex processing a makefile
633 @cindex makefile, how @code{make} processes
635 By default, @code{make} starts with the first target (not targets whose
636 names start with @samp{.}).  This is called the @dfn{default goal}.
637 (@dfn{Goals} are the targets that @code{make} strives ultimately to
638 update.  @xref{Goals, , Arguments to Specify the Goals}.)
639 @cindex default goal
640 @cindex goal, default
641 @cindex goal
643 In the simple example of the previous section, the default goal is to
644 update the executable program @file{edit}; therefore, we put that rule
645 first.
647 Thus, when you give the command:
649 @example
650 make
651 @end example
653 @noindent
654 @code{make} reads the makefile in the current directory and begins by
655 processing the first rule.  In the example, this rule is for relinking
656 @file{edit}; but before @code{make} can fully process this rule, it
657 must process the rules for the files that @file{edit} depends on,
658 which in this case are the object files.  Each of these files is
659 processed according to its own rule.  These rules say to update each
660 @samp{.o} file by compiling its source file.  The recompilation must
661 be done if the source file, or any of the header files named as
662 dependencies, is more recent than the object file, or if the object
663 file does not exist.
665 The other rules are processed because their targets appear as
666 dependencies of the goal.  If some other rule is not depended on by the
667 goal (or anything it depends on, etc.), that rule is not processed,
668 unless you tell @code{make} to do so (with a command such as
669 @w{@code{make clean}}).
671 Before recompiling an object file, @code{make} considers updating its
672 dependencies, the source file and header files.  This makefile does not
673 specify anything to be done for them---the @samp{.c} and @samp{.h} files
674 are not the targets of any rules---so @code{make} does nothing for these
675 files.  But @code{make} would update automatically generated C programs,
676 such as those made by Bison or Yacc, by their own rules at this time.
678 After recompiling whichever object files need it, @code{make} decides
679 whether to relink @file{edit}.  This must be done if the file
680 @file{edit} does not exist, or if any of the object files are newer than
681 it.  If an object file was just recompiled, it is now newer than
682 @file{edit}, so @file{edit} is relinked.
683 @cindex relinking
685 Thus, if we change the file @file{insert.c} and run @code{make},
686 @code{make} will compile that file to update @file{insert.o}, and then
687 link @file{edit}.  If we change the file @file{command.h} and run
688 @code{make}, @code{make} will recompile the object files @file{kbd.o},
689 @file{command.o} and @file{files.o} and then link the file @file{edit}.
691 @node Variables Simplify, make Deduces, How Make Works, Introduction
692 @section Variables Make Makefiles Simpler
693 @cindex variables
694 @cindex simplifying with variables
696 In our example, we had to list all the object files twice in the rule for
697 @file{edit} (repeated here):
699 @example
700 @group
701 edit : main.o kbd.o command.o display.o \
702               insert.o search.o files.o utils.o
703         cc -o edit main.o kbd.o command.o display.o \
704                    insert.o search.o files.o utils.o
705 @end group
706 @end example
708 @cindex @code{objects}
709 Such duplication is error-prone; if a new object file is added to the
710 system, we might add it to one list and forget the other.  We can eliminate
711 the risk and simplify the makefile by using a variable.  @dfn{Variables}
712 allow a text string to be defined once and substituted in multiple places
713 later (@pxref{Using Variables, ,How to Use Variables}).
715 @cindex @code{OBJECTS}
716 @cindex @code{objs}
717 @cindex @code{OBJS}
718 @cindex @code{obj}
719 @cindex @code{OBJ}
720 It is standard practice for every makefile to have a variable named
721 @code{objects}, @code{OBJECTS}, @code{objs}, @code{OBJS}, @code{obj},
722 or @code{OBJ} which is a list of all object file names.  We would
723 define such a variable @code{objects} with a line like this in the
724 makefile:@refill
726 @example
727 @group
728 objects = main.o kbd.o command.o display.o \
729           insert.o search.o files.o utils.o
730 @end group
731 @end example
733 @noindent
734 Then, each place we want to put a list of the object file names, we can
735 substitute the variable's value by writing @samp{$(objects)}
736 (@pxref{Using Variables, ,How to Use Variables}).
738 Here is how the complete simple makefile looks when you use a variable
739 for the object files:
741 @example
742 @group
743 objects = main.o kbd.o command.o display.o \
744           insert.o search.o files.o utils.o
746 edit : $(objects)
747         cc -o edit $(objects)
748 main.o : main.c defs.h
749         cc -c main.c
750 kbd.o : kbd.c defs.h command.h
751         cc -c kbd.c
752 command.o : command.c defs.h command.h
753         cc -c command.c
754 display.o : display.c defs.h buffer.h
755         cc -c display.c
756 insert.o : insert.c defs.h buffer.h
757         cc -c insert.c
758 search.o : search.c defs.h buffer.h
759         cc -c search.c
760 files.o : files.c defs.h buffer.h command.h
761         cc -c files.c
762 utils.o : utils.c defs.h
763         cc -c utils.c
764 clean :
765         rm edit $(objects)
766 @end group
767 @end example
769 @node make Deduces, Combine By Dependency, Variables Simplify, Introduction
770 @section Letting @code{make} Deduce the Commands
771 @cindex deducing commands (implicit rules)
772 @cindex implicit rule, introduction to
773 @cindex rule, implicit, introduction to
775 It is not necessary to spell out the commands for compiling the individual
776 C source files, because @code{make} can figure them out: it has an
777 @dfn{implicit rule} for updating a @samp{.o} file from a correspondingly
778 named @samp{.c} file using a @samp{cc -c} command.  For example, it will
779 use the command @samp{cc -c main.c -o main.o} to compile @file{main.c} into
780 @file{main.o}.  We can therefore omit the commands from the rules for the
781 object files.  @xref{Implicit Rules, ,Using Implicit Rules}.@refill
783 When a @samp{.c} file is used automatically in this way, it is also
784 automatically added to the list of dependencies.  We can therefore omit
785 the @samp{.c} files from the dependencies, provided we omit the commands.
787 Here is the entire example, with both of these changes, and a variable
788 @code{objects} as suggested above:
790 @example
791 @group
792 objects = main.o kbd.o command.o display.o \
793           insert.o search.o files.o utils.o
795 edit : $(objects)
796         cc -o edit $(objects)
798 main.o : defs.h
799 kbd.o : defs.h command.h
800 command.o : defs.h command.h
801 display.o : defs.h buffer.h
802 insert.o : defs.h buffer.h
803 search.o : defs.h buffer.h
804 files.o : defs.h buffer.h command.h
805 utils.o : defs.h
807 .PHONY : clean
808 clean :
809         -rm edit $(objects)
810 @end group
811 @end example
813 @noindent
814 This is how we would write the makefile in actual practice.  (The
815 complications associated with @samp{clean} are described elsewhere.
816 See @ref{Phony Targets}, and @ref{Errors, ,Errors in Commands}.)
818 Because implicit rules are so convenient, they are important.  You
819 will see them used frequently.@refill
821 @node Combine By Dependency, Cleanup, make Deduces, Introduction
822 @section Another Style of Makefile
823 @cindex combining rules by dependency
825 When the objects of a makefile are created only by implicit rules, an
826 alternative style of makefile is possible.  In this style of makefile,
827 you group entries by their dependencies instead of by their targets.
828 Here is what one looks like:
830 @example
831 @group
832 objects = main.o kbd.o command.o display.o \
833           insert.o search.o files.o utils.o
835 edit : $(objects)
836         cc -o edit $(objects)
838 $(objects) : defs.h
839 kbd.o command.o files.o : command.h
840 display.o insert.o search.o files.o : buffer.h
841 @end group
842 @end example
844 @noindent
845 Here @file{defs.h} is given as a dependency of all the object files;
846 @file{command.h} and @file{buffer.h} are dependencies of the specific
847 object files listed for them.
849 Whether this is better is a matter of taste: it is more compact, but some
850 people dislike it because they find it clearer to put all the information
851 about each target in one place.
853 @node Cleanup,  , Combine By Dependency, Introduction
854 @section Rules for Cleaning the Directory
855 @cindex cleaning up
856 @cindex removing, to clean up
858 Compiling a program is not the only thing you might want to write rules
859 for.  Makefiles commonly tell how to do a few other things besides
860 compiling a program: for example, how to delete all the object files
861 and executables so that the directory is @samp{clean}.
863 @cindex @code{clean} target
864 Here is how we
865 could write a @code{make} rule for cleaning our example editor:
867 @example
868 @group
869 clean:
870         rm edit $(objects)
871 @end group
872 @end example
874 In practice, we might want to write the rule in a somewhat more
875 complicated manner to handle unanticipated situations.  We would do this:
877 @example
878 @group
879 .PHONY : clean
880 clean :
881         -rm edit $(objects)
882 @end group
883 @end example
885 @noindent
886 This prevents @code{make} from getting confused by an actual file
887 called @file{clean} and causes it to continue in spite of errors from
888 @code{rm}.  (See @ref{Phony Targets}, and @ref{Errors, ,Errors in
889 Commands}.)
891 @noindent
892 A rule such as this should not be placed at the beginning of the
893 makefile, because we do not want it to run by default!  Thus, in the
894 example makefile, we want the rule for @code{edit}, which recompiles
895 the editor, to remain the default goal.
897 Since @code{clean} is not a dependency of @code{edit}, this rule will not
898 run at all if we give the command @samp{make} with no arguments.  In
899 order to make the rule run, we have to type @samp{make clean}.
900 @xref{Running, ,How to Run @code{make}}.
902 @node Makefiles, Rules, Introduction, Top
903 @chapter Writing Makefiles
905 @cindex makefile, how to write
906 The information that tells @code{make} how to recompile a system comes from
907 reading a data base called the @dfn{makefile}.
909 @menu
910 * Makefile Contents::           What makefiles contain.
911 * Makefile Names::              How to name your makefile.
912 * Include::                     How one makefile can use another makefile.
913 * MAKEFILES Variable::          The environment can specify extra makefiles.
914 * Remaking Makefiles::          How makefiles get remade.
915 * Overriding Makefiles::        How to override part of one makefile
916                                  with another makefile.
917 @end menu
919 @node Makefile Contents, Makefile Names,  , Makefiles
920 @section What Makefiles Contain
922 Makefiles contain five kinds of things: @dfn{explicit rules},
923 @dfn{implicit rules}, @dfn{variable definitions}, @dfn{directives},
924 and @dfn{comments}.  Rules, variables, and directives are described at
925 length in later chapters.@refill
927 @itemize @bullet
928 @cindex rule, explicit, definition of
929 @cindex explicit rule, definition of
930 @item
931 An @dfn{explicit rule} says when and how to remake one or more files,
932 called the rule's targets.  It lists the other files that the targets
933 @dfn{depend on}, and may also give commands to use to create or update
934 the targets.  @xref{Rules, ,Writing Rules}.
936 @cindex rule, implicit, definition of
937 @cindex implicit rule, definition of
938 @item
939 An @dfn{implicit rule} says when and how to remake a class of files
940 based on their names.  It describes how a target may depend on a file
941 with a name similar to the target and gives commands to create or
942 update such a target.  @xref{Implicit Rules, ,Using Implicit Rules}.
944 @cindex variable definition
945 @item
946 A @dfn{variable definition} is a line that specifies a text string
947 value for a variable that can be substituted into the text later.  The
948 simple makefile example shows a variable definition for @code{objects}
949 as a list of all object files (@pxref{Variables Simplify, , Variables
950 Make Makefiles Simpler}).
952 @cindex directive
953 @item
954 A @dfn{directive} is a command for @code{make} to do something special while
955 reading the makefile.  These include:
957 @itemize @bullet
958 @item
959 Reading another makefile (@pxref{Include, ,Including Other Makefiles}).
961 @item
962 Deciding (based on the values of variables) whether to use or
963 ignore a part of the makefile (@pxref{Conditionals, ,Conditional Parts of Makefiles}).
965 @item
966 Defining a variable from a verbatim string containing multiple lines
967 (@pxref{Defining, ,Defining Variables Verbatim}).
968 @end itemize
970 @cindex comments, in makefile
971 @cindex @code{#} (comments), in makefile
972 @item
973 @samp{#} in a line of a makefile starts a @dfn{comment}.  It and the rest of
974 the line are ignored, except that a trailing backslash not escaped by
975 another backslash will continue the comment across multiple lines.
976 Comments may appear on any of the lines in the makefile, except within a
977 @code{define} directive, and perhaps within commands (where the shell
978 decides what is a comment).  A line containing just a comment (with
979 perhaps spaces before it) is effectively blank, and is ignored.@refill
980 @end itemize
982 @node Makefile Names, Include, Makefile Contents, Makefiles
983 @section What Name to Give Your Makefile
984 @cindex makefile name
985 @cindex name of makefile
986 @cindex default makefile name
987 @cindex file name of makefile
989 @c following paragraph rewritten to avoid overfull hbox
990 By default, when @code{make} looks for the makefile, it tries the
991 following names, in order: @file{GNUmakefile}, @file{makefile}
992 and @file{Makefile}.@refill
993 @findex Makefile
994 @findex GNUmakefile
995 @findex makefile
997 @cindex @code{README}
998 Normally you should call your makefile either @file{makefile} or
999 @file{Makefile}.  (We recommend @file{Makefile} because it appears
1000 prominently near the beginning of a directory listing, right near other
1001 important files such as @file{README}.)  The first name checked,
1002 @file{GNUmakefile}, is not recommended for most makefiles.  You should
1003 use this name if you have a makefile that is specific to GNU
1004 @code{make}, and will not be understood by other versions of
1005 @code{make}.  Other @code{make} programs look for @file{makefile} and
1006 @file{Makefile}, but not @file{GNUmakefile}.
1008 If @code{make} finds none of these names, it does not use any makefile.
1009 Then you must specify a goal with a command argument, and @code{make}
1010 will attempt to figure out how to remake it using only its built-in
1011 implicit rules.  @xref{Implicit Rules, ,Using Implicit Rules}.
1013 @cindex @code{-f}
1014 @cindex @code{--file}
1015 @cindex @code{--makefile}
1016 If you want to use a nonstandard name for your makefile, you can specify
1017 the makefile name with the @samp{-f} or @samp{--file} option.  The
1018 arguments @w{@samp{-f @var{name}}} or @w{@samp{--file=@var{name}}} tell
1019 @code{make} to read the file @var{name} as the makefile.  If you use
1020 more than one @samp{-f} or @samp{--file} option, you can specify several
1021 makefiles.  All the makefiles are effectively concatenated in the order
1022 specified.  The default makefile names @file{GNUmakefile},
1023 @file{makefile} and @file{Makefile} are not checked automatically if you
1024 specify @samp{-f} or @samp{--file}.@refill
1025 @cindex specifying makefile name
1026 @cindex makefile name, how to specify
1027 @cindex name of makefile, how to specify
1028 @cindex file name of makefile, how to specify
1030 @node Include, MAKEFILES Variable, Makefile Names, Makefiles
1031 @section Including Other Makefiles
1032 @cindex including other makefiles
1033 @cindex makefile, including
1035 @findex include
1036 The @code{include} directive tells @code{make} to suspend reading the
1037 current makefile and read one or more other makefiles before continuing.
1038 The directive is a line in the makefile that looks like this:
1040 @example
1041 include @var{filenames}@dots{}
1042 @end example
1044 @noindent
1045 @var{filenames} can contain shell file name patterns.
1046 @cindex shell file name pattern (in @code{include})
1047 @cindex shell wildcards (in @code{include})
1048 @cindex wildcard, in @code{include}
1050 Extra spaces are allowed and ignored at the beginning of the line, but
1051 a tab is not allowed.  (If the line begins with a tab, it will be
1052 considered a command line.)  Whitespace is required between
1053 @code{include} and the file names, and between file names; extra
1054 whitespace is ignored there and at the end of the directive.  A
1055 comment starting with @samp{#} is allowed at the end of the line.  If
1056 the file names contain any variable or function references, they are
1057 expanded.  @xref{Using Variables, ,How to Use Variables}.
1059 For example, if you have three @file{.mk} files, @file{a.mk},
1060 @file{b.mk}, and @file{c.mk}, and @code{$(bar)} expands to
1061 @code{bish bash}, then the following expression
1063 @example
1064 include foo *.mk $(bar)
1065 @end example
1067 is equivalent to
1069 @example
1070 include foo a.mk b.mk c.mk bish bash
1071 @end example
1073 When @code{make} processes an @code{include} directive, it suspends
1074 reading of the containing makefile and reads from each listed file in
1075 turn.  When that is finished, @code{make} resumes reading the
1076 makefile in which the directive appears.
1078 One occasion for using @code{include} directives is when several programs,
1079 handled by individual makefiles in various directories, need to use a
1080 common set of variable definitions
1081 (@pxref{Setting, ,Setting Variables}) or pattern rules
1082 (@pxref{Pattern Rules, ,Defining and Redefining Pattern Rules}).
1084 Another such occasion is when you want to generate dependencies from
1085 source files automatically; the dependencies can be put in a file that
1086 is included by the main makefile.  This practice is generally cleaner
1087 than that of somehow appending the dependencies to the end of the main
1088 makefile as has been traditionally done with other versions of
1089 @code{make}.  @xref{Automatic Dependencies}.
1090 @cindex dependencies, automatic generation
1091 @cindex automatic generation of dependencies
1092 @cindex generating dependencies automatically
1094 @cindex @code{-I}
1095 @cindex @code{--include-dir}
1096 @findex /usr/gnu/include
1097 @findex /usr/local/include
1098 @findex /usr/include
1099 If the specified name does not start with a slash, and the file is not
1100 found in the current directory, several other directories are searched.
1101 First, any directories you have specified with the @samp{-I} or
1102 @samp{--include-dir} option are searched
1103 (@pxref{Options Summary, ,Summary of Options}).
1104 Then the following directories (if they exist)
1105 are searched, in this order:
1106 @file{@var{prefix}/include} (normally @file{/usr/local/include})
1107 @file{/usr/gnu/include},
1108 @file{/usr/local/include}, @file{/usr/include}.
1110 If an included makefile cannot be found in any of these directories, a
1111 warning message is generated, but it is not an immediately fatal error;
1112 processing of the makefile containing the @code{include} continues.
1113 Once it has finished reading makefiles, @code{make} will try to remake
1114 any that are out of date or don't exist.
1115 @xref{Remaking Makefiles, ,How Makefiles Are Remade}.
1116 Only after it has tried to find a way to remake a makefile and failed,
1117 will @code{make} diagnose the missing makefile as a fatal error.
1119 If you want @code{make} to simply ignore a makefile which does not exist
1120 and cannot be remade, with no error message, use the @w{@code{-include}}
1121 directive instead of @code{include}, like this:
1123 @example
1124 -include @var{filenames}@dots{}
1125 @end example
1127 This is acts like @code{include} in every way except that there is no
1128 error (not even a warning) if any of the @var{filenames} do not exist.
1130 @node MAKEFILES Variable, Remaking Makefiles, Include, Makefiles
1131 @section The Variable @code{MAKEFILES}
1132 @cindex makefile, and @code{MAKEFILES} variable
1133 @cindex including (@code{MAKEFILES} variable)
1135 @vindex MAKEFILES
1136 If the environment variable @code{MAKEFILES} is defined, @code{make}
1137 considers its value as a list of names (separated by whitespace) of
1138 additional makefiles to be read before the others.  This works much like
1139 the @code{include} directive: various directories are searched for those
1140 files (@pxref{Include, ,Including Other Makefiles}).  In addition, the
1141 default goal is never taken from one of these makefiles and it is not an
1142 error if the files listed in @code{MAKEFILES} are not found.@refill
1144 @cindex recursion, and @code{MAKEFILES} variable
1145 The main use of @code{MAKEFILES} is in communication between recursive
1146 invocations of @code{make} (@pxref{Recursion, ,Recursive Use of
1147 @code{make}}).  It usually is not desirable to set the environment
1148 variable before a top-level invocation of @code{make}, because it is
1149 usually better not to mess with a makefile from outside.  However, if
1150 you are running @code{make} without a specific makefile, a makefile in
1151 @code{MAKEFILES} can do useful things to help the built-in implicit
1152 rules work better, such as defining search paths (@pxref{Directory Search}).
1154 Some users are tempted to set @code{MAKEFILES} in the environment
1155 automatically on login, and program makefiles to expect this to be done.
1156 This is a very bad idea, because such makefiles will fail to work if run by
1157 anyone else.  It is much better to write explicit @code{include} directives
1158 in the makefiles.  @xref{Include, , Including Other Makefiles}.
1160 @node Remaking Makefiles, Overriding Makefiles, MAKEFILES Variable, Makefiles
1161 @section How Makefiles Are Remade
1163 @cindex updating makefiles
1164 @cindex remaking makefiles
1165 @cindex makefile, remaking of
1166 Sometimes makefiles can be remade from other files, such as RCS or SCCS
1167 files.  If a makefile can be remade from other files, you probably want
1168 @code{make} to get an up-to-date version of the makefile to read in.
1170 To this end, after reading in all makefiles, @code{make} will consider
1171 each as a goal target and attempt to update it.  If a makefile has a
1172 rule which says how to update it (found either in that very makefile or
1173 in another one) or if an implicit rule applies to it (@pxref{Implicit
1174 Rules, ,Using Implicit Rules}), it will be updated if necessary.  After
1175 all makefiles have been checked, if any have actually been changed,
1176 @code{make} starts with a clean slate and reads all the makefiles over
1177 again.  (It will also attempt to update each of them over again, but
1178 normally this will not change them again, since they are already up to
1179 date.)@refill
1181 If the makefiles specify a double-colon rule to remake a file with
1182 commands but no dependencies, that file will always be remade
1183 (@pxref{Double-Colon}).  In the case of makefiles, a makefile that has a
1184 double-colon rule with commands but no dependencies will be remade every
1185 time @code{make} is run, and then again after @code{make} starts over
1186 and reads the makefiles in again.  This would cause an infinite loop:
1187 @code{make} would constantly remake the makefile, and never do anything
1188 else.  So, to avoid this, @code{make} will @strong{not} attempt to
1189 remake makefiles which are specified as double-colon targets but have no
1190 dependencies.@refill
1192 If you do not specify any makefiles to be read with @samp{-f} or
1193 @samp{--file} options, @code{make} will try the default makefile names;
1194 @pxref{Makefile Names, ,What Name to Give Your Makefile}.  Unlike
1195 makefiles explicitly requested with @samp{-f} or @samp{--file} options,
1196 @code{make} is not certain that these makefiles should exist.  However,
1197 if a default makefile does not exist but can be created by running
1198 @code{make} rules, you probably want the rules to be run so that the
1199 makefile can be used.
1201 Therefore, if none of the default makefiles exists, @code{make} will try
1202 to make each of them in the same order in which they are searched for
1203 (@pxref{Makefile Names, ,What Name to Give Your Makefile})
1204 until it succeeds in making one, or it runs out of names to try.  Note
1205 that it is not an error if @code{make} cannot find or make any makefile;
1206 a makefile is not always necessary.@refill
1208 When you use the @samp{-t} or @samp{--touch} option
1209 (@pxref{Instead of Execution, ,Instead of Executing the Commands}),
1210 you would not want to use an out-of-date makefile to decide which
1211 targets to touch.  So the @samp{-t} option has no effect on updating
1212 makefiles; they are really updated even if @samp{-t} is specified.
1213 Likewise, @samp{-q} (or @samp{--question}) and @samp{-n} (or
1214 @samp{--just-print}) do not prevent updating of makefiles, because an
1215 out-of-date makefile would result in the wrong output for other targets.
1216 Thus, @samp{make -f mfile -n foo} will update @file{mfile}, read it in,
1217 and then print the commands to update @file{foo} and its dependencies
1218 without running them.  The commands printed for @file{foo} will be those
1219 specified in the updated contents of @file{mfile}.
1221 However, on occasion you might actually wish to prevent updating of even
1222 the makefiles.  You can do this by specifying the makefiles as goals in
1223 the command line as well as specifying them as makefiles.  When the
1224 makefile name is specified explicitly as a goal, the options @samp{-t}
1225 and so on do apply to them.
1227 Thus, @samp{make -f mfile -n mfile foo} would read the makefile
1228 @file{mfile}, print the commands needed to update it without actually
1229 running them, and then print the commands needed to update @file{foo}
1230 without running them.  The commands for @file{foo} will be those
1231 specified by the existing contents of @file{mfile}.
1233 @node Overriding Makefiles,  , Remaking Makefiles, Makefiles
1234 @section Overriding Part of Another Makefile
1236 @cindex overriding makefiles
1237 @cindex makefile, overriding
1238 Sometimes it is useful to have a makefile that is mostly just like
1239 another makefile.  You can often use the @samp{include} directive to
1240 include one in the other, and add more targets or variable definitions.
1241 However, if the two makefiles give different commands for the same
1242 target, @code{make} will not let you just do this.  But there is another way.
1244 @cindex match-anything rule, used to override
1245 In the containing makefile (the one that wants to include the other),
1246 you can use a match-anything pattern rule to say that to remake any
1247 target that cannot be made from the information in the containing
1248 makefile, @code{make} should look in another makefile.
1249 @xref{Pattern Rules}, for more information on pattern rules.
1251 For example, if you have a makefile called @file{Makefile} that says how
1252 to make the target @samp{foo} (and other targets), you can write a
1253 makefile called @file{GNUmakefile} that contains:
1255 @example
1256 foo:
1257         frobnicate > foo
1259 %: force
1260         @@$(MAKE) -f Makefile $@@
1261 force: ;
1262 @end example
1264 If you say @samp{make foo}, @code{make} will find @file{GNUmakefile},
1265 read it, and see that to make @file{foo}, it needs to run the command
1266 @samp{frobnicate > foo}.  If you say @samp{make bar}, @code{make} will
1267 find no way to make @file{bar} in @file{GNUmakefile}, so it will use the
1268 commands from the pattern rule: @samp{make -f Makefile bar}.  If
1269 @file{Makefile} provides a rule for updating @file{bar}, @code{make}
1270 will apply the rule.  And likewise for any other target that
1271 @file{GNUmakefile} does not say how to make.
1273 The way this works is that the pattern rule has a pattern of just
1274 @samp{%}, so it matches any target whatever.  The rule specifies a
1275 dependency @file{force}, to guarantee that the commands will be run even
1276 if the target file already exists.  We give @file{force} target empty
1277 commands to prevent @code{make} from searching for an implicit rule to
1278 build it---otherwise it would apply the same match-anything rule to
1279 @file{force} itself and create a dependency loop!
1281 @node Rules, Commands, Makefiles, Top
1282 @chapter Writing Rules
1283 @cindex writing rules
1284 @cindex rule, how to write
1285 @cindex target
1286 @cindex dependency
1288 A @dfn{rule} appears in the makefile and says when and how to remake
1289 certain files, called the rule's @dfn{targets} (most often only one per rule).
1290 It lists the other files that are the @dfn{dependencies} of the target, and
1291 @dfn{commands} to use to create or update the target.
1293 @cindex default goal
1294 @cindex goal, default
1295 The order of rules is not significant, except for determining the
1296 @dfn{default goal}: the target for @code{make} to consider, if you do
1297 not otherwise specify one.  The default goal is the target of the first
1298 rule in the first makefile.  If the first rule has multiple targets,
1299 only the first target is taken as the default.  There are two
1300 exceptions: a target starting with a period is not a default unless it
1301 contains one or more slashes, @samp{/}, as well; and, a target that
1302 defines a pattern rule has no effect on the default goal.
1303 (@xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.)
1305 Therefore, we usually write the makefile so that the first rule is the
1306 one for compiling the entire program or all the programs described by
1307 the makefile (often with a target called @samp{all}).
1308 @xref{Goals, ,Arguments to Specify the Goals}.
1310 @menu
1311 * Rule Example::                An example explained.
1312 * Rule Syntax::                 General syntax explained.
1313 * Wildcards::                   Using wildcard characters such as `*'.
1314 * Directory Search::            Searching other directories for source files.
1315 * Phony Targets::               Using a target that is not a real file's name.
1316 * Force Targets::               You can use a target without commands
1317                                   or dependencies to mark other
1318                                   targets as phony.
1319 * Empty Targets::               When only the date matters and the
1320                                   files are empty.
1321 * Special Targets::             Targets with special built-in meanings.
1322 * Multiple Targets::            When to make use of several targets in a rule.
1323 * Multiple Rules::              How to use several rules with the same target.
1324 * Static Pattern::              Static pattern rules apply to multiple targets
1325                                   and can vary the dependencies according to
1326                                   the target name.
1327 * Double-Colon::                How to use a special kind of rule to allow
1328                                   several independent rules for one target.
1329 * Automatic Dependencies::      How to automatically generate rules giving
1330                                  dependencies from the source files themselves.
1331 @end menu
1333 @ifinfo
1334 @node Rule Example, Rule Syntax,  , Rules
1335 @section Rule Example
1337 Here is an example of a rule:
1339 @example
1340 foo.o : foo.c defs.h       # module for twiddling the frobs
1341         cc -c -g foo.c
1342 @end example
1344 Its target is @file{foo.o} and its dependencies are @file{foo.c} and
1345 @file{defs.h}.  It has one command, which is @samp{cc -c -g foo.c}.
1346 The command line starts with a tab to identify it as a command.
1348 This rule says two things:
1350 @itemize @bullet
1351 @item
1352 How to decide whether @file{foo.o} is out of date: it is out of date
1353 if it does not exist, or if either @file{foo.c} or @file{defs.h} is
1354 more recent than it.
1356 @item
1357 How to update the file @file{foo.o}: by running @code{cc} as stated.
1358 The command does not explicitly mention @file{defs.h}, but we presume
1359 that @file{foo.c} includes it, and that that is why @file{defs.h} was
1360 added to the dependencies.
1361 @end itemize
1362 @end ifinfo
1364 @node Rule Syntax, Wildcards, Rule Example, Rules
1365 @section Rule Syntax
1367 @cindex rule syntax
1368 @cindex syntax of rules
1369 In general, a rule looks like this:
1371 @example
1372 @var{targets} : @var{dependencies}
1373         @var{command}
1374         @dots{}
1375 @end example
1377 @noindent
1378 or like this:
1380 @example
1381 @var{targets} : @var{dependencies} ; @var{command}
1382         @var{command}
1383         @dots{}
1384 @end example
1386 @cindex targets
1387 @cindex rule targets
1388 The @var{targets} are file names, separated by spaces.  Wildcard
1389 characters may be used (@pxref{Wildcards, ,Using Wildcard Characters
1390 in File Names}) and a name of the form @file{@var{a}(@var{m})}
1391 represents member @var{m} in archive file @var{a}
1392 (@pxref{Archive Members, ,Archive Members as Targets}).
1393 Usually there is only one
1394 target per rule, but occasionally there is a reason to have more
1395 (@pxref{Multiple Targets, , Multiple Targets in a Rule}).@refill
1397 @cindex commands
1398 @cindex tab character (in commands)
1399 The @var{command} lines start with a tab character.  The first command may
1400 appear on the line after the dependencies, with a tab character, or may
1401 appear on the same line, with a semicolon.  Either way, the effect is the
1402 same.  @xref{Commands, ,Writing the Commands in Rules}.
1404 @cindex dollar sign (@code{$}), in rules
1405 @cindex @code{$}, in rules
1406 @cindex rule, and @code{$}
1407 Because dollar signs are used to start variable references, if you really
1408 want a dollar sign in a rule you must write two of them, @samp{$$}
1409 (@pxref{Using Variables, ,How to Use Variables}).
1410 You may split a long line by inserting a backslash
1411 followed by a newline, but this is not required, as @code{make} places no
1412 limit on the length of a line in a makefile.
1414 A rule tells @code{make} two things: when the targets are out of date,
1415 and how to update them when necessary.
1417 @cindex dependencies
1418 @cindex rule dependencies
1419 The criterion for being out of date is specified in terms of the
1420 @var{dependencies}, which consist of file names separated by spaces.
1421 (Wildcards and archive members (@pxref{Archives}) are allowed here too.)
1422 A target is out of date if it does not exist or if it is older than any
1423 of the dependencies (by comparison of last-modification times).  The
1424 idea is that the contents of the target file are computed based on
1425 information in the dependencies, so if any of the dependencies changes,
1426 the contents of the existing target file are no longer necessarily
1427 valid.
1429 How to update is specified by @var{commands}.  These are lines to be
1430 executed by the shell (normally @samp{sh}), but with some extra features
1431 (@pxref{Commands, ,Writing the Commands in Rules}).
1433 @node Wildcards, Directory Search, Rule Syntax, Rules
1434 @section Using Wildcard Characters in File Names
1435 @cindex wildcard
1436 @cindex file name with wildcards
1437 @cindex globbing (wildcards)
1439 @cindex @code{*} (wildcard character)
1440 @cindex @code{?} (wildcard character)
1441 @cindex @code{[@dots{}]} (wildcard characters)
1442 A single file name can specify many files using @dfn{wildcard characters}.
1443 The wildcard characters in @code{make} are @samp{*}, @samp{?} and
1444 @samp{[@dots{}]}, the same as in the Bourne shell.  For example, @file{*.c}
1445 specifies a list of all the files (in the working directory) whose names
1446 end in @samp{.c}.@refill
1448 @cindex @code{~} (tilde)
1449 @cindex tilde (@code{~})
1450 @cindex home directory
1451 The character @samp{~} at the beginning of a file name also has special
1452 significance.  If alone, or followed by a slash, it represents your home
1453 directory.  For example @file{~/bin} expands to @file{/home/you/bin}.
1454 If the @samp{~} is followed by a word, the string represents the home
1455 directory of the user named by that word.  For example @file{~john/bin}
1456 expands to @file{/home/john/bin}.@refill
1458 Wildcard expansion happens automatically in targets, in dependencies,
1459 and in commands (where the shell does the expansion).  In other
1460 contexts, wildcard expansion happens only if you request it explicitly
1461 with the @code{wildcard} function.
1463 The special significance of a wildcard character can be turned off by
1464 preceding it with a backslash.  Thus, @file{foo\*bar} would refer to a
1465 specific file whose name consists of @samp{foo}, an asterisk, and
1466 @samp{bar}.@refill
1468 @menu
1469 * Wildcard Examples::           Several examples
1470 * Wildcard Pitfall::            Problems to avoid.
1471 * Wildcard Function::           How to cause wildcard expansion where
1472                                   it does not normally take place.
1473 @end menu
1475 @node Wildcard Examples, Wildcard Pitfall,  , Wildcards
1476 @subsection Wildcard Examples
1478 Wildcards can be used in the commands of a rule, where they are expanded
1479 by the shell.  For example, here is a rule to delete all the object files:
1481 @example
1482 @group
1483 clean:
1484         rm -f *.o
1485 @end group
1486 @end example
1487 @cindex @code{rm} (shell command)
1489 Wildcards are also useful in the dependencies of a rule.  With the
1490 following rule in the makefile, @samp{make print} will print all the
1491 @samp{.c} files that have changed since the last time you printed them:
1493 @example
1494 print: *.c
1495         lpr -p $?
1496         touch print
1497 @end example
1499 @cindex @code{print} target
1500 @cindex @code{lpr} (shell command)
1501 @cindex @code{touch} (shell command)
1502 @noindent
1503 This rule uses @file{print} as an empty target file; see @ref{Empty
1504 Targets, ,Empty Target Files to Record Events}.  (The automatic variable
1505 @samp{$?} is used to print only those files that have changed; see
1506 @ref{Automatic, ,Automatic Variables}.)@refill
1508 Wildcard expansion does not happen when you define a variable.  Thus, if
1509 you write this:
1511 @example
1512 objects = *.o
1513 @end example
1515 @noindent
1516 then the value of the variable @code{objects} is the actual string
1517 @samp{*.o}.  However, if you use the value of @code{objects} in a target,
1518 dependency or command, wildcard expansion will take place at that time.
1519 To set @code{objects} to the expansion, instead use:
1521 @example
1522 objects := $(wildcard *.o)
1523 @end example
1525 @noindent
1526 @xref{Wildcard Function}.
1528 @node Wildcard Pitfall, Wildcard Function, Wildcard Examples, Wildcards
1529 @subsection Pitfalls of Using Wildcards
1530 @cindex wildcard pitfalls
1531 @cindex pitfalls of wildcards
1532 @cindex mistakes with wildcards
1533 @cindex errors with wildcards
1534 @cindex problems with wildcards
1536 Now here is an example of a naive way of using wildcard expansion, that
1537 does not do what you would intend.  Suppose you would like to say that the
1538 executable file @file{foo} is made from all the object files in the
1539 directory, and you write this:
1541 @example
1542 objects = *.o
1544 foo : $(objects)
1545         cc -o foo $(CFLAGS) $(objects)
1546 @end example
1548 @noindent
1549 The value of @code{objects} is the actual string @samp{*.o}.  Wildcard
1550 expansion happens in the rule for @file{foo}, so that each @emph{existing}
1551 @samp{.o} file becomes a dependency of @file{foo} and will be recompiled if
1552 necessary.
1554 But what if you delete all the @samp{.o} files?  When a wildcard matches
1555 no files, it is left as it is, so then @file{foo} will depend on the
1556 oddly-named file @file{*.o}.  Since no such file is likely to exist,
1557 @code{make} will give you an error saying it cannot figure out how to
1558 make @file{*.o}.  This is not what you want!
1560 Actually it is possible to obtain the desired result with wildcard
1561 expansion, but you need more sophisticated techniques, including the
1562 @code{wildcard} function and string substitution.
1563 @ifinfo
1564 @xref{Wildcard Function, ,The Function @code{wildcard}}.
1565 @end ifinfo
1566 @iftex
1567 These are described in the following section.
1568 @end iftex
1570 @node Wildcard Function,  , Wildcard Pitfall, Wildcards
1571 @subsection The Function @code{wildcard}
1572 @findex wildcard
1574 Wildcard expansion happens automatically in rules.  But wildcard expansion
1575 does not normally take place when a variable is set, or inside the
1576 arguments of a function.  If you want to do wildcard expansion in such
1577 places, you need to use the @code{wildcard} function, like this:
1579 @example
1580 $(wildcard @var{pattern}@dots{})
1581 @end example
1583 @noindent
1584 This string, used anywhere in a makefile, is replaced by a
1585 space-separated list of names of existing files that match one of the
1586 given file name patterns.  If no existing file name matches a pattern,
1587 then that pattern is omitted from the output of the @code{wildcard}
1588 function.  Note that this is different from how unmatched wildcards
1589 behave in rules, where they are used verbatim rather than ignored
1590 (@pxref{Wildcard Pitfall}).
1592 One use of the @code{wildcard} function is to get a list of all the C source
1593 files in a directory, like this:
1595 @example
1596 $(wildcard *.c)
1597 @end example
1599 We can change the list of C source files into a list of object files by
1600 replacing the @samp{.o} suffix with @samp{.c} in the result, like this:
1602 @example
1603 $(patsubst %.c,%.o,$(wildcard *.c))
1604 @end example
1606 @noindent
1607 (Here we have used another function, @code{patsubst}.
1608 @xref{Text Functions, ,Functions for String Substitution and Analysis}.)@refill
1610 Thus, a makefile to compile all C source files in the directory and then
1611 link them together could be written as follows:
1613 @example
1614 objects := $(patsubst %.c,%.o,$(wildcard *.c))
1616 foo : $(objects)
1617         cc -o foo $(objects)
1618 @end example
1620 @noindent
1621 (This takes advantage of the implicit rule for compiling C programs, so
1622 there is no need to write explicit rules for compiling the files.
1623 @xref{Flavors, ,The Two Flavors of Variables}, for an explanation of
1624 @samp{:=}, which is a variant of @samp{=}.)
1626 @node Directory Search, Phony Targets, Wildcards, Rules
1627 @section Searching Directories for Dependencies
1628 @vindex VPATH
1629 @findex vpath
1630 @cindex vpath
1631 @cindex search path for dependencies (@code{VPATH})
1632 @cindex directory search (@code{VPATH})
1634 For large systems, it is often desirable to put sources in a separate
1635 directory from the binaries.  The @dfn{directory search} features of
1636 @code{make} facilitate this by searching several directories
1637 automatically to find a dependency.  When you redistribute the files
1638 among directories, you do not need to change the individual rules,
1639 just the search paths.
1641 @menu
1642 * General Search::              Specifying a search path that applies
1643                                   to every dependency.
1644 * Selective Search::            Specifying a search path
1645                                   for a specified class of names.
1646 * Commands/Search::             How to write shell commands that work together
1647                                   with search paths.
1648 * Implicit/Search::             How search paths affect implicit rules.
1649 * Libraries/Search::            Directory search for link libraries.
1650 @end menu
1652 @node General Search, Selective Search,  , Directory Search
1653 @subsection @code{VPATH}: Search Path for All Dependencies
1654 @vindex VPATH
1656 The value of the @code{make} variable @code{VPATH} specifies a list of
1657 directories that @code{make} should search.  Most often, the
1658 directories are expected to contain dependency files that are not in the
1659 current directory; however, @code{VPATH} specifies a search list that
1660 @code{make} applies for all files, including files which are targets of
1661 rules.
1663 Thus, if a file that is listed as a target or dependency does not exist
1664 in the current directory, @code{make} searches the directories listed in
1665 @code{VPATH} for a file with that name.  If a file is found in one of
1666 them, that file becomes the dependency.  Rules may then specify the
1667 names of source files in the dependencies as if they all existed in the
1668 current directory.  @xref{Commands/Search, ,Writing Shell Commands with
1669 Directory Search}.
1671 In the @code{VPATH} variable, directory names are separated by colons or
1672 blanks.  The order in which directories are listed is the order followed
1673 by @code{make} in its search.
1675 For example,
1677 @example
1678 VPATH = src:../headers
1679 @end example
1681 @noindent
1682 specifies a path containing two directories, @file{src} and
1683 @file{../headers}, which @code{make} searches in that order.
1685 With this value of @code{VPATH}, the following rule,
1687 @example
1688 foo.o : foo.c
1689 @end example
1691 @noindent
1692 is interpreted as if it were written like this:
1694 @example
1695 foo.o : src/foo.c
1696 @end example
1698 @noindent
1699 assuming the file @file{foo.c} does not exist in the current directory but
1700 is found in the directory @file{src}.
1702 @node Selective Search, Commands/Search, General Search, Directory Search
1703 @subsection The @code{vpath} Directive
1704 @findex vpath
1706 Similar to the @code{VPATH} variable but more selective is the @code{vpath}
1707 directive (note lower case), which allows you to specify a search path for a particular class
1708 of file names, those that match a particular pattern.  Thus you can supply
1709 certain search directories for one class of file names and other directories
1710 (or none) for other file names.
1712 There are three forms of the @code{vpath} directive:
1714 @table @code
1715 @item vpath @var{pattern} @var{directories}
1716 Specify the search path @var{directories} for file names that match
1717 @var{pattern}.
1719 The search path, @var{directories}, is a list of directories to be
1720 searched, separated by colons or blanks, just like the search path used
1721 in the @code{VPATH} variable.
1723 @item vpath @var{pattern}
1724 Clear out the search path associated with @var{pattern}.
1726 @c Extra blank line makes sure this gets two lines.
1727 @item vpath
1729 Clear all search paths previously specified with @code{vpath} directives.
1730 @end table
1732 A @code{vpath} pattern is a string containing a @samp{%} character.  The
1733 string must match the file name of a dependency that is being searched
1734 for, the @samp{%} character matching any sequence of zero or more
1735 characters (as in pattern rules; @pxref{Pattern Rules, ,Defining and
1736 Redefining Pattern Rules}).  For example, @code{%.h} matches files that
1737 end in @code{.h}.  (If there is no @samp{%}, the pattern must match the
1738 dependency exactly, which is not useful very often.)
1740 @cindex @code{%}, quoting in @code{vpath}
1741 @cindex @code{%}, quoting with @code{\} (backslash)
1742 @cindex @code{\} (backslash), to quote @code{%}
1743 @cindex backslash (@code{\}), to quote @code{%}
1744 @cindex quoting @code{%}, in @code{vpath}
1745 @samp{%} characters in a @code{vpath} directive's pattern can be quoted
1746 with preceding backslashes (@samp{\}).  Backslashes that would otherwise
1747 quote @samp{%} characters can be quoted with more backslashes.
1748 Backslashes that quote @samp{%} characters or other backslashes are
1749 removed from the pattern before it is compared to file names.  Backslashes
1750 that are not in danger of quoting @samp{%} characters go unmolested.@refill
1752 When a dependency fails to exist in the current directory, if the
1753 @var{pattern} in a @code{vpath} directive matches the name of the
1754 dependency file, then the @var{directories} in that directive are searched
1755 just like (and before) the directories in the @code{VPATH} variable.
1757 For example,
1759 @example
1760 vpath %.h ../headers
1761 @end example
1763 @noindent
1764 tells @code{make} to look for any dependency whose name ends in @file{.h}
1765 in the directory @file{../headers} if the file is not found in the current
1766 directory.
1768 If several @code{vpath} patterns match the dependency file's name, then
1769 @code{make} processes each matching @code{vpath} directive one by one,
1770 searching all the directories mentioned in each directive.  @code{make}
1771 handles multiple @code{vpath} directives in the order in which they
1772 appear in the makefile; multiple directives with the same pattern are
1773 independent of each other.
1775 @need 750
1776 Thus,
1778 @example
1779 @group
1780 vpath %.c foo
1781 vpath %   blish
1782 vpath %.c bar
1783 @end group
1784 @end example
1786 @noindent
1787 will look for a file ending in @samp{.c} in @file{foo}, then
1788 @file{blish}, then @file{bar}, while
1790 @example
1791 @group
1792 vpath %.c foo:bar
1793 vpath %   blish
1794 @end group
1795 @end example
1797 @noindent
1798 will look for a file ending in @samp{.c} in @file{foo}, then
1799 @file{bar}, then @file{blish}.
1801 @node Commands/Search, Implicit/Search, Selective Search, Directory Search
1802 @subsection Writing Shell Commands with Directory Search
1803 @cindex shell command, and directory search
1804 @cindex directory search (@code{VPATH}), and shell commands
1806 When a dependency is found in another directory through directory search,
1807 this cannot change the commands of the rule; they will execute as written.
1808 Therefore, you must write the commands with care so that they will look for
1809 the dependency in the directory where @code{make} finds it.
1811 This is done with the @dfn{automatic variables} such as @samp{$^}
1812 (@pxref{Automatic, ,Automatic Variables}).
1813 For instance, the value of @samp{$^} is a
1814 list of all the dependencies of the rule, including the names of
1815 the directories in which they were found, and the value of
1816 @samp{$@@} is the target.  Thus:@refill
1818 @example
1819 foo.o : foo.c
1820         cc -c $(CFLAGS) $^ -o $@@
1821 @end example
1823 @noindent
1824 (The variable @code{CFLAGS} exists so you can specify flags for C
1825 compilation by implicit rules; we use it here for consistency so it will
1826 affect all C compilations uniformly;
1827 @pxref{Implicit Variables, ,Variables Used by Implicit Rules}.)
1829 Often the dependencies include header files as well, which you do not
1830 want to mention in the commands.  The automatic variable @samp{$<} is
1831 just the first dependency:
1833 @example
1834 VPATH = src:../headers
1835 foo.o : foo.c defs.h hack.h
1836         cc -c $(CFLAGS) $< -o $@@
1837 @end example
1839 @node Implicit/Search, Libraries/Search, Commands/Search, Directory Search
1840 @subsection Directory Search and Implicit Rules
1841 @cindex @code{VPATH}, and implicit rules
1842 @cindex directory search (@code{VPATH}), and implicit rules
1843 @cindex search path for dependencies (@code{VPATH}), and implicit rules
1844 @cindex implicit rule, and directory search
1845 @cindex implicit rule, and @code{VPATH}
1846 @cindex rule, implicit, and directory search
1847 @cindex rule, implicit, and @code{VPATH}
1849 The search through the directories specified in @code{VPATH} or with
1850 @code{vpath} also happens during consideration of implicit rules
1851 (@pxref{Implicit Rules, ,Using Implicit Rules}).
1853 For example, when a file @file{foo.o} has no explicit rule, @code{make}
1854 considers implicit rules, such as the built-in rule to compile
1855 @file{foo.c} if that file exists.  If such a file is lacking in the
1856 current directory, the appropriate directories are searched for it.  If
1857 @file{foo.c} exists (or is mentioned in the makefile) in any of the
1858 directories, the implicit rule for C compilation is applied.
1860 The commands of implicit rules normally use automatic variables as a
1861 matter of necessity; consequently they will use the file names found by
1862 directory search with no extra effort.
1864 @node Libraries/Search,  , Implicit/Search, Directory Search
1865 @subsection Directory Search for Link Libraries
1866 @cindex link libraries, and directory search
1867 @cindex libraries for linking, directory search
1868 @cindex directory search (@code{VPATH}), and link libraries
1869 @cindex @code{VPATH}, and link libraries
1870 @cindex search path for dependencies (@code{VPATH}), and link libraries
1871 @cindex @code{-l} (library search)
1873 Directory search applies in a special way to libraries used with the
1874 linker.  This special feature comes into play when you write a dependency
1875 whose name is of the form @samp{-l@var{name}}.  (You can tell something
1876 strange is going on here because the dependency is normally the name of a
1877 file, and the @emph{file name} of the library looks like
1878 @file{lib@var{name}.a}, not like @samp{-l@var{name}}.)@refill
1880 When a dependency's name has the form @samp{-l@var{name}}, @code{make}
1881 handles it specially by searching for the file @file{lib@var{name}.a} in
1882 the current directory, in directories specified by matching @code{vpath}
1883 search paths and the @code{VPATH} search path, and then in the
1884 directories @file{/lib}, @file{/usr/lib}, and @file{@var{prefix}/lib}
1885 (normally @file{/usr/local/lib}).
1887 For example,
1889 @example
1890 @group
1891 foo : foo.c -lcurses
1892         cc $^ -o $@@
1893 @end group
1894 @end example
1896 @noindent
1897 would cause the command @samp{cc foo.c /usr/lib/libcurses.a -o foo} to
1898 be executed when @file{foo} is older than @file{foo.c} or than
1899 @file{/usr/lib/libcurses.a}.@refill
1901 @node Phony Targets, Force Targets, Directory Search, Rules
1902 @section Phony Targets
1903 @cindex phony targets
1904 @cindex targets, phony
1905 @cindex targets without a file
1907 A phony target is one that is not really the name of a file.  It is just a
1908 name for some commands to be executed when you make an explicit request.
1909 There are two reasons to use a phony target: to avoid a conflict with
1910 a file of the same name, and to improve performance.
1912 If you write a rule whose commands will not create the target file, the
1913 commands will be executed every time the target comes up for remaking.
1914 Here is an example:
1916 @example
1917 @group
1918 clean:
1919         rm *.o temp
1920 @end group
1921 @end example
1923 @noindent
1924 Because the @code{rm} command does not create a file named @file{clean},
1925 probably no such file will ever exist.  Therefore, the @code{rm} command
1926 will be executed every time you say @samp{make clean}.
1927 @cindex @code{rm} (shell command)
1929 @findex .PHONY
1930 The phony target will cease to work if anything ever does create a file
1931 named @file{clean} in this directory.  Since it has no dependencies, the
1932 file @file{clean} would inevitably be considered up to date, and its
1933 commands would not be executed.  To avoid this problem, you can explicitly
1934 declare the target to be phony, using the special target @code{.PHONY}
1935 (@pxref{Special Targets, ,Special Built-in Target Names}) as follows:
1937 @example
1938 .PHONY : clean
1939 @end example
1941 @noindent
1942 Once this is done, @samp{make clean} will run the commands regardless of
1943 whether there is a file named @file{clean}.
1945 Since it knows that phony targets do not name actual files that could be
1946 remade from other files, @code{make} skips the implicit rule search for
1947 phony targets (@pxref{Implicit Rules}).  This is why declaring a target
1948 phony is good for performance, even if you are not worried about the
1949 actual file existing.
1951 Thus, you first write the line that states that @code{clean} is a
1952 phony target, then you write the rule, like this:
1954 @example
1955 @group
1956 .PHONY: clean
1957 clean:
1958         rm *.o temp
1959 @end group
1960 @end example
1962 A phony target should not be a dependency of a real target file; if it
1963 is, its commands are run every time @code{make} goes to update that
1964 file.  As long as a phony target is never a dependency of a real
1965 target, the phony target commands will be executed only when the phony
1966 target is a specified goal (@pxref{Goals, ,Arguments to Specify the
1967 Goals}).
1969 Phony targets can have dependencies.  When one directory contains multiple
1970 programs, it is most convenient to describe all of the programs in one
1971 makefile @file{./Makefile}.  Since the target remade by default will be the
1972 first one in the makefile, it is common to make this a phony target named
1973 @samp{all} and give it, as dependencies, all the individual programs.  For
1974 example:
1976 @example
1977 all : prog1 prog2 prog3
1978 .PHONY : all
1980 prog1 : prog1.o utils.o
1981         cc -o prog1 prog1.o utils.o
1983 prog2 : prog2.o
1984         cc -o prog2 prog2.o
1986 prog3 : prog3.o sort.o utils.o
1987         cc -o prog3 prog3.o sort.o utils.o
1988 @end example
1990 @noindent
1991 Now you can say just @samp{make} to remake all three programs, or specify
1992 as arguments the ones to remake (as in @samp{make prog1 prog3}).
1994 When one phony target is a dependency of another, it serves as a subroutine
1995 of the other.  For example, here @samp{make cleanall} will delete the
1996 object files, the difference files, and the file @file{program}:
1998 @example
1999 .PHONY: cleanall cleanobj cleandiff
2001 cleanall : cleanobj cleandiff
2002         rm program
2004 cleanobj :
2005         rm *.o
2007 cleandiff :
2008         rm *.diff
2009 @end example
2011 @node Force Targets, Empty Targets, Phony Targets, Rules
2012 @section Rules without Commands or Dependencies
2013 @cindex force targets
2014 @cindex targets, force
2015 @cindex @code{FORCE}
2016 @cindex rule, no commands or dependencies
2018 If a rule has no dependencies or commands, and the target of the rule
2019 is a nonexistent file, then @code{make} imagines this target to have
2020 been updated whenever its rule is run.  This implies that all targets
2021 depending on this one will always have their commands run.
2023 An example will illustrate this:
2025 @example
2026 @group
2027 clean: FORCE
2028         rm $(objects)
2029 FORCE:
2030 @end group
2031 @end example
2033 Here the target @samp{FORCE} satisfies the special conditions, so the
2034 target @file{clean} that depends on it is forced to run its commands.
2035 There is nothing special about the name @samp{FORCE}, but that is one name
2036 commonly used this way.
2038 As you can see, using @samp{FORCE} this way has the same results as using
2039 @samp{.PHONY: clean}.
2041 Using @samp{.PHONY} is more explicit and more efficient.  However,
2042 other versions of @code{make} do not support @samp{.PHONY}; thus
2043 @samp{FORCE} appears in many makefiles.  @xref{Phony Targets}.
2045 @node Empty Targets, Special Targets, Force Targets, Rules
2046 @section Empty Target Files to Record Events
2047 @cindex empty targets
2048 @cindex targets, empty
2049 @cindex recording events with empty targets
2051 The @dfn{empty target} is a variant of the phony target; it is used to hold
2052 commands for an action that you request explicitly from time to time.
2053 Unlike a phony target, this target file can really exist; but the file's
2054 contents do not matter, and usually are empty.
2056 The purpose of the empty target file is to record, with its
2057 last-modification time, when the rule's commands were last executed.  It
2058 does so because one of the commands is a @code{touch} command to update the
2059 target file.
2061 The empty target file must have some dependencies.  When you ask to remake
2062 the empty target, the commands are executed if any dependency is more
2063 recent than the target; in other words, if a dependency has changed since
2064 the last time you remade the target.  Here is an example:
2066 @example
2067 print: foo.c bar.c
2068         lpr -p $?
2069         touch print
2070 @end example
2071 @cindex @code{print} target
2072 @cindex @code{lpr} (shell command)
2073 @cindex @code{touch} (shell command)
2075 @noindent
2076 With this rule, @samp{make print} will execute the @code{lpr} command if
2077 either source file has changed since the last @samp{make print}.  The
2078 automatic variable @samp{$?} is used to print only those files that have
2079 changed (@pxref{Automatic, ,Automatic Variables}).
2081 @node Special Targets, Multiple Targets, Empty Targets, Rules
2082 @section Special Built-in Target Names
2083 @cindex special targets
2084 @cindex built-in special targets
2085 @cindex targets, built-in special
2087 Certain names have special meanings if they appear as targets.
2089 @table @code
2090 @findex .PHONY
2091 @item .PHONY
2093 The dependencies of the special target @code{.PHONY} are considered to
2094 be phony targets.  When it is time to consider such a target,
2095 @code{make} will run its commands unconditionally, regardless of
2096 whether a file with that name exists or what its last-modification
2097 time is.  @xref{Phony Targets, ,Phony Targets}.
2099 @findex .SUFFIXES
2100 @item .SUFFIXES
2102 The dependencies of the special target @code{.SUFFIXES} are the list
2103 of suffixes to be used in checking for suffix rules.
2104 @xref{Suffix Rules, , Old-Fashioned Suffix Rules}.
2106 @findex .DEFAULT
2107 @item .DEFAULT
2109 The commands specified for @code{.DEFAULT} are used for any target for
2110 which no rules are found (either explicit rules or implicit rules).
2111 @xref{Last Resort}.  If @code{.DEFAULT} commands are specified, every
2112 file mentioned as a dependency, but not as a target in a rule, will have
2113 these commands executed on its behalf.  @xref{Search Algorithm,
2114 ,Implicit Rule Search Algorithm}.
2116 @findex .PRECIOUS
2117 @item .PRECIOUS
2118 @cindex precious targets
2119 @cindex preserving with @code{.PRECIOUS}
2121 The targets which @code{.PRECIOUS} depends on are given the following
2122 special treatment: if @code{make} is killed or interrupted during the
2123 execution of their commands, the target is not deleted.
2124 @xref{Interrupts, ,Interrupting or Killing @code{make}}.
2125 Also, if the target is an intermediate file, it will not be deleted
2126 after it is no longer needed, as is normally done.
2127 @xref{Chained Rules, ,Chains of Implicit Rules}.
2129 You can also list the target pattern of an implicit rule (such as
2130 @samp{%.o}) as a dependency file of the special target @code{.PRECIOUS}
2131 to preserve intermediate files created by rules whose target patterns
2132 match that file's name.
2134 @findex .IGNORE
2135 @item .IGNORE
2137 If you specify dependencies for @code{.IGNORE}, then @code{make} will
2138 ignore errors in execution of the commands run for those particular
2139 files.  The commands for @code{.IGNORE} are not meaningful.
2141 If mentioned as a target with no dependencies, @code{.IGNORE} says to
2142 ignore errors in execution of commands for all files.  This usage of
2143 @samp{.IGNORE} is supported only for historical compatibility.  Since
2144 this affects every command in the makefile, it is not very useful; we
2145 recommend you use the more selective ways to ignore errors in specific
2146 commands.  @xref{Errors, ,Errors in Commands}.
2148 @findex .SILENT
2149 @item .SILENT
2151 If you specify dependencies for @code{.SILENT}, then @code{make} will
2152 not the print commands to remake those particular files before executing
2153 them.  The commands for @code{.SILENT} are not meaningful.
2155 If mentioned as a target with no dependencies, @code{.SILENT} says not
2156 to print any commands before executing them.  This usage of
2157 @samp{.SILENT} is supported only for historical compatibility.  We
2158 recommend you use the more selective ways to silence specific commands.
2159 @xref{Echoing, ,Command Echoing}.  If you want to silence all commands
2160 for a particular run of @code{make}, use the @samp{-s} or
2161 @w{@samp{--silent}} option (@pxref{Options Summary}).
2163 @findex .EXPORT_ALL_VARIABLES
2164 @item .EXPORT_ALL_VARIABLES
2166 Simply by being mentioned as a target, this tells @code{make} to
2167 export all variables to child processes by default.
2168 @xref{Variables/Recursion, ,Communicating Variables to a
2169 Sub-@code{make}}.
2170 @end table
2172 Any defined implicit rule suffix also counts as a special target if it
2173 appears as a target, and so does the concatenation of two suffixes, such
2174 as @samp{.c.o}.  These targets are suffix rules, an obsolete way of
2175 defining implicit rules (but a way still widely used).  In principle, any
2176 target name could be special in this way if you break it in two and add
2177 both pieces to the suffix list.  In practice, suffixes normally begin with
2178 @samp{.}, so these special target names also begin with @samp{.}.
2179 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
2181 @node Multiple Targets, Multiple Rules, Special Targets, Rules
2182 @section Multiple Targets in a Rule
2183 @cindex multiple targets
2184 @cindex several targets in a rule
2185 @cindex targets, multiple
2186 @cindex rule, with multiple targets
2188 A rule with multiple targets is equivalent to writing many rules, each with
2189 one target, and all identical aside from that.  The same commands apply to
2190 all the targets, but their effects may vary because you can substitute the
2191 actual target name into the command using @samp{$@@}.  The rule contributes
2192 the same dependencies to all the targets also.
2194 This is useful in two cases.
2196 @itemize @bullet
2197 @item
2198 You want just dependencies, no commands.  For example:
2200 @example
2201 kbd.o command.o files.o: command.h
2202 @end example
2204 @noindent
2205 gives an additional dependency to each of the three object files
2206 mentioned.
2208 @item
2209 Similar commands work for all the targets.  The commands do not need
2210 to be absolutely identical, since the automatic variable @samp{$@@}
2211 can be used to substitute the particular target to be remade into the
2212 commands (@pxref{Automatic, ,Automatic Variables}).  For example:
2214 @example
2215 @group
2216 bigoutput littleoutput : text.g
2217         generate text.g -$(subst output,,$@@) > $@@
2218 @end group
2219 @end example
2220 @findex subst
2222 @noindent
2223 is equivalent to
2225 @example
2226 bigoutput : text.g
2227         generate text.g -big > bigoutput
2228 littleoutput : text.g
2229         generate text.g -little > littleoutput
2230 @end example
2232 @noindent
2233 Here we assume the hypothetical program @code{generate} makes two
2234 types of output, one if given @samp{-big} and one if given
2235 @samp{-little}.
2236 @xref{Text Functions, ,Functions for String Substitution and Analysis},
2237 for an explanation of the @code{subst} function.
2238 @end itemize
2240 Suppose you would like to vary the dependencies according to the target,
2241 much as the variable @samp{$@@} allows you to vary the commands.
2242 You cannot do this with multiple targets in an ordinary rule, but you can
2243 do it with a @dfn{static pattern rule}.
2244 @xref{Static Pattern, ,Static Pattern Rules}.
2246 @node Multiple Rules, Static Pattern, Multiple Targets, Rules
2247 @section Multiple Rules for One Target
2248 @cindex multiple rules for one target
2249 @cindex several rules for one target
2250 @cindex rule, multiple for one target
2251 @cindex target, multiple rules for one
2253 One file can be the target of several rules.  All the dependencies
2254 mentioned in all the rules are merged into one list of dependencies for
2255 the target.  If the target is older than any dependency from any rule,
2256 the commands are executed.
2258 There can only be one set of commands to be executed for a file.
2259 If more than one rule gives commands for the same file,
2260 @code{make} uses the last set given and prints an error message.
2261 (As a special case, if the file's name begins with a dot, no
2262 error message is printed.  This odd behavior is only for
2263 compatibility with other implementations of @code{make}.)
2264 There is no reason to
2265 write your makefiles this way; that is why @code{make} gives you
2266 an error message.@refill
2268 An extra rule with just dependencies can be used to give a few extra
2269 dependencies to many files at once.  For example, one usually has a
2270 variable named @code{objects} containing a list of all the compiler output
2271 files in the system being made.  An easy way to say that all of them must
2272 be recompiled if @file{config.h} changes is to write the following:
2274 @example
2275 objects = foo.o bar.o
2276 foo.o : defs.h
2277 bar.o : defs.h test.h
2278 $(objects) : config.h
2279 @end example
2281 This could be inserted or taken out without changing the rules that really
2282 specify how to make the object files, making it a convenient form to use if
2283 you wish to add the additional dependency intermittently.
2285 Another wrinkle is that the additional dependencies could be specified with
2286 a variable that you set with a command argument to @code{make}
2287 (@pxref{Overriding, ,Overriding Variables}).  For example,
2289 @example
2290 @group
2291 extradeps=
2292 $(objects) : $(extradeps)
2293 @end group
2294 @end example
2296 @noindent
2297 means that the command @samp{make extradeps=foo.h} will consider
2298 @file{foo.h} as a dependency of each object file, but plain @samp{make}
2299 will not.
2301 If none of the explicit rules for a target has commands, then @code{make}
2302 searches for an applicable implicit rule to find some commands
2303 @pxref{Implicit Rules, ,Using Implicit Rules}).
2305 @node Static Pattern, Double-Colon, Multiple Rules, Rules
2306 @section Static Pattern Rules
2307 @cindex static pattern rule
2308 @cindex rule, static pattern
2309 @cindex pattern rules, static (not implicit)
2310 @cindex varying dependencies
2311 @cindex dependencies, varying (static pattern)
2313 @dfn{Static pattern rules} are rules which specify multiple targets and
2314 construct the dependency names for each target based on the target name.
2315 They are more general than ordinary rules with multiple targets because the
2316 targets do not have to have identical dependencies.  Their dependencies must
2317 be @emph{analogous}, but not necessarily @emph{identical}.
2319 @menu
2320 * Static Usage::                The syntax of static pattern rules.
2321 * Static versus Implicit::      When are they better than implicit rules?
2322 @end menu
2324 @node Static Usage, Static versus Implicit,  , Static Pattern
2325 @subsection Syntax of Static Pattern Rules
2326 @cindex static pattern rule, syntax of
2327 @cindex pattern rules, static, syntax of
2329 Here is the syntax of a static pattern rule:
2331 @example
2332 @var{targets} @dots{}: @var{target-pattern}: @var{dep-patterns} @dots{}
2333         @var{commands}
2334         @dots{}
2335 @end example
2337 @noindent
2338 The @var{targets} list specifies the targets that the rule applies to.
2339 The targets can contain wildcard characters, just like the targets of
2340 ordinary rules (@pxref{Wildcards, ,Using Wildcard Characters in File
2341 Names}).
2343 @cindex target pattern, static (not implicit)
2344 @cindex stem
2345 The @var{target-pattern} and @var{dep-patterns} say how to compute the
2346 dependencies of each target.  Each target is matched against the
2347 @var{target-pattern} to extract a part of the target name, called the
2348 @dfn{stem}.  This stem is substituted into each of the @var{dep-patterns}
2349 to make the dependency names (one from each @var{dep-pattern}).
2351 Each pattern normally contains the character @samp{%} just once.  When the
2352 @var{target-pattern} matches a target, the @samp{%} can match any part of
2353 the target name; this part is called the @dfn{stem}.  The rest of the
2354 pattern must match exactly.  For example, the target @file{foo.o} matches
2355 the pattern @samp{%.o}, with @samp{foo} as the stem.  The targets
2356 @file{foo.c} and @file{foo.out} do not match that pattern.@refill
2358 @cindex dependency pattern, static (not implicit)
2359 The dependency names for each target are made by substituting the stem
2360 for the @samp{%} in each dependency pattern.  For example, if one
2361 dependency pattern is @file{%.c}, then substitution of the stem
2362 @samp{foo} gives the dependency name @file{foo.c}.  It is legitimate
2363 to write a dependency pattern that does not contain @samp{%}; then this
2364 dependency is the same for all targets.
2366 @cindex @code{%}, quoting in static pattern
2367 @cindex @code{%}, quoting with @code{\} (backslash)
2368 @cindex @code{\} (backslash), to quote @code{%}
2369 @cindex backslash (@code{\}), to quote @code{%}
2370 @cindex quoting @code{%}, in static pattern
2371 @samp{%} characters in pattern rules can be quoted with preceding
2372 backslashes (@samp{\}).  Backslashes that would otherwise quote @samp{%}
2373 characters can be quoted with more backslashes.  Backslashes that quote
2374 @samp{%} characters or other backslashes are removed from the pattern
2375 before it is compared to file names or has a stem substituted into it.
2376 Backslashes that are not in danger of quoting @samp{%} characters go
2377 unmolested.  For example, the pattern @file{the\%weird\\%pattern\\} has
2378 @samp{the%weird\} preceding the operative @samp{%} character, and
2379 @samp{pattern\\} following it.  The final two backslashes are left alone
2380 because they cannot affect any @samp{%} character.@refill
2382 Here is an example, which compiles each of @file{foo.o} and @file{bar.o}
2383 from the corresponding @file{.c} file:
2385 @example
2386 @group
2387 objects = foo.o bar.o
2389 $(objects): %.o: %.c
2390         $(CC) -c $(CFLAGS) $< -o $@@
2391 @end group
2392 @end example
2394 @noindent
2395 Here @samp{$<} is the automatic variable that holds the name of the
2396 dependency and @samp{$@@} is the automatic variable that holds the name
2397 of the target; see @ref{Automatic, , Automatic Variables}.
2399 Each target specified must match the target pattern; a warning is issued
2400 for each target that does not.  If you have a list of files, only some of
2401 which will match the pattern, you can use the @code{filter} function to
2402 remove nonmatching file names (@pxref{Text Functions, ,Functions for String Substitution and Analysis}):
2404 @example
2405 files = foo.elc bar.o lose.o
2407 $(filter %.o,$(files)): %.o: %.c
2408         $(CC) -c $(CFLAGS) $< -o $@@
2409 $(filter %.elc,$(files)): %.elc: %.el
2410         emacs -f batch-byte-compile $<
2411 @end example
2413 @noindent
2414 In this example the result of @samp{$(filter %.o,$(files))} is
2415 @file{bar.o lose.o}, and the first static pattern rule causes each of
2416 these object files to be updated by compiling the corresponding C source
2417 file.  The result of @w{@samp{$(filter %.elc,$(files))}} is
2418 @file{foo.elc}, so that file is made from @file{foo.el}.@refill
2420 Another example shows how to use @code{$*} in static pattern rules:
2421 @vindex $*@r{, and static pattern}
2423 @example
2424 @group
2425 bigoutput littleoutput : %output : text.g
2426         generate text.g -$* > $@@
2427 @end group
2428 @end example
2430 @noindent
2431 When the @code{generate} command is run, @code{$*} will expand to the
2432 stem, either @samp{big} or @samp{little}.
2434 @node Static versus Implicit,  , Static Usage, Static Pattern
2435 @subsection Static Pattern Rules versus Implicit Rules
2436 @cindex rule, static pattern versus implicit
2437 @cindex static pattern rule, versus implicit
2439 A static pattern rule has much in common with an implicit rule defined as a
2440 pattern rule (@pxref{Pattern Rules, ,Defining and Redefining Pattern Rules}).
2441 Both have a pattern for the target and patterns for constructing the
2442 names of dependencies.  The difference is in how @code{make} decides
2443 @emph{when} the rule applies.
2445 An implicit rule @emph{can} apply to any target that matches its pattern,
2446 but it @emph{does} apply only when the target has no commands otherwise
2447 specified, and only when the dependencies can be found.  If more than one
2448 implicit rule appears applicable, only one applies; the choice depends on
2449 the order of rules.
2451 By contrast, a static pattern rule applies to the precise list of targets
2452 that you specify in the rule.  It cannot apply to any other target and it
2453 invariably does apply to each of the targets specified.  If two conflicting
2454 rules apply, and both have commands, that's an error.
2456 The static pattern rule can be better than an implicit rule for these
2457 reasons:
2459 @itemize @bullet
2460 @item
2461 You may wish to override the usual implicit rule for a few
2462 files whose names cannot be categorized syntactically but
2463 can be given in an explicit list.
2465 @item
2466 If you cannot be sure of the precise contents of the directories
2467 you are using, you may not be sure which other irrelevant files
2468 might lead @code{make} to use the wrong implicit rule.  The choice
2469 might depend on the order in which the implicit rule search is done.
2470 With static pattern rules, there is no uncertainty: each rule applies
2471 to precisely the targets specified.
2472 @end itemize
2474 @node Double-Colon, Automatic Dependencies, Static Pattern, Rules
2475 @section Double-Colon Rules
2476 @cindex double-colon rules
2477 @cindex rule, double-colon (@code{::})
2478 @cindex multiple rules for one target (@code{::})
2479 @cindex @code{::} rules (double-colon)
2481 @dfn{Double-colon} rules are rules written with @samp{::} instead of
2482 @samp{:} after the target names.  They are handled differently from
2483 ordinary rules when the same target appears in more than one rule.
2485 When a target appears in multiple rules, all the rules must be the same
2486 type: all ordinary, or all double-colon.  If they are double-colon, each of
2487 them is independent of the others.  Each double-colon rule's commands are
2488 executed if the target is older than any dependencies of that rule.  This
2489 can result in executing none, any, or all of the double-colon rules.
2491 Double-colon rules with the same target are in fact completely separate
2492 from one another.  Each double-colon rule is processed individually, just
2493 as rules with different targets are processed.
2495 The double-colon rules for a target are executed in the order they appear
2496 in the makefile.  However, the cases where double-colon rules really make
2497 sense are those where the order of executing the commands would not matter.
2499 Double-colon rules are somewhat obscure and not often very useful; they
2500 provide a mechanism for cases in which the method used to update a target
2501 differs depending on which dependency files caused the update, and such
2502 cases are rare.
2504 Each double-colon rule should specify commands; if it does not, an
2505 implicit rule will be used if one applies.
2506 @xref{Implicit Rules, ,Using Implicit Rules}.
2508 @node Automatic Dependencies,  , Double-Colon, Rules
2509 @section Generating Dependencies Automatically
2510 @cindex dependencies, automatic generation
2511 @cindex automatic generation of dependencies
2512 @cindex generating dependencies automatically
2514 In the makefile for a program, many of the rules you need to write often
2515 say only that some object file depends on some header
2516 file.  For example, if @file{main.c} uses @file{defs.h} via an
2517 @code{#include}, you would write:
2519 @example
2520 main.o: defs.h
2521 @end example
2523 @noindent
2524 You need this rule so that @code{make} knows that it must remake
2525 @file{main.o} whenever @file{defs.h} changes.  You can see that for a
2526 large program you would have to write dozens of such rules in your
2527 makefile.  And, you must always be very careful to update the makefile
2528 every time you add or remove an @code{#include}.
2529 @cindex @code{#include}
2531 @cindex @code{-M} (to compiler)
2532 To avoid this hassle, most modern C compilers can write these rules for
2533 you, by looking at the @code{#include} lines in the source files.
2534 Usually this is done with the @samp{-M} option to the compiler.
2535 For example, the command:
2537 @example
2538 cc -M main.c
2539 @end example
2541 @noindent
2542 generates the output:
2544 @example
2545 main.o : main.c defs.h
2546 @end example
2548 @noindent
2549 Thus you no longer have to write all those rules yourself.
2550 The compiler will do it for you.
2552 Note that such a dependency constitutes mentioning @file{main.o} in a
2553 makefile, so it can never be considered an intermediate file by implicit
2554 rule search.  This means that @code{make} won't ever remove the file
2555 after using it; @pxref{Chained Rules, ,Chains of Implicit Rules}.
2557 @cindex @code{make depend}
2558 With old @code{make} programs, it was traditional practice to use this
2559 compiler feature to generate dependencies on demand with a command like
2560 @samp{make depend}.  That command would create a file @file{depend}
2561 containing all the automatically-generated dependencies; then the
2562 makefile could use @code{include} to read them in (@pxref{Include}).
2564 In GNU @code{make}, the feature of remaking makefiles makes this
2565 practice obsolete---you need never tell @code{make} explicitly to
2566 regenerate the dependencies, because it always regenerates any makefile
2567 that is out of date.  @xref{Remaking Makefiles}.
2569 The practice we recommend for automatic dependency generation is to have
2570 one makefile corresponding to each source file.  For each source file
2571 @file{@var{name}.c} there is a makefile @file{@var{name}.d} which lists
2572 what files the object file @file{@var{name}.o} depends on.  That way
2573 only the source files that have changed need to be rescanned to produce
2574 the new dependencies.
2576 Here is the pattern rule to generate a file of dependencies (i.e., a makefile)
2577 called @file{@var{name}.d} from a C source file called @file{@var{name}.c}:
2579 @smallexample
2580 @group
2581 %.d: %.c
2582         $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< \
2583                       | sed '\''s/\($*\)\.o[ :]*/\1 $@@/g'\'' > $@@'
2584 @end group
2585 @end smallexample
2587 @noindent
2588 @xref{Pattern Rules}, for information on defining pattern rules.  The
2589 @samp{-e} flag to the shell makes it exit immediately if the
2590 @code{$(CC)} command fails (exits with a nonzero status).  Normally the
2591 shell exits with the status of the last command in the pipeline
2592 (@code{sed} in this case), so @code{make} would not notice a nonzero
2593 status from the compiler.
2594 @cindex @code{-e} (shell flag)
2596 @cindex @code{-MM} (to GNU compiler)
2597 With the GNU C compiler, you may wish to use the @samp{-MM} flag instead
2598 of @samp{-M}.  This omits dependencies on system header files.
2599 @xref{Preprocessor Options, , Options Controlling the Preprocessor,
2600 gcc.info, Using GNU CC}, for details.
2602 @cindex @code{sed} (shell command)
2603 The purpose of the @code{sed} command is to translate (for example):
2605 @example
2606 main.o : main.c defs.h
2607 @end example
2609 @noindent
2610 into:
2612 @example
2613 main.o main.d : main.c defs.h
2614 @end example
2616 @noindent
2617 @cindex @code{.d}
2618 This makes each @samp{.d} file depend on all the source and header files
2619 that the corresponding @samp{.o} file depends on.  @code{make} then
2620 knows it must regenerate the dependencies whenever any of the source or
2621 header files changes.
2623 Once you've defined the rule to remake the @samp{.d} files,
2624 you then use the @code{include} directive to read them all in.
2625 @xref{Include}.  For example:
2627 @example
2628 @group
2629 sources = foo.c bar.c
2631 include $(sources:.c=.d)
2632 @end group
2633 @end example
2635 @noindent
2636 (This example uses a substitution variable reference to translate the
2637 list of source files @samp{foo.c bar.c} into a list of dependency
2638 makefiles, @samp{foo.d bar.d}.  @xref{Substitution Refs}, for full
2639 information on substitution references.)  Since the @samp{.d} files are
2640 makefiles like any others, @code{make} will remake them as necessary
2641 with no further work from you.  @xref{Remaking Makefiles}.
2643 @node Commands, Using Variables, Rules, Top
2644 @chapter Writing the Commands in Rules
2645 @cindex commands, how to write
2646 @cindex rule commands
2647 @cindex writing rule commands
2649 The commands of a rule consist of shell command lines to be executed one
2650 by one.  Each command line must start with a tab, except that the first
2651 command line may be attached to the target-and-dependencies line with a
2652 semicolon in between.  Blank lines and lines of just comments may appear
2653 among the command lines; they are ignored.  (But beware, an apparently
2654 ``blank'' line that begins with a tab is @emph{not} blank!  It is an
2655 empty command; @pxref{Empty Commands}.)
2657 Users use many different shell programs, but commands in makefiles are
2658 always interpreted by @file{/bin/sh} unless the makefile specifies
2659 otherwise.  @xref{Execution, ,Command Execution}.
2661 @cindex comments, in commands
2662 @cindex commands, comments in
2663 @cindex @code{#} (comments), in commands
2664 The shell that is in use determines whether comments can be written on
2665 command lines, and what syntax they use.  When the shell is
2666 @file{/bin/sh}, a @samp{#} starts a comment that extends to the end of
2667 the line.  The @samp{#} does not have to be at the beginning of a line.
2668 Text on a line before a @samp{#} is not part of the comment.
2670 @menu
2671 * Echoing::                     How to control when commands are echoed.
2672 * Execution::                   How commands are executed.
2673 * Parallel::                    How commands can be executed in parallel.
2674 * Errors::                      What happens after a command execution error.
2675 * Interrupts::                  What happens when a command is interrupted.
2676 * Recursion::                   Invoking @code{make} from makefiles.
2677 * Sequences::                   Defining canned sequences of commands.
2678 * Empty Commands::              Defining useful, do-nothing commands.
2679 @end menu
2681 @node Echoing, Execution,  , Commands
2682 @section Command Echoing
2683 @cindex echoing of commands
2684 @cindex silent operation
2685 @cindex @code{@@} (in commands)
2686 @cindex commands, echoing
2687 @cindex printing of commands
2689 Normally @code{make} prints each command line before it is executed.
2690 We call this @dfn{echoing} because it gives the appearance that you
2691 are typing the commands yourself.
2693 When a line starts with @samp{@@}, the echoing of that line is suppressed.
2694 The @samp{@@} is discarded before the command is passed to the shell.
2695 Typically you would use this for a command whose only effect is to print
2696 something, such as an @code{echo} command to indicate progress through
2697 the makefile:
2699 @example
2700 @@echo About to make distribution files
2701 @end example
2703 @cindex @code{-n}
2704 @cindex @code{--just-print}
2705 @cindex @code{--dry-run}
2706 @cindex @code{--recon}
2707 When @code{make} is given the flag @samp{-n} or @samp{--just-print},
2708 echoing is all that happens, no execution.  @xref{Options Summary,
2709 ,Summary of Options}.  In this case and only this case, even the
2710 commands starting with @samp{@@} are printed.  This flag is useful for
2711 finding out which commands @code{make} thinks are necessary without
2712 actually doing them.
2714 @cindex @code{-s}
2715 @cindex @code{--silent}
2716 @cindex @code{--quiet}
2717 @findex .SILENT
2718 The @samp{-s} or @samp{--silent}
2719 flag to @code{make} prevents all echoing, as if all commands
2720 started with @samp{@@}.  A rule in the makefile for the special target
2721 @code{.SILENT} without dependencies has the same effect
2722 (@pxref{Special Targets, ,Special Built-in Target Names}).
2723 @code{.SILENT} is essentially obsolete since @samp{@@} is more flexible.@refill
2725 @node Execution, Parallel, Echoing, Commands
2726 @section Command Execution
2727 @cindex commands, execution
2728 @cindex execution, of commands
2729 @cindex shell command, execution
2730 @vindex SHELL @r{(command execution)}
2732 When it is time to execute commands to update a target, they are executed
2733 by making a new subshell for each line.  (In practice, @code{make} may
2734 take shortcuts that do not affect the results.)
2736 @cindex @code{cd} (shell command)
2737 @strong{Please note:} this implies that shell commands such as
2738 @code{cd} that set variables local to each process will not affect the
2739 following command lines.  If you want to use @code{cd} to affect the
2740 next command, put the two on a single line with a semicolon between
2741 them.  Then @code{make} will consider them a single command and pass
2742 them, together, to a shell which will execute them in sequence.  For
2743 example:
2745 @example
2746 foo : bar/lose
2747         cd bar; gobble lose > ../foo
2748 @end example
2750 @cindex commands, backslash (@code{\}) in
2751 @cindex commands, quoting newlines in
2752 @cindex backslash (@code{\}), in commands
2753 @cindex @code{\} (backslash), in commands
2754 @cindex quoting newline, in commands
2755 @cindex newline, quoting, in commands
2756 If you would like to split a single shell command into multiple lines of
2757 text, you must use a backslash at the end of all but the last subline.
2758 Such a sequence of lines is combined into a single line, by deleting the
2759 backslash-newline sequences, before passing it to the shell.  Thus, the
2760 following is equivalent to the preceding example:
2762 @example
2763 @group
2764 foo : bar/lose
2765         cd bar;  \
2766         gobble lose > ../foo
2767 @end group
2768 @end example
2770 @vindex SHELL
2771 The program used as the shell is taken from the variable @code{SHELL}.
2772 By default, the program @file{/bin/sh} is used.
2774 @cindex environment, @code{SHELL} in
2775 Unlike most variables, the variable @code{SHELL} is never set from the
2776 environment.  This is because the @code{SHELL} environment variable is
2777 used to specify your personal choice of shell program for interactive
2778 use.  It would be very bad for personal choices like this to affect
2779 the functioning of makefiles.  @xref{Environment, ,Variables from the
2780 Environment}.
2782 @node Parallel, Errors, Execution, Commands
2783 @section Parallel Execution
2784 @cindex commands, execution in parallel
2785 @cindex parallel execution
2786 @cindex execution, in parallel
2787 @cindex job slots
2788 @cindex @code{-j}
2789 @cindex @code{--jobs}
2791 GNU @code{make} knows how to execute several commands at once.
2792 Normally, @code{make} will execute only one command at a time, waiting
2793 for it to finish before executing the next.  However, the @samp{-j} or
2794 @samp{--jobs} option tells @code{make} to execute many commands
2795 simultaneously.@refill
2797 If the @samp{-j} option is followed by an integer, this is the number of
2798 commands to execute at once; this is called the number of @dfn{job slots}.
2799 If there is nothing looking like an integer after the @samp{-j} option,
2800 there is no limit on the number of job slots.  The default number of job
2801 slots is one, which means serial execution (one thing at a time).
2803 One unpleasant consequence of running several commands simultaneously is
2804 that output from all of the commands comes when the commands send it, so
2805 messages from different commands may be interspersed.
2807 Another problem is that two processes cannot both take input from the
2808 same device; so to make sure that only one command tries to take input
2809 from the terminal at once, @code{make} will invalidate the standard
2810 input streams of all but one running command.  This means that
2811 attempting to read from standard input will usually be a fatal error (a
2812 @samp{Broken pipe} signal) for most child processes if there are
2813 several.
2814 @cindex broken pipe
2815 @cindex standard input
2817 It is unpredictable which command will have a valid standard input stream
2818 (which will come from the terminal, or wherever you redirect the standard
2819 input of @code{make}).  The first command run will always get it first, and
2820 the first command started after that one finishes will get it next, and so
2823 We will change how this aspect of @code{make} works if we find a better
2824 alternative.  In the mean time, you should not rely on any command using
2825 standard input at all if you are using the parallel execution feature; but
2826 if you are not using this feature, then standard input works normally in
2827 all commands.
2829 If a command fails (is killed by a signal or exits with a nonzero
2830 status), and errors are not ignored for that command
2831 (@pxref{Errors, ,Errors in Commands}),
2832 the remaining command lines to remake the same target will not be run.
2833 If a command fails and the @samp{-k} or @samp{--keep-going}
2834 option was not given
2835 (@pxref{Options Summary, ,Summary of Options}),
2836 @code{make} aborts execution.  If make
2837 terminates for any reason (including a signal) with child processes
2838 running, it waits for them to finish before actually exiting.@refill
2840 @cindex load average
2841 @cindex limiting jobs based on load
2842 @cindex jobs, limiting based on load
2843 @cindex @code{-l} (load average)
2844 @cindex @code{--max-load}
2845 @cindex @code{--load-average}
2846 When the system is heavily loaded, you will probably want to run fewer jobs
2847 than when it is lightly loaded.  You can use the @samp{-l} option to tell
2848 @code{make} to limit the number of jobs to run at once, based on the load
2849 average.  The @samp{-l} or @samp{--max-load}
2850 option is followed by a floating-point number.  For
2851 example,
2853 @example
2854 -l 2.5
2855 @end example
2857 @noindent
2858 will not let @code{make} start more than one job if the load average is
2859 above 2.5.  The @samp{-l} option with no following number removes the
2860 load limit, if one was given with a previous @samp{-l} option.@refill
2862 More precisely, when @code{make} goes to start up a job, and it already has
2863 at least one job running, it checks the current load average; if it is not
2864 lower than the limit given with @samp{-l}, @code{make} waits until the load
2865 average goes below that limit, or until all the other jobs finish.
2867 By default, there is no load limit.
2869 @node Errors, Interrupts, Parallel, Commands
2870 @section Errors in Commands
2871 @cindex errors (in commands)
2872 @cindex commands, errors in
2873 @cindex exit status (errors)
2875 After each shell command returns, @code{make} looks at its exit status.
2876 If the command completed successfully, the next command line is executed
2877 in a new shell; after the last command line is finished, the rule is
2878 finished.
2880 If there is an error (the exit status is nonzero), @code{make} gives up on
2881 the current rule, and perhaps on all rules.
2883 Sometimes the failure of a certain command does not indicate a problem.
2884 For example, you may use the @code{mkdir} command to ensure that a
2885 directory exists.  If the directory already exists, @code{mkdir} will
2886 report an error, but you probably want @code{make} to continue regardless.
2888 @cindex @code{-} (in commands)
2889 To ignore errors in a command line, write a @samp{-} at the beginning of
2890 the line's text (after the initial tab).  The @samp{-} is discarded before
2891 the command is passed to the shell for execution.
2893 For example,
2895 @example
2896 @group
2897 clean:
2898         -rm -f *.o
2899 @end group
2900 @end example
2901 @cindex @code{rm} (shell command)
2903 @noindent
2904 This causes @code{rm} to continue even if it is unable to remove a file.
2906 @cindex @code{-i}
2907 @cindex @code{--ignore-errors}
2908 @findex .IGNORE
2909 When you run @code{make} with the @samp{-i} or @samp{--ignore-errors}
2910 flag, errors are ignored in all commands of all rules.  A rule in the
2911 makefile for the special target @code{.IGNORE} has the same effect, if
2912 there are no dependencies.  These ways of ignoring errors are obsolete
2913 because @samp{-} is more flexible.
2915 When errors are to be ignored, because of either a @samp{-} or the
2916 @samp{-i} flag, @code{make} treats an error return just like success,
2917 except that it prints out a message that tells you the status code
2918 the command exited with, and says that the error has been ignored.
2920 When an error happens that @code{make} has not been told to ignore,
2921 it implies that the current target cannot be correctly remade, and neither
2922 can any other that depends on it either directly or indirectly.  No further
2923 commands will be executed for these targets, since their preconditions
2924 have not been achieved.
2927 @cindex @code{-k}
2928 @cindex @code{--keep-going}
2929 Normally @code{make} gives up immediately in this circumstance, returning a
2930 nonzero status.  However, if the @samp{-k} or @samp{--keep-going}
2931 flag is specified, @code{make}
2932 continues to consider the other dependencies of the pending targets,
2933 remaking them if necessary, before it gives up and returns nonzero status.
2934 For example, after an error in compiling one object file, @samp{make -k}
2935 will continue compiling other object files even though it already knows
2936 that linking them will be impossible.  @xref{Options Summary, ,Summary of Options}.
2938 The usual behavior assumes that your purpose is to get the specified
2939 targets up to date; once @code{make} learns that this is impossible, it
2940 might as well report the failure immediately.  The @samp{-k} option says
2941 that the real purpose is to test as many of the changes made in the
2942 program as possible, perhaps to find several independent problems so
2943 that you can correct them all before the next attempt to compile.  This
2944 is why Emacs' @code{compile} command passes the @samp{-k} flag by
2945 default.
2946 @cindex Emacs (@code{M-x compile})
2948 @findex .DELETE_ON_ERROR
2949 @cindex deletion of target files
2950 @cindex removal of target files
2951 @cindex target, deleting on error
2952 Usually when a command fails, if it has changed the target file at all,
2953 the file is corrupted and cannot be used---or at least it is not
2954 completely updated.  Yet the file's timestamp says that it is now up to
2955 date, so the next time @code{make} runs, it will not try to update that
2956 file.  The situation is just the same as when the command is killed by a
2957 signal; @pxref{Interrupts}.  So generally the right thing to do is to
2958 delete the target file if the command fails after beginning to change
2959 the file.  @code{make} will do this if @code{.DELETE_ON_ERROR} appears
2960 as a target.  This is almost always what you want @code{make} to do, but
2961 it is not historical practice; so for compatibility, you must explicitly
2962 request it.
2964 @node Interrupts, Recursion, Errors, Commands
2965 @section Interrupting or Killing @code{make}
2966 @cindex interrupt
2967 @cindex signal
2968 @cindex deletion of target files
2969 @cindex removal of target files
2970 @cindex target, deleting on interrupt
2971 @cindex killing (interruption)
2973 If @code{make} gets a fatal signal while a command is executing, it may
2974 delete the target file that the command was supposed to update.  This is
2975 done if the target file's last-modification time has changed since
2976 @code{make} first checked it.
2978 The purpose of deleting the target is to make sure that it is remade from
2979 scratch when @code{make} is next run.  Why is this?  Suppose you type
2980 @kbd{Ctrl-c} while a compiler is running, and it has begun to write an
2981 object file @file{foo.o}.  The @kbd{Ctrl-c} kills the compiler, resulting
2982 in an incomplete file whose last-modification time is newer than the source
2983 file @file{foo.c}.  But @code{make} also receives the @kbd{Ctrl-c} signal
2984 and deletes this incomplete file.  If @code{make} did not do this, the next
2985 invocation of @code{make} would think that @file{foo.o} did not require
2986 updating---resulting in a strange error message from the linker when it
2987 tries to link an object file half of which is missing.
2989 @findex .PRECIOUS
2990 You can prevent the deletion of a target file in this way by making the
2991 special target @code{.PRECIOUS} depend on it.  Before remaking a target,
2992 @code{make} checks to see whether it appears on the dependencies of
2993 @code{.PRECIOUS}, and thereby decides whether the target should be deleted
2994 if a signal happens.  Some reasons why you might do this are that the
2995 target is updated in some atomic fashion, or exists only to record a
2996 modification-time (its contents do not matter), or must exist at all
2997 times to prevent other sorts of trouble.
2999 @node Recursion, Sequences, Interrupts, Commands
3000 @section Recursive Use of @code{make}
3001 @cindex recursion
3002 @cindex subdirectories, recursion for
3004 Recursive use of @code{make} means using @code{make} as a command in a
3005 makefile.  This technique is useful when you want separate makefiles for
3006 various subsystems that compose a larger system.  For example, suppose you
3007 have a subdirectory @file{subdir} which has its own makefile, and you would
3008 like the containing directory's makefile to run @code{make} on the
3009 subdirectory.  You can do it by writing this:
3011 @example
3012 subsystem:
3013         cd subdir; $(MAKE)
3014 @end example
3016 @noindent
3017 or, equivalently, this (@pxref{Options Summary, ,Summary of Options}):
3019 @example
3020 subsystem:
3021         $(MAKE) -C subdir
3022 @end example
3023 @cindex @code{-C}
3024 @cindex @code{--directory}
3026 You can write recursive @code{make} commands just by copying this example,
3027 but there are many things to know about how they work and why, and about
3028 how the sub-@code{make} relates to the top-level @code{make}.
3030 @menu
3031 * MAKE Variable::               The special effects of using @samp{$(MAKE)}.
3032 * Variables/Recursion::         How to communicate variables to a sub-@code{make}.
3033 * Options/Recursion::           How to communicate options to a sub-@code{make}.
3034 * -w Option::                   How the @samp{-w} or @samp{--print-directory} option
3035                                  helps debug use of recursive @code{make} commands.
3036 @end menu
3038 @node MAKE Variable, Variables/Recursion,  , Recursion
3039 @subsection How the @code{MAKE} Variable Works
3040 @vindex MAKE
3041 @cindex recursion, and @code{MAKE} variable
3043 Recursive @code{make} commands should always use the variable @code{MAKE},
3044 not the explicit command name @samp{make}, as shown here:
3046 @example
3047 @group
3048 subsystem:
3049         cd subdir; $(MAKE)
3050 @end group
3051 @end example
3053 The value of this variable is the file name with which @code{make} was
3054 invoked.  If this file name was @file{/bin/make}, then the command executed
3055 is @samp{cd subdir; /bin/make}.  If you use a special version of
3056 @code{make} to run the top-level makefile, the same special version will be
3057 executed for recursive invocations.
3058 @cindex @code{cd} (shell command)
3060 As a special feature, using the variable @code{MAKE} in the commands of
3061 a rule alters the effects of the @samp{-t} (@samp{--touch}), @samp{-n}
3062 (@samp{--just-print}), or @samp{-q} (@w{@samp{--question}}) option.
3063 Using the @code{MAKE} variable has the same effect as using a @samp{+}
3064 character at the beginning of the command line.  @xref{Instead of
3065 Execution, ,Instead of Executing the Commands}.@refill
3067 Consider the command @samp{make -t} in the above example.  (The
3068 @samp{-t} option marks targets as up to date without actually running
3069 any commands; see @ref{Instead of Execution}.)  Following the usual
3070 definition of @samp{-t}, a @samp{make -t} command in the example would
3071 create a file named @file{subsystem} and do nothing else.  What you
3072 really want it to do is run @samp{@w{cd subdir;} @w{make -t}}; but that would
3073 require executing the command, and @samp{-t} says not to execute
3074 commands.@refill
3075 @cindex @code{-t}, and recursion
3076 @cindex recursion, and @code{-t}
3077 @cindex @code{--touch}, and recursion
3079 The special feature makes this do what you want: whenever a command
3080 line of a rule contains the variable @code{MAKE}, the flags @samp{-t},
3081 @samp{-n} and @samp{-q} do not apply to that line.  Command lines
3082 containing @code{MAKE} are executed normally despite the presence of a
3083 flag that causes most commands not to be run.  The usual
3084 @code{MAKEFLAGS} mechanism passes the flags to the sub-@code{make}
3085 (@pxref{Options/Recursion, ,Communicating Options to a
3086 Sub-@code{make}}), so your request to touch the files, or print the
3087 commands, is propagated to the subsystem.@refill
3089 @node Variables/Recursion, Options/Recursion, MAKE Variable, Recursion
3090 @subsection Communicating Variables to a Sub-@code{make}
3091 @cindex sub-@code{make}
3092 @cindex environment, and recursion
3093 @cindex exporting variables
3094 @cindex variables, environment
3095 @cindex variables, exporting
3096 @cindex recursion, and environment
3097 @cindex recursion, and variables
3099 Variable values of the top-level @code{make} can be passed to the
3100 sub-@code{make} through the environment by explicit request.  These
3101 variables are defined in the sub-@code{make} as defaults, but do not
3102 override what is specified in the makefile used by the sub-@code{make}
3103 makefile unless you use the @samp{-e} switch (@pxref{Options Summary,
3104 ,Summary of Options}).@refill
3106 To pass down, or @dfn{export}, a variable, @code{make} adds the variable
3107 and its value to the environment for running each command.  The
3108 sub-@code{make}, in turn, uses the environment to initialize its table
3109 of variable values.  @xref{Environment, ,Variables from the
3110 Environment}.
3112 Except by explicit request, @code{make} exports a variable only if it
3113 is either defined in the environment initially or set on the command
3114 line, and if its name consists only of letters, numbers, and underscores.
3115 Some shells cannot cope with environment variable names consisting of
3116 characters other than letters, numbers, and underscores.
3118 The special variables @code{SHELL} and @code{MAKEFLAGS} are always
3119 exported (unless you unexport them).
3120 @code{MAKEFILES} is exported if you set it to anything.
3122 @code{make} automatically passes down variable values that were defined
3123 on the command line, by putting them in the @code{MAKEFLAGS} variable.
3124 @iftex
3125 See the next section.
3126 @end iftex
3127 @ifinfo
3128 @xref{Options/Recursion}.
3129 @end ifinfo
3131 Variables are @emph{not} normally passed down if they were created by
3132 default by @code{make} (@pxref{Implicit Variables, ,Variables Used by
3133 Implicit Rules}).  The sub-@code{make} will define these for
3134 itself.@refill
3136 @findex export
3137 If you want to export specific variables to a sub-@code{make}, use the
3138 @code{export} directive, like this:
3140 @example
3141 export @var{variable} @dots{}
3142 @end example
3144 @noindent
3145 @findex unexport
3146 If you want to @emph{prevent} a variable from being exported, use the
3147 @code{unexport} directive, like this:
3149 @example
3150 unexport @var{variable} @dots{}
3151 @end example
3153 @noindent
3154 As a convenience, you can define a variable and export it at the same
3155 time by doing:
3157 @example
3158 export @var{variable} = value
3159 @end example
3161 @noindent
3162 has the same result as:
3164 @example
3165 @var{variable} = value
3166 export @var{variable}
3167 @end example
3169 @noindent
3172 @example
3173 export @var{variable} := value
3174 @end example
3176 @noindent
3177 has the same result as:
3179 @example
3180 @var{variable} := value
3181 export @var{variable}
3182 @end example
3184 Likewise,
3186 @example
3187 export @var{variable} += value
3188 @end example
3190 @noindent
3191 is just like:
3193 @example
3194 @var{variable} += value
3195 export @var{variable}
3196 @end example
3198 @noindent
3199 @xref{Appending, ,Appending More Text to Variables}.
3201 You may notice that the @code{export} and @code{unexport} directives
3202 work in @code{make} in the same way they work in the shell, @code{sh}.
3204 If you want all variables to be exported by default, you can use
3205 @code{export} by itself:
3207 @example
3208 export
3209 @end example
3211 @noindent
3212 This tells @code{make} that variables which are not explicitly mentioned
3213 in an @code{export} or @code{unexport} directive should be exported.
3214 Any variable given in an @code{unexport} directive will still @emph{not}
3215 be exported.  If you use @code{export} by itself to export variables by
3216 default, variables whose names contain characters other than
3217 alphanumerics and underscores will not be exported unless specifically
3218 mentioned in an @code{export} directive.@refill
3220 @findex .EXPORT_ALL_VARIABLES
3221 The behavior elicited by an @code{export} directive by itself was the
3222 default in older versions of GNU @code{make}.  If your makefiles depend
3223 on this behavior and you want to be compatible with old versions of
3224 @code{make}, you can write a rule for the special target
3225 @code{.EXPORT_ALL_VARIABLES} instead of using the @code{export} directive.
3226 This will be ignored by old @code{make}s, while the @code{export}
3227 directive will cause a syntax error.@refill
3228 @cindex compatibility in exporting
3230 Likewise, you can use @code{unexport} by itself to tell @code{make}
3231 @emph{not} to export variables by default.  Since this is the default
3232 behavior, you would only need to do this if @code{export} had been used
3233 by itself earlier (in an included makefile, perhaps).  You
3234 @strong{cannot} use @code{export} and @code{unexport} by themselves to
3235 have variables exported for some commands and not for others.  The last
3236 @code{export} or @code{unexport} directive that appears by itself
3237 determines the behavior for the entire run of @code{make}.@refill
3239 @vindex MAKELEVEL
3240 @cindex recursion, level of
3241 As a special feature, the variable @code{MAKELEVEL} is changed when it
3242 is passed down from level to level.  This variable's value is a string
3243 which is the depth of the level as a decimal number.  The value is
3244 @samp{0} for the top-level @code{make}; @samp{1} for a sub-@code{make},
3245 @samp{2} for a sub-sub-@code{make}, and so on.  The incrementation
3246 happens when @code{make} sets up the environment for a command.@refill
3248 The main use of @code{MAKELEVEL} is to test it in a conditional
3249 directive (@pxref{Conditionals, ,Conditional Parts of Makefiles}); this
3250 way you can write a makefile that behaves one way if run recursively and
3251 another way if run directly by you.@refill
3253 @vindex MAKEFILES
3254 You can use the variable @code{MAKEFILES} to cause all sub-@code{make}
3255 commands to use additional makefiles.  The value of @code{MAKEFILES} is
3256 a whitespace-separated list of file names.  This variable, if defined in
3257 the outer-level makefile, is passed down through the environment; then
3258 it serves as a list of extra makefiles for the sub-@code{make} to read
3259 before the usual or specified ones.  @xref{MAKEFILES Variable, ,The
3260 Variable @code{MAKEFILES}}.@refill
3262 @node Options/Recursion, -w Option, Variables/Recursion, Recursion
3263 @subsection Communicating Options to a Sub-@code{make}
3264 @cindex options, and recursion
3265 @cindex recursion, and options
3267 @vindex MAKEFLAGS
3268 Flags such as @samp{-s} and @samp{-k} are passed automatically to the
3269 sub-@code{make} through the variable @code{MAKEFLAGS}.  This variable is
3270 set up automatically by @code{make} to contain the flag letters that
3271 @code{make} received.  Thus, if you do @w{@samp{make -ks}} then
3272 @code{MAKEFLAGS} gets the value @samp{ks}.@refill
3274 As a consequence, every sub-@code{make} gets a value for @code{MAKEFLAGS}
3275 in its environment.  In response, it takes the flags from that value and
3276 processes them as if they had been given as arguments.
3277 @xref{Options Summary, ,Summary of Options}.
3279 @cindex command line variable definitions, and recursion
3280 @cindex variables, command line, and recursion
3281 @cindex recursion, and command line variable definitions
3282 Likewise variables defined on the command line are passed to the
3283 sub-@code{make} through @code{MAKEFLAGS}.  Words in the value of
3284 @code{MAKEFLAGS} that contain @samp{=}, @code{make} treats as variable
3285 definitions just as if they appeared on the command line.
3286 @xref{Overriding, ,Overriding Variables}.
3288 @cindex @code{-C}, and recursion
3289 @cindex @code{-f}, and recursion
3290 @cindex @code{-o}, and recursion
3291 @cindex @code{-W}, and recursion
3292 @cindex @code{--directory}, and recursion
3293 @cindex @code{--file}, and recursion
3294 @cindex @code{--old-file}, and recursion
3295 @cindex @code{--assume-old}, and recursion
3296 @cindex @code{--assume-new}, and recursion
3297 @cindex @code{--new-file}, and recursion
3298 @cindex recursion, and @code{-C}
3299 @cindex recursion, and @code{-f}
3300 @cindex recursion, and @code{-o}
3301 @cindex recursion, and @code{-W}
3302 The options @samp{-C}, @samp{-f}, @samp{-o}, and @samp{-W} are not put
3303 into @code{MAKEFLAGS}; these options are not passed down.@refill
3305 @cindex @code{-j}, and recursion
3306 @cindex @code{--jobs}, and recursion
3307 @cindex recursion, and @code{-j}
3308 @cindex job slots, and recursion
3309 The @samp{-j} option is a special case (@pxref{Parallel, ,Parallel Execution}).
3310 If you set it to some numeric value, @samp{-j 1} is always put into
3311 @code{MAKEFLAGS} instead of the value you specified.  This is because if
3312 the @w{@samp{-j}} option were passed down to sub-@code{make}s, you would
3313 get many more jobs running in parallel than you asked for.  If you give
3314 @samp{-j} with no numeric argument, meaning to run as many jobs as
3315 possible in parallel, this is passed down, since multiple infinities are
3316 no more than one.@refill
3318 If you do not want to pass the other flags down, you must change the
3319 value of @code{MAKEFLAGS}, like this:
3321 @example
3322 subsystem:
3323         cd subdir; $(MAKE) MAKEFLAGS=
3324 @end example
3326 @vindex MAKEOVERRIDES
3327 The command line variable definitions really appear in the variable
3328 @code{MAKEOVERRIDES}, and @code{MAKEFLAGS} contains a reference to this
3329 variable.  If you do want to pass flags down normally, but don't want to
3330 pass down the command line variable definitions, you can reset
3331 @code{MAKEOVERRIDES} to empty, like this:
3333 @example
3334 MAKEOVERRIDES =
3335 @end example
3337 @noindent
3338 @cindex Arg list too long
3339 @cindex E2BIG
3340 This is not usually useful to do.  However, some systems have a small
3341 fixed limit on the size of the environment, and putting so much
3342 information in into the value of @code{MAKEFLAGS} can exceed it.
3343 If you see the error message @samp{Arg list too long}, this may be the problem.
3344 @findex .POSIX
3345 @cindex POSIX.2
3346 (For strict compliance with POSIX.2, changing @code{MAKEOVERRIDES} does
3347 not affect @code{MAKEFLAGS} if the special target @samp{.POSIX} appears
3348 in the makefile.  You probably do not care about this.)
3350 @vindex MFLAGS
3351 A similar variable @code{MFLAGS} exists also, for historical
3352 compatibility.  It has the same value as @code{MAKEFLAGS} except that it
3353 does not contain the command line variable definitions, and it always
3354 begins with a hyphen unless it is empty (@code{MAKEFLAGS} begins with a
3355 hyphen only when it begins with an option that has no single-letter
3356 version, such as @samp{--warn-undefined-variables}).  @code{MFLAGS} was
3357 traditionally used explicitly in the recursive @code{make} command, like
3358 this:
3360 @example
3361 subsystem:
3362         cd subdir; $(MAKE) $(MFLAGS)
3363 @end example
3365 @noindent
3366 but now @code{MAKEFLAGS} makes this usage redundant.  If you want your
3367 makefiles to be compatible with old @code{make} programs, use this
3368 technique; it will work fine with more modern @code{make} versions too.
3370 @cindex setting options from environment
3371 @cindex options, setting from environment
3372 @cindex setting options in makefiles
3373 @cindex options, setting in makefiles
3374 The @code{MAKEFLAGS} variable can also be useful if you want to have
3375 certain options, such as @samp{-k} (@pxref{Options Summary, ,Summary of
3376 Options}), set each time you run @code{make}.  You simply put a value for
3377 @code{MAKEFLAGS} in your environment.  You can also set @code{MAKEFLAGS} in
3378 a makefile, to specify additional flags that should also be in effect for
3379 that makefile.  (Note that you cannot use @code{MFLAGS} this way.  That
3380 variable is set only for compatibility; @code{make} does not interpret a
3381 value you set for it in any way.)
3383 When @code{make} interprets the value of @code{MAKEFLAGS} (either from the
3384 environment or from a makefile), it first prepends a hyphen if the value
3385 does not already begin with one.  Then it chops the value into words
3386 separated by blanks, and parses these words as if they were options given
3387 on the command line (except that @samp{-C}, @samp{-f}, @samp{-h},
3388 @samp{-o}, @samp{-W}, and their long-named versions are ignored; and there
3389 is no error for an invalid option).
3391 If you do put @code{MAKEFLAGS} in your environment, you should be sure not
3392 to include any options that will drastically affect the actions of
3393 @code{make} and undermine the purpose of makefiles and of @code{make}
3394 itself.  For instance, the @samp{-t}, @samp{-n}, and @samp{-q} options, if
3395 put in one of these variables, could have disastrous consequences and would
3396 certainly have at least surprising and probably annoying effects.@refill
3398 @node -w Option,  , Options/Recursion, Recursion
3399 @subsection The @samp{--print-directory} Option
3400 @cindex directories, printing them
3401 @cindex printing directories
3402 @cindex recursion, and printing directories
3404 If you use several levels of recursive @code{make} invocations, the
3405 @samp{-w} or @w{@samp{--print-directory}} option can make the output a
3406 lot easier to understand by showing each directory as @code{make}
3407 starts processing it and as @code{make} finishes processing it.  For
3408 example, if @samp{make -w} is run in the directory @file{/u/gnu/make},
3409 @code{make} will print a line of the form:@refill
3411 @example
3412 make: Entering directory `/u/gnu/make'.
3413 @end example
3415 @noindent
3416 before doing anything else, and a line of the form:
3418 @example
3419 make: Leaving directory `/u/gnu/make'.
3420 @end example
3422 @noindent
3423 when processing is completed.
3425 @cindex @code{-C}, and @code{-w}
3426 @cindex @code{--directory}, and @code{--print-directory}
3427 @cindex recursion, and @code{-w}
3428 @cindex @code{-w}, and @code{-C}
3429 @cindex @code{-w}, and recursion
3430 @cindex @code{--print-directory}, and @code{--directory}
3431 @cindex @code{--print-directory}, and recursion
3432 @cindex @code{--no-print-directory}
3433 @cindex @code{--print-directory}, disabling
3434 @cindex @code{-w}, disabling
3435 Normally, you do not need to specify this option because @samp{make}
3436 does it for you: @samp{-w} is turned on automatically when you use the
3437 @samp{-C} option, and in sub-@code{make}s.  @code{make} will not
3438 automatically turn on @samp{-w} if you also use @samp{-s}, which says to
3439 be silent, or if you use @samp{--no-print-directory} to explicitly
3440 disable it.
3442 @node Sequences, Empty Commands, Recursion, Commands
3443 @section Defining Canned Command Sequences
3444 @cindex sequences of commands
3445 @cindex commands, sequences of
3447 When the same sequence of commands is useful in making various targets, you
3448 can define it as a canned sequence with the @code{define} directive, and
3449 refer to the canned sequence from the rules for those targets.  The canned
3450 sequence is actually a variable, so the name must not conflict with other
3451 variable names.
3453 Here is an example of defining a canned sequence of commands:
3455 @example
3456 define run-yacc
3457 yacc $(firstword $^)
3458 mv y.tab.c $@@
3459 endef
3460 @end example
3461 @cindex @code{yacc}
3463 @noindent
3464 Here @code{run-yacc} is the name of the variable being defined;
3465 @code{endef} marks the end of the definition; the lines in between are the
3466 commands.  The @code{define} directive does not expand variable references
3467 and function calls in the canned sequence; the @samp{$} characters,
3468 parentheses, variable names, and so on, all become part of the value of the
3469 variable you are defining.
3470 @xref{Defining, ,Defining Variables Verbatim},
3471 for a complete explanation of @code{define}.
3473 The first command in this example runs Yacc on the first dependency of
3474 whichever rule uses the canned sequence.  The output file from Yacc is
3475 always named @file{y.tab.c}.  The second command moves the output to the
3476 rule's target file name.
3478 To use the canned sequence, substitute the variable into the commands of a
3479 rule.  You can substitute it like any other variable
3480 (@pxref{Reference, ,Basics of Variable References}).
3481 Because variables defined by @code{define} are recursively expanded
3482 variables, all the variable references you wrote inside the @code{define}
3483 are expanded now.  For example:
3485 @example
3486 foo.c : foo.y
3487         $(run-yacc)
3488 @end example
3490 @noindent
3491 @samp{foo.y} will be substituted for the variable @samp{$^} when it occurs in
3492 @code{run-yacc}'s value, and @samp{foo.c} for @samp{$@@}.@refill
3494 This is a realistic example, but this particular one is not needed in
3495 practice because @code{make} has an implicit rule to figure out these
3496 commands based on the file names involved
3497 (@pxref{Implicit Rules, ,Using Implicit Rules}).
3499 @cindex @@, and @code{define}
3500 @cindex -, and @code{define}
3501 @cindex +, and @code{define}
3502 In command execution, each line of a canned sequence is treated just as
3503 if the line appeared on its own in the rule, preceded by a tab.  In
3504 particular, @code{make} invokes a separate subshell for each line.  You
3505 can use the special prefix characters that affect command lines
3506 (@samp{@@}, @samp{-}, and @samp{+}) on each line of a canned sequence.
3507 @xref{Commands, ,Writing the Commands in Rules}.
3508 For example, using this canned sequence:
3510 @example
3511 define frobnicate
3512 @@echo "frobnicating target $@@"
3513 frob-step-1 $< -o $@@-step-1
3514 frob-step-2 $@@-step-1 -o $@@
3515 endef
3516 @end example
3518 @noindent
3519 @code{make} will not echo the first line, the @code{echo} command.
3520 But it @emph{will} echo the following two command lines.
3522 On the other hand, prefix characters on the command line that refers to
3523 a canned sequence apply to every line in the sequence.  So the rule:
3525 @example
3526 frob.out: frob.in
3527         @@$(frobnicate)
3528 @end example
3530 @noindent
3531 does not echo @emph{any} commands.
3532 (@xref{Echoing, ,Command Echoing}, for a full explanation of @samp{@@}.)
3534 @node Empty Commands,  , Sequences, Commands
3535 @section Using Empty Commands
3536 @cindex empty commands
3537 @cindex commands, empty
3539 It is sometimes useful to define commands which do nothing.  This is done
3540 simply by giving a command that consists of nothing but whitespace.  For
3541 example:
3543 @example
3544 target: ;
3545 @end example
3547 @noindent
3548 defines an empty command string for @file{target}.  You could also use a
3549 line beginning with a tab character to define an empty command string,
3550 but this would be confusing because such a line looks empty.
3552 @findex .DEFAULT@r{, and empty commands}
3553 You may be wondering why you would want to define a command string that
3554 does nothing.  The only reason this is useful is to prevent a target
3555 from getting implicit commands (from implicit rules or the
3556 @code{.DEFAULT} special target; @pxref{Implicit Rules} and
3557 @pxref{Last Resort, ,Defining Last-Resort Default Rules}).@refill
3559 @c !!! another reason is for canonical stamp files:
3560 @ignore
3561 foo: stamp-foo ;
3562 stamp-foo: foo.in
3563         create foo frm foo.in
3564         touch $@
3565 @end ignore
3567 You may be inclined to define empty command strings for targets that are
3568 not actual files, but only exist so that their dependencies can be
3569 remade.  However, this is not the best way to do that, because the
3570 dependencies may not be remade properly if the target file actually does exist.
3571 @xref{Phony Targets, ,Phony Targets}, for a better way to do this.
3573 @node Using Variables, Conditionals, Commands, Top
3574 @chapter How to Use Variables
3575 @cindex variable
3576 @cindex value
3577 @cindex recursive variable expansion
3578 @cindex simple variable expansion
3580 A @dfn{variable} is a name defined in a makefile to represent a string
3581 of text, called the variable's @dfn{value}.  These values are
3582 substituted by explicit request into targets, dependencies, commands,
3583 and other parts of the makefile.  (In some other versions of @code{make},
3584 variables are called @dfn{macros}.)
3585 @cindex macro
3587 Variables and functions in all parts of a makefile are expanded when
3588 read, except for the shell commands in rules, the right-hand sides of
3589 variable definitions using @samp{=}, and the bodies of variable
3590 definitions using the @code{define} directive.@refill
3592 Variables can represent lists of file names, options to pass to compilers,
3593 programs to run, directories to look in for source files, directories to
3594 write output in, or anything else you can imagine.
3596 A variable name may be any sequence of characters not containing @samp{:},
3597 @samp{#}, @samp{=}, or leading or trailing whitespace.  However,
3598 variable names containing characters other than letters, numbers, and
3599 underscores should be avoided, as they may be given special meanings in the
3600 future, and with some shells they cannot be passed through the environment to a
3601 sub-@code{make}
3602 (@pxref{Variables/Recursion, ,Communicating Variables to a Sub-@code{make}}).
3604 Variable names are case-sensitive.  The names @samp{foo}, @samp{FOO},
3605 and @samp{Foo} all refer to different variables.
3607 It is traditional to use upper case letters in variable names, but we
3608 recommend using lower case letters for variable names that serve internal
3609 purposes in the makefile, and reserving upper case for parameters that
3610 control implicit rules or for parameters that the user should override with
3611 command options (@pxref{Overriding, ,Overriding Variables}).
3613 A few variables have names that are a single punctuation character or
3614 just a few characters.  These are the @dfn{automatic variables}, and
3615 they have particular specialized uses.  @xref{Automatic, ,Automatic Variables}.
3617 @menu
3618 * Reference::                   How to use the value of a variable.
3619 * Flavors::                     Variables come in two flavors.
3620 * Advanced::                    Advanced features for referencing a variable.
3621 * Values::                      All the ways variables get their values.
3622 * Setting::                     How to set a variable in the makefile.
3623 * Appending::                   How to append more text to the old value
3624                                   of a variable.
3625 * Override Directive::          How to set a variable in the makefile even if
3626                                   the user has set it with a command argument.
3627 * Defining::                    An alternate way to set a variable
3628                                   to a verbatim string.
3629 * Environment::                 Variable values can come from the environment.
3630 * Automatic::                   Some special variables have predefined
3631                                   meanings for use with implicit rules.
3632 @end menu
3634 @node Reference, Flavors,  , Using Variables
3635 @section Basics of Variable References
3636 @cindex variables, how to reference
3637 @cindex reference to variables
3638 @cindex @code{$}, in variable reference
3639 @cindex dollar sign (@code{$}), in variable reference
3641 To substitute a variable's value, write a dollar sign followed by the name
3642 of the variable in parentheses or braces: either @samp{$(foo)} or
3643 @samp{$@{foo@}} is a valid reference to the variable @code{foo}.  This
3644 special significance of @samp{$} is why you must write @samp{$$} to have
3645 the effect of a single dollar sign in a file name or command.
3647 Variable references can be used in any context: targets, dependencies,
3648 commands, most directives, and new variable values.  Here is an
3649 example of a common case, where a variable holds the names of all the
3650 object files in a program:
3652 @example
3653 @group
3654 objects = program.o foo.o utils.o
3655 program : $(objects)
3656         cc -o program $(objects)
3658 $(objects) : defs.h
3659 @end group
3660 @end example
3662 Variable references work by strict textual substitution.  Thus, the rule
3664 @example
3665 @group
3666 foo = c
3667 prog.o : prog.$(foo)
3668         $(foo)$(foo) -$(foo) prog.$(foo)
3669 @end group
3670 @end example
3672 @noindent
3673 could be used to compile a C program @file{prog.c}.  Since spaces before
3674 the variable value are ignored in variable assignments, the value of
3675 @code{foo} is precisely @samp{c}.  (Don't actually write your makefiles
3676 this way!)
3678 A dollar sign followed by a character other than a dollar sign,
3679 open-parenthesis or open-brace treats that single character as the
3680 variable name.  Thus, you could reference the variable @code{x} with
3681 @samp{$x}.  However, this practice is strongly discouraged, except in
3682 the case of the automatic variables (@pxref{Automatic, ,Automatic Variables}).
3684 @node Flavors, Advanced, Reference, Using Variables
3685 @section The Two Flavors of Variables
3686 @cindex flavors of variables
3687 @cindex recursive variable expansion
3688 @cindex variables, flavors
3689 @cindex recursively expanded variables
3690 @cindex variables, recursively expanded
3692 There are two ways that a variable in GNU @code{make} can have a value;
3693 we call them the two @dfn{flavors} of variables.  The two flavors are
3694 distinguished in how they are defined and in what they do when expanded.
3696 @cindex =
3697 The first flavor of variable is a @dfn{recursively expanded} variable.
3698 Variables of this sort are defined by lines using @samp{=}
3699 (@pxref{Setting, ,Setting Variables}) or by the @code{define} directive
3700 (@pxref{Defining, ,Defining Variables Verbatim}).  The value you specify
3701 is installed verbatim; if it contains references to other variables,
3702 these references are expanded whenever this variable is substituted (in
3703 the course of expanding some other string).  When this happens, it is
3704 called @dfn{recursive expansion}.@refill
3706 For example,
3708 @example
3709 foo = $(bar)
3710 bar = $(ugh)
3711 ugh = Huh?
3713 all:;echo $(foo)
3714 @end example
3716 @noindent
3717 will echo @samp{Huh?}: @samp{$(foo)} expands to @samp{$(bar)} which
3718 expands to @samp{$(ugh)} which finally expands to @samp{Huh?}.@refill
3720 This flavor of variable is the only sort supported by other versions of
3721 @code{make}.  It has its advantages and its disadvantages.  An advantage
3722 (most would say) is that:
3724 @example
3725 CFLAGS = $(include_dirs) -O
3726 include_dirs = -Ifoo -Ibar
3727 @end example
3729 @noindent
3730 will do what was intended: when @samp{CFLAGS} is expanded in a command,
3731 it will expand to @samp{-Ifoo -Ibar -O}.  A major disadvantage is that you
3732 cannot append something on the end of a variable, as in
3734 @example
3735 CFLAGS = $(CFLAGS) -O
3736 @end example
3738 @noindent
3739 because it will cause an infinite loop in the variable expansion.
3740 (Actually @code{make} detects the infinite loop and reports an error.)
3741 @cindex loops in variable expansion
3742 @cindex variables, loops in expansion
3744 Another disadvantage is that any functions
3745 (@pxref{Functions, ,Functions for Transforming Text})
3746 referenced in the definition will be executed every time the variable is
3747 expanded.  This makes @code{make} run slower; worse, it causes the
3748 @code{wildcard} and @code{shell} functions to give unpredictable results
3749 because you cannot easily control when they are called, or even how many
3750 times.
3752 To avoid all the problems and inconveniences of recursively expanded
3753 variables, there is another flavor: simply expanded variables.
3755 @cindex simply expanded variables
3756 @cindex variables, simply expanded
3757 @cindex :=
3758 @dfn{Simply expanded variables} are defined by lines using @samp{:=}
3759 (@pxref{Setting, ,Setting Variables}).
3760 The value of a simply expanded variable is scanned
3761 once and for all, expanding any references to other variables and
3762 functions, when the variable is defined.  The actual value of the simply
3763 expanded variable is the result of expanding the text that you write.
3764 It does not contain any references to other variables; it contains their
3765 values @emph{as of the time this variable was defined}.  Therefore,
3767 @example
3768 x := foo
3769 y := $(x) bar
3770 x := later
3771 @end example
3773 @noindent
3774 is equivalent to
3776 @example
3777 y := foo bar
3778 x := later
3779 @end example
3781 When a simply expanded variable is referenced, its value is substituted
3782 verbatim.
3784 Here is a somewhat more complicated example, illustrating the use of
3785 @samp{:=} in conjunction with the @code{shell} function.
3786 (@xref{Shell Function, , The @code{shell} Function}.)  This example
3787 also shows use of the variable @code{MAKELEVEL}, which is changed
3788 when it is passed down from level to level.
3789 (@xref{Variables/Recursion, , Communicating Variables to a
3790 Sub-@code{make}}, for information about @code{MAKELEVEL}.)
3792 @vindex MAKELEVEL
3793 @vindex MAKE
3794 @example
3795 @group
3796 ifeq (0,$@{MAKELEVEL@})
3797 cur-dir   := $(shell pwd)
3798 whoami    := $(shell whoami)
3799 host-type := $(shell arch)
3800 MAKE := $@{MAKE@} host-type=$@{host-type@} whoami=$@{whoami@}
3801 endif
3802 @end group
3803 @end example
3805 @noindent
3806 An advantage of this use of @samp{:=} is that a typical
3807 `descend into a directory' command then looks like this:
3809 @example
3810 @group
3811 $@{subdirs@}:
3812       $@{MAKE@} cur-dir=$@{cur-dir@}/$@@ -C $@@ all
3813 @end group
3814 @end example
3816 Simply expanded variables generally make complicated makefile programming
3817 more predictable because they work like variables in most programming
3818 languages.  They allow you to redefine a variable using its own value (or
3819 its value processed in some way by one of the expansion functions) and to
3820 use the expansion functions much more efficiently
3821 (@pxref{Functions, ,Functions for Transforming Text}).
3823 @cindex spaces, in variable values
3824 @cindex whitespace, in variable values
3825 @cindex variables, spaces in values
3826 You can also use them to introduce controlled leading whitespace into
3827 variable values.  Leading whitespace characters are discarded from your
3828 input before substitution of variable references and function calls;
3829 this means you can include leading spaces in a variable value by
3830 protecting them with variable references, like this:
3832 @example
3833 nullstring :=
3834 space := $(nullstring) # end of the line
3835 @end example
3837 @noindent
3838 Here the value of the variable @code{space} is precisely one space.  The
3839 comment @w{@samp{# end of the line}} is included here just for clarity.
3840 Since trailing space characters are @emph{not} stripped from variable
3841 values, just a space at the end of the line would have the same effect
3842 (but be rather hard to read).  If you put whitespace at the end of a
3843 variable value, it is a good idea to put a comment like that at the end
3844 of the line to make your intent clear.  Conversely, if you do @emph{not}
3845 want any whitespace characters at the end of your variable value, you
3846 must remember not to put a random comment on the end of the line after
3847 some whitespace, such as this:
3849 @example
3850 dir := /foo/bar    # directory to put the frobs in
3851 @end example
3853 @noindent
3854 Here the value of the variable @code{dir} is @w{@samp{/foo/bar    }}
3855 (with four trailing spaces), which was probably not the intention.
3856 (Imagine something like @w{@samp{$(dir)/file}} with this definition!)
3858 @node Advanced, Values, Flavors, Using Variables
3859 @section Advanced Features for Reference to Variables
3860 @cindex reference to variables
3862 This section describes some advanced features you can use to reference
3863 variables in more flexible ways.
3865 @menu
3866 * Substitution Refs::           Referencing a variable with
3867                                   substitutions on the value.
3868 * Computed Names::              Computing the name of the variable to refer to.
3869 @end menu
3871 @node Substitution Refs, Computed Names,  , Advanced
3872 @subsection Substitution References
3873 @cindex modified variable reference
3874 @cindex substitution variable reference
3875 @cindex variables, modified reference
3876 @cindex variables, substitution reference
3878 @cindex variables, substituting suffix in
3879 @cindex suffix, substituting in variables
3880 A @dfn{substitution reference} substitutes the value of a variable with
3881 alterations that you specify.  It has the form
3882 @samp{$(@var{var}:@var{a}=@var{b})} (or
3883 @samp{$@{@var{var}:@var{a}=@var{b}@}}) and its meaning is to take the value
3884 of the variable @var{var}, replace every @var{a} at the end of a word with
3885 @var{b} in that value, and substitute the resulting string.
3887 When we say ``at the end of a word'', we mean that @var{a} must appear
3888 either followed by whitespace or at the end of the value in order to be
3889 replaced; other occurrences of @var{a} in the value are unaltered.  For
3890 example:@refill
3892 @example
3893 foo := a.o b.o c.o
3894 bar := $(foo:.o=.c)
3895 @end example
3897 @noindent
3898 sets @samp{bar} to @samp{a.c b.c c.c}.  @xref{Setting, ,Setting Variables}.
3900 A substitution reference is actually an abbreviation for use of the
3901 @code{patsubst} expansion function (@pxref{Text Functions, ,Functions for String Substitution and Analysis}).  We provide
3902 substitution references as well as @code{patsubst} for compatibility with
3903 other implementations of @code{make}.
3905 @findex patsubst
3906 Another type of substitution reference lets you use the full power of
3907 the @code{patsubst} function.  It has the same form
3908 @samp{$(@var{var}:@var{a}=@var{b})} described above, except that now
3909 @var{a} must contain a single @samp{%} character.  This case is
3910 equivalent to @samp{$(patsubst @var{a},@var{b},$(@var{var}))}.
3911 @xref{Text Functions, ,Functions for String Substitution and Analysis},
3912 for a description of the @code{patsubst} function.@refill
3914 @example
3915 @group
3916 @exdent For example:
3918 foo := a.o b.o c.o
3919 bar := $(foo:%.o=%.c)
3920 @end group
3921 @end example
3923 @noindent
3924 sets @samp{bar} to @samp{a.c b.c c.c}.
3926 @node Computed Names,  , Substitution Refs, Advanced
3927 @subsection Computed Variable Names
3928 @cindex nested variable reference
3929 @cindex computed variable name
3930 @cindex variables, computed names
3931 @cindex variables, nested references
3932 @cindex variables, @samp{$} in name
3933 @cindex @code{$}, in variable name
3934 @cindex dollar sign (@code{$}), in variable name
3936 Computed variable names are a complicated concept needed only for
3937 sophisticated makefile programming.  For most purposes you need not
3938 consider them, except to know that making a variable with a dollar sign
3939 in its name might have strange results.  However, if you are the type
3940 that wants to understand everything, or you are actually interested in
3941 what they do, read on.
3943 Variables may be referenced inside the name of a variable.  This is
3944 called a @dfn{computed variable name} or a @dfn{nested variable
3945 reference}.  For example,
3947 @example
3948 x = y
3949 y = z
3950 a := $($(x))
3951 @end example
3953 @noindent
3954 defines @code{a} as @samp{z}: the @samp{$(x)} inside @samp{$($(x))} expands
3955 to @samp{y}, so @samp{$($(x))} expands to @samp{$(y)} which in turn expands
3956 to @samp{z}.  Here the name of the variable to reference is not stated
3957 explicitly; it is computed by expansion of @samp{$(x)}.  The reference
3958 @samp{$(x)} here is nested within the outer variable reference.
3960 The previous example shows two levels of nesting, but any number of levels
3961 is possible.  For example, here are three levels:
3963 @example
3964 x = y
3965 y = z
3966 z = u
3967 a := $($($(x)))
3968 @end example
3970 @noindent
3971 Here the innermost @samp{$(x)} expands to @samp{y}, so @samp{$($(x))}
3972 expands to @samp{$(y)} which in turn expands to @samp{z}; now we have
3973 @samp{$(z)}, which becomes @samp{u}.
3975 References to recursively-expanded variables within a variable name are
3976 reexpanded in the usual fashion.  For example:
3978 @example
3979 x = $(y)
3980 y = z
3981 z = Hello
3982 a := $($(x))
3983 @end example
3985 @noindent
3986 defines @code{a} as @samp{Hello}: @samp{$($(x))} becomes @samp{$($(y))}
3987 which becomes @samp{$(z)} which becomes @samp{Hello}.
3989 Nested variable references can also contain modified references and
3990 function invocations (@pxref{Functions, ,Functions for Transforming Text}),
3991 just like any other reference.
3992 For example, using the @code{subst} function
3993 (@pxref{Text Functions, ,Functions for String Substitution and Analysis}):
3995 @example
3996 @group
3997 x = variable1
3998 variable2 := Hello
3999 y = $(subst 1,2,$(x))
4000 z = y
4001 a := $($($(z)))
4002 @end group
4003 @end example
4005 @noindent
4006 eventually defines @code{a} as @samp{Hello}.  It is doubtful that anyone
4007 would ever want to write a nested reference as convoluted as this one, but
4008 it works: @samp{$($($(z)))} expands to @samp{$($(y))} which becomes
4009 @samp{$($(subst 1,2,$(x)))}.  This gets the value @samp{variable1} from
4010 @code{x} and changes it by substitution to @samp{variable2}, so that the
4011 entire string becomes @samp{$(variable2)}, a simple variable reference
4012 whose value is @samp{Hello}.@refill
4014 A computed variable name need not consist entirely of a single variable
4015 reference.  It can contain several variable references, as well as some
4016 invariant text.  For example,
4018 @example
4019 @group
4020 a_dirs := dira dirb
4021 1_dirs := dir1 dir2
4022 @end group
4024 @group
4025 a_files := filea fileb
4026 1_files := file1 file2
4027 @end group
4029 @group
4030 ifeq "$(use_a)" "yes"
4031 a1 := a
4032 else
4033 a1 := 1
4034 endif
4035 @end group
4037 @group
4038 ifeq "$(use_dirs)" "yes"
4039 df := dirs
4040 else
4041 df := files
4042 endif
4044 dirs := $($(a1)_$(df))
4045 @end group
4046 @end example
4048 @noindent
4049 will give @code{dirs} the same value as @code{a_dirs}, @code{1_dirs},
4050 @code{a_files} or @code{1_files} depending on the settings of @code{use_a}
4051 and @code{use_dirs}.@refill
4053 Computed variable names can also be used in substitution references:
4055 @example
4056 @group
4057 a_objects := a.o b.o c.o
4058 1_objects := 1.o 2.o 3.o
4060 sources := $($(a1)_objects:.o=.c)
4061 @end group
4062 @end example
4064 @noindent
4065 defines @code{sources} as either @samp{a.c b.c c.c} or @samp{1.c 2.c 3.c},
4066 depending on the value of @code{a1}.
4068 The only restriction on this sort of use of nested variable references
4069 is that they cannot specify part of the name of a function to be called.
4070 This is because the test for a recognized function name is done before
4071 the expansion of nested references.  For example,
4073 @example
4074 @group
4075 ifdef do_sort
4076 func := sort
4077 else
4078 func := strip
4079 endif
4080 @end group
4082 @group
4083 bar := a d b g q c
4084 @end group
4086 @group
4087 foo := $($(func) $(bar))
4088 @end group
4089 @end example
4091 @noindent
4092 attempts to give @samp{foo} the value of the variable @samp{sort a d b g
4093 q c} or @samp{strip a d b g q c}, rather than giving @samp{a d b g q c}
4094 as the argument to either the @code{sort} or the @code{strip} function.
4095 This restriction could be removed in the future if that change is shown
4096 to be a good idea.
4098 You can also use computed variable names in the left-hand side of a
4099 variable assignment, or in a @code{define} directive, as in:
4101 @example
4102 dir = foo
4103 $(dir)_sources := $(wildcard $(dir)/*.c)
4104 define $(dir)_print
4105 lpr $($(dir)_sources)
4106 endef
4107 @end example
4109 @noindent
4110 This example defines the variables @samp{dir}, @samp{foo_sources}, and
4111 @samp{foo_print}.
4113 Note that @dfn{nested variable references} are quite different from
4114 @dfn{recursively expanded variables}
4115 (@pxref{Flavors, ,The Two Flavors of Variables}), though both are
4116 used together in complex ways when doing makefile programming.@refill
4118 @node Values, Setting, Advanced, Using Variables
4119 @section How Variables Get Their Values
4120 @cindex variables, how they get their values
4121 @cindex value, how a variable gets it
4123 Variables can get values in several different ways:
4125 @itemize @bullet
4126 @item
4127 You can specify an overriding value when you run @code{make}.
4128 @xref{Overriding, ,Overriding Variables}.
4130 @item
4131 You can specify a value in the makefile, either
4132 with an assignment (@pxref{Setting, ,Setting Variables}) or with a
4133 verbatim definition (@pxref{Defining, ,Defining Variables Verbatim}).@refill
4135 @item
4136 Variables in the environment become @code{make} variables.
4137 @xref{Environment, ,Variables from the Environment}.
4139 @item
4140 Several @dfn{automatic} variables are given new values for each rule.
4141 Each of these has a single conventional use.
4142 @xref{Automatic, ,Automatic Variables}.
4144 @item
4145 Several variables have constant initial values.
4146 @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
4147 @end itemize
4149 @node Setting, Appending, Values, Using Variables
4150 @section Setting Variables
4151 @cindex setting variables
4152 @cindex variables, setting
4153 @cindex =
4154 @cindex :=
4156 To set a variable from the makefile, write a line starting with the
4157 variable name followed by @samp{=} or @samp{:=}.  Whatever follows the
4158 @samp{=} or @samp{:=} on the line becomes the value.  For example,
4160 @example
4161 objects = main.o foo.o bar.o utils.o
4162 @end example
4164 @noindent
4165 defines a variable named @code{objects}.  Whitespace around the variable
4166 name and immediately after the @samp{=} is ignored.
4168 Variables defined with @samp{=} are @dfn{recursively expanded} variables.
4169 Variables defined with @samp{:=} are @dfn{simply expanded} variables; these
4170 definitions can contain variable references which will be expanded before
4171 the definition is made.  @xref{Flavors, ,The Two Flavors of Variables}.
4173 The variable name may contain function and variable references, which
4174 are expanded when the line is read to find the actual variable name to use.
4176 There is no limit on the length of the value of a variable except the
4177 amount of swapping space on the computer.  When a variable definition is
4178 long, it is a good idea to break it into several lines by inserting
4179 backslash-newline at convenient places in the definition.  This will not
4180 affect the functioning of @code{make}, but it will make the makefile easier
4181 to read.
4183 Most variable names are considered to have the empty string as a value if
4184 you have never set them.  Several variables have built-in initial values
4185 that are not empty, but you can set them in the usual ways
4186 (@pxref{Implicit Variables, ,Variables Used by Implicit Rules}).
4187 Several special variables are set
4188 automatically to a new value for each rule; these are called the
4189 @dfn{automatic} variables (@pxref{Automatic, ,Automatic Variables}).
4191 @node Appending, Override Directive, Setting, Using Variables
4192 @section Appending More Text to Variables
4193 @cindex +=
4194 @cindex appending to variables
4195 @cindex variables, appending to
4197 Often it is useful to add more text to the value of a variable already defined.
4198 You do this with a line containing @samp{+=}, like this:
4200 @example
4201 objects += another.o
4202 @end example
4204 @noindent
4205 This takes the value of the variable @code{objects}, and adds the text
4206 @samp{another.o} to it (preceded by a single space).  Thus:
4208 @example
4209 objects = main.o foo.o bar.o utils.o
4210 objects += another.o
4211 @end example
4213 @noindent
4214 sets @code{objects} to @samp{main.o foo.o bar.o utils.o another.o}.
4216 Using @samp{+=} is similar to:
4218 @example
4219 objects = main.o foo.o bar.o utils.o
4220 objects := $(objects) another.o
4221 @end example
4223 @noindent
4224 but differs in ways that become important when you use more complex values.
4226 When the variable in question has not been defined before, @samp{+=}
4227 acts just like normal @samp{=}: it defines a recursively-expanded
4228 variable.  However, when there @emph{is} a previous definition, exactly
4229 what @samp{+=} does depends on what flavor of variable you defined
4230 originally.  @xref{Flavors, ,The Two Flavors of Variables}, for an
4231 explanation of the two flavors of variables.
4233 When you add to a variable's value with @samp{+=}, @code{make} acts
4234 essentially as if you had included the extra text in the initial
4235 definition of the variable.  If you defined it first with @samp{:=},
4236 making it a simply-expanded variable, @samp{+=} adds to that
4237 simply-expanded definition, and expands the new text before appending it
4238 to the old value just as @samp{:=} does
4239 (@pxref{Setting, ,Setting Variables}, for a full explanation of @samp{:=}).
4240 In fact,
4242 @example
4243 variable := value
4244 variable += more
4245 @end example
4247 @noindent
4248 is exactly equivalent to:
4250 @noindent
4251 @example
4252 variable := value
4253 variable := $(variable) more
4254 @end example
4256 On the other hand, when you use @samp{+=} with a variable that you defined
4257 first to be recursively-expanded using plain @samp{=}, @code{make} does
4258 something a bit different.  Recall that when you define a
4259 recursively-expanded variable, @code{make} does not expand the value you set
4260 for variable and function references immediately.  Instead it stores the text
4261 verbatim, and saves these variable and function references to be expanded
4262 later, when you refer to the new variable (@pxref{Flavors, ,The Two Flavors
4263 of Variables}).  When you use @samp{+=} on a recursively-expanded variable,
4264 it is this unexpanded text to which @code{make} appends the new text you
4265 specify.
4267 @example
4268 @group
4269 variable = value
4270 variable += more
4271 @end group
4272 @end example
4274 @noindent
4275 is roughly equivalent to:
4277 @example
4278 @group
4279 temp = value
4280 variable = $(temp) more
4281 @end group
4282 @end example
4284 @noindent
4285 except that of course it never defines a variable called @code{temp}.
4286 The importance of this comes when the variable's old value contains
4287 variable references.  Take this common example:
4289 @example
4290 CFLAGS = $(includes) -O
4291 @dots{}
4292 CFLAGS += -pg # enable profiling
4293 @end example
4295 @noindent
4296 The first line defines the @code{CFLAGS} variable with a reference to another
4297 variable, @code{includes}.  (@code{CFLAGS} is used by the rules for C
4298 compilation; @pxref{Catalogue of Rules, ,Catalogue of Implicit Rules}.)
4299 Using @samp{=} for the definition makes @code{CFLAGS} a recursively-expanded
4300 variable, meaning @w{@samp{$(includes) -O}} is @emph{not} expanded when
4301 @code{make} processes the definition of @code{CFLAGS}.  Thus, @code{includes}
4302 need not be defined yet for its value to take effect.  It only has to be
4303 defined before any reference to @code{CFLAGS}.  If we tried to append to the
4304 value of @code{CFLAGS} without using @samp{+=}, we might do it like this:
4306 @example
4307 CFLAGS := $(CFLAGS) -pg # enable profiling
4308 @end example
4310 @noindent
4311 This is pretty close, but not quite what we want.  Using @samp{:=}
4312 redefines @code{CFLAGS} as a simply-expanded variable; this means
4313 @code{make} expands the text @w{@samp{$(CFLAGS) -pg}} before setting the
4314 variable.  If @code{includes} is not yet defined, we get @w{@samp{ -O
4315 -pg}}, and a later definition of @code{includes} will have no effect.
4316 Conversely, by using @samp{+=} we set @code{CFLAGS} to the
4317 @emph{unexpanded} value @w{@samp{$(includes) -O -pg}}.  Thus we preserve
4318 the reference to @code{includes}, so if that variable gets defined at
4319 any later point, a reference like @samp{$(CFLAGS)} still uses its
4320 value.
4322 @node Override Directive, Defining, Appending, Using Variables
4323 @section The @code{override} Directive
4324 @findex override
4325 @cindex overriding with @code{override}
4326 @cindex variables, overriding
4328 If a variable has been set with a command argument
4329 (@pxref{Overriding, ,Overriding Variables}),
4330 then ordinary assignments in the makefile are ignored.  If you want to set
4331 the variable in the makefile even though it was set with a command
4332 argument, you can use an @code{override} directive, which is a line that
4333 looks like this:@refill
4335 @example
4336 override @var{variable} = @var{value}
4337 @end example
4339 @noindent
4342 @example
4343 override @var{variable} := @var{value}
4344 @end example
4346 To append more text to a variable defined on the command line, use:
4348 @example
4349 override @var{variable} += @var{more text}
4350 @end example
4352 @noindent
4353 @xref{Appending, ,Appending More Text to Variables}.
4355 The @code{override} directive was not invented for escalation in the war
4356 between makefiles and command arguments.  It was invented so you can alter
4357 and add to values that the user specifies with command arguments.
4359 For example, suppose you always want the @samp{-g} switch when you run the
4360 C compiler, but you would like to allow the user to specify the other
4361 switches with a command argument just as usual.  You could use this
4362 @code{override} directive:
4364 @example
4365 override CFLAGS += -g
4366 @end example
4368 You can also use @code{override} directives with @code{define} directives.
4369 This is done as you might expect:
4371 @example
4372 override define foo
4374 endef
4375 @end example
4377 @noindent
4378 @iftex
4379 See the next section for information about @code{define}.
4380 @end iftex
4381 @ifinfo
4382 @xref{Defining, ,Defining Variables Verbatim}.
4383 @end ifinfo
4385 @node Defining, Environment, Override Directive, Using Variables
4386 @section Defining Variables Verbatim
4387 @findex define
4388 @findex endef
4389 @cindex verbatim variable definition
4390 @cindex defining variables verbatim
4391 @cindex variables, defining verbatim
4393 Another way to set the value of a variable is to use the @code{define}
4394 directive.  This directive has an unusual syntax which allows newline
4395 characters to be included in the value, which is convenient for defining
4396 canned sequences of commands
4397 (@pxref{Sequences, ,Defining Canned Command Sequences}).
4399 The @code{define} directive is followed on the same line by the name of the
4400 variable and nothing more.  The value to give the variable appears on the
4401 following lines.  The end of the value is marked by a line containing just
4402 the word @code{endef}.  Aside from this difference in syntax, @code{define}
4403 works just like @samp{=}: it creates a recursively-expanded variable
4404 (@pxref{Flavors, ,The Two Flavors of Variables}).
4405 The variable name may contain function and variable references, which
4406 are expanded when the directive is read to find the actual variable name
4407 to use.
4409 @example
4410 define two-lines
4411 echo foo
4412 echo $(bar)
4413 endef
4414 @end example
4416 The value in an ordinary assignment cannot contain a newline; but the
4417 newlines that separate the lines of the value in a @code{define} become
4418 part of the variable's value (except for the final newline which precedes
4419 the @code{endef} and is not considered part of the value).@refill
4421 @need 800
4422 The previous example is functionally equivalent to this:
4424 @example
4425 two-lines = echo foo; echo $(bar)
4426 @end example
4428 @noindent
4429 since two commands separated by semicolon behave much like two separate
4430 shell commands.  However, note that using two separate lines means
4431 @code{make} will invoke the shell twice, running an independent subshell
4432 for each line.  @xref{Execution, ,Command Execution}.
4434 If you want variable definitions made with @code{define} to take
4435 precedence over command-line variable definitions, you can use the
4436 @code{override} directive together with @code{define}:
4438 @example
4439 override define two-lines
4441 $(bar)
4442 endef
4443 @end example
4445 @noindent
4446 @xref{Override Directive, ,The @code{override} Directive}.
4448 @node Environment,  , Defining, Using Variables
4449 @section Variables from the Environment
4451 @cindex variables, environment
4452 @cindex environment
4453 Variables in @code{make} can come from the environment in which
4454 @code{make} is run.  Every environment variable that @code{make} sees when
4455 it starts up is transformed into a @code{make} variable with the same name
4456 and value.  But an explicit assignment in the makefile, or with a command
4457 argument, overrides the environment.  (If the @samp{-e} flag is specified,
4458 then values from the environment override assignments in the makefile.
4459 @xref{Options Summary, ,Summary of Options}.
4460 But this is not recommended practice.)
4462 Thus, by setting the variable @code{CFLAGS} in your environment, you can
4463 cause all C compilations in most makefiles to use the compiler switches you
4464 prefer.  This is safe for variables with standard or conventional meanings
4465 because you know that no makefile will use them for other things.  (But
4466 this is not totally reliable; some makefiles set @code{CFLAGS} explicitly
4467 and therefore are not affected by the value in the environment.)
4469 When @code{make} is invoked recursively, variables defined in the
4470 outer invocation can be passed to inner invocations through the
4471 environment (@pxref{Recursion, ,Recursive Use of @code{make}}).  By
4472 default, only variables that came from the environment or the command
4473 line are passed to recursive invocations.  You can use the
4474 @code{export} directive to pass other variables.
4475 @xref{Variables/Recursion, , Communicating Variables to a
4476 Sub-@code{make}}, for full details.
4478 Other use of variables from the environment is not recommended.  It is not
4479 wise for makefiles to depend for their functioning on environment variables
4480 set up outside their control, since this would cause different users to get
4481 different results from the same makefile.  This is against the whole
4482 purpose of most makefiles.
4484 Such problems would be especially likely with the variable @code{SHELL},
4485 which is normally present in the environment to specify the user's choice
4486 of interactive shell.  It would be very undesirable for this choice to
4487 affect @code{make}.  So @code{make} ignores the environment value of
4488 @code{SHELL}.@refill
4490 @node Conditionals, Functions, Using Variables, Top
4491 @chapter Conditional Parts of Makefiles
4493 @cindex conditionals
4494 A @dfn{conditional} causes part of a makefile to be obeyed or ignored
4495 depending on the values of variables.  Conditionals can compare the
4496 value of one variable to another, or the value of a variable to
4497 a constant string.  Conditionals control what @code{make} actually
4498 ``sees'' in the makefile, so they @emph{cannot} be used to control shell
4499 commands at the time of execution.@refill
4501 @menu
4502 * Conditional Example::         Example of a conditional
4503 * Conditional Syntax::          The syntax of conditionals.
4504 * Testing Flags::               Conditionals that test flags.
4505 @end menu
4507 @node Conditional Example, Conditional Syntax,  , Conditionals
4508 @section Example of a Conditional
4510 The following example of a conditional tells @code{make} to use one set
4511 of libraries if the @code{CC} variable is @samp{gcc}, and a different
4512 set of libraries otherwise.  It works by controlling which of two
4513 command lines will be used as the command for a rule.  The result is
4514 that @samp{CC=gcc} as an argument to @code{make} changes not only which
4515 compiler is used but also which libraries are linked.
4517 @example
4518 libs_for_gcc = -lgnu
4519 normal_libs =
4521 foo: $(objects)
4522 ifeq ($(CC),gcc)
4523         $(CC) -o foo $(objects) $(libs_for_gcc)
4524 else
4525         $(CC) -o foo $(objects) $(normal_libs)
4526 endif
4527 @end example
4529 This conditional uses three directives: one @code{ifeq}, one @code{else}
4530 and one @code{endif}.
4532 The @code{ifeq} directive begins the conditional, and specifies the
4533 condition.  It contains two arguments, separated by a comma and surrounded
4534 by parentheses.  Variable substitution is performed on both arguments and
4535 then they are compared.  The lines of the makefile following the
4536 @code{ifeq} are obeyed if the two arguments match; otherwise they are
4537 ignored.
4539 The @code{else} directive causes the following lines to be obeyed if the
4540 previous conditional failed.  In the example above, this means that the
4541 second alternative linking command is used whenever the first alternative
4542 is not used.  It is optional to have an @code{else} in a conditional.
4544 The @code{endif} directive ends the conditional.  Every conditional must
4545 end with an @code{endif}.  Unconditional makefile text follows.
4547 As this example illustrates, conditionals work at the textual level:
4548 the lines of the conditional are treated as part of the makefile, or
4549 ignored, according to the condition.  This is why the larger syntactic
4550 units of the makefile, such as rules, may cross the beginning or the
4551 end of the conditional.
4553 When the variable @code{CC} has the value @samp{gcc}, the above example has
4554 this effect:
4556 @example
4557 foo: $(objects)
4558         $(CC) -o foo $(objects) $(libs_for_gcc)
4559 @end example
4561 @noindent
4562 When the variable @code{CC} has any other value, the effect is this:
4564 @example
4565 foo: $(objects)
4566         $(CC) -o foo $(objects) $(normal_libs)
4567 @end example
4569 Equivalent results can be obtained in another way by conditionalizing a
4570 variable assignment and then using the variable unconditionally:
4572 @example
4573 libs_for_gcc = -lgnu
4574 normal_libs =
4576 ifeq ($(CC),gcc)
4577   libs=$(libs_for_gcc)
4578 else
4579   libs=$(normal_libs)
4580 endif
4582 foo: $(objects)
4583         $(CC) -o foo $(objects) $(libs)
4584 @end example
4586 @node Conditional Syntax, Testing Flags, Conditional Example, Conditionals
4587 @section Syntax of Conditionals
4588 @findex ifdef
4589 @findex ifeq
4590 @findex ifndef
4591 @findex ifneq
4592 @findex else
4593 @findex endif
4595 The syntax of a simple conditional with no @code{else} is as follows:
4597 @example
4598 @var{conditional-directive}
4599 @var{text-if-true}
4600 endif
4601 @end example
4603 @noindent
4604 The @var{text-if-true} may be any lines of text, to be considered as part
4605 of the makefile if the condition is true.  If the condition is false, no
4606 text is used instead.
4608 The syntax of a complex conditional is as follows:
4610 @example
4611 @var{conditional-directive}
4612 @var{text-if-true}
4613 else
4614 @var{text-if-false}
4615 endif
4616 @end example
4618 @noindent
4619 If the condition is true, @var{text-if-true} is used; otherwise,
4620 @var{text-if-false} is used instead.  The @var{text-if-false} can be any
4621 number of lines of text.
4623 The syntax of the @var{conditional-directive} is the same whether the
4624 conditional is simple or complex.  There are four different directives that
4625 test different conditions.  Here is a table of them:
4627 @table @code
4628 @item ifeq (@var{arg1}, @var{arg2})
4629 @itemx ifeq '@var{arg1}' '@var{arg2}'
4630 @itemx ifeq "@var{arg1}" "@var{arg2}"
4631 @itemx ifeq "@var{arg1}" '@var{arg2}'
4632 @itemx ifeq '@var{arg1}' "@var{arg2}"
4633 Expand all variable references in @var{arg1} and @var{arg2} and
4634 compare them.  If they are identical, the @var{text-if-true} is
4635 effective; otherwise, the @var{text-if-false}, if any, is effective.
4637 Often you want to test if a variable has a non-empty value.  When the
4638 value results from complex expansions of variables and functions,
4639 expansions you would consider empty may actually contain whitespace
4640 characters and thus are not seen as empty.  However, you can use the
4641 @code{strip} function (@pxref{Text Functions}) to avoid interpreting
4642 whitespace as a non-empty value.  For example:
4644 @example
4645 @group
4646 ifeq ($(strip $(foo)),)
4647 @var{text-if-empty}
4648 endif
4649 @end group
4650 @end example
4652 @noindent
4653 will evaluate @var{text-if-empty} even if the expansion of
4654 @code{$(foo)} contains whitespace characters.
4656 @item ifneq (@var{arg1}, @var{arg2})
4657 @itemx ifneq '@var{arg1}' '@var{arg2}'
4658 @itemx ifneq "@var{arg1}" "@var{arg2}"
4659 @itemx ifneq "@var{arg1}" '@var{arg2}'
4660 @itemx ifneq '@var{arg1}' "@var{arg2}"
4661 Expand all variable references in @var{arg1} and @var{arg2} and
4662 compare them.  If they are different, the @var{text-if-true} is
4663 effective; otherwise, the @var{text-if-false}, if any, is effective.
4665 @item ifdef @var{variable-name}
4666 If the variable @var{variable-name} has a non-empty value, the
4667 @var{text-if-true} is effective; otherwise, the @var{text-if-false},
4668 if any, is effective.  Variables that have never been defined have an
4669 empty value.
4671 Note that @code{ifdef} only tests whether a variable has a value.  It
4672 does not expand the variable to see if that value is nonempty.
4673 Consequently, tests using @code{ifdef} return true for all definitions
4674 except those like @code{foo =}.  To test for an empty value, use
4675 @w{@code{ifeq ($(foo),)}}.  For example,
4677 @example
4678 bar =
4679 foo = $(bar)
4680 ifdef foo
4681 frobozz = yes
4682 else
4683 frobozz = no
4684 endif
4685 @end example
4687 @noindent
4688 sets @samp{frobozz} to @samp{yes}, while:
4690 @example
4691 foo =
4692 ifdef foo
4693 frobozz = yes
4694 else
4695 frobozz = no
4696 endif
4697 @end example
4699 @noindent
4700 sets @samp{frobozz} to @samp{no}.
4702 @item ifndef @var{variable-name}
4703 If the variable @var{variable-name} has an empty value, the
4704 @var{text-if-true} is effective; otherwise, the @var{text-if-false},
4705 if any, is effective.
4706 @end table
4708 Extra spaces are allowed and ignored at the beginning of the conditional
4709 directive line, but a tab is not allowed.  (If the line begins with a tab,
4710 it will be considered a command for a rule.)  Aside from this, extra spaces
4711 or tabs may be inserted with no effect anywhere except within the directive
4712 name or within an argument.  A comment starting with @samp{#} may appear at
4713 the end of the line.
4715 The other two directives that play a part in a conditional are @code{else}
4716 and @code{endif}.  Each of these directives is written as one word, with no
4717 arguments.  Extra spaces are allowed and ignored at the beginning of the
4718 line, and spaces or tabs at the end.  A comment starting with @samp{#} may
4719 appear at the end of the line.
4721 Conditionals affect which lines of the makefile @code{make} uses.  If
4722 the condition is true, @code{make} reads the lines of the
4723 @var{text-if-true} as part of the makefile; if the condition is false,
4724 @code{make} ignores those lines completely.  It follows that syntactic
4725 units of the makefile, such as rules, may safely be split across the
4726 beginning or the end of the conditional.@refill
4728 @code{make} evaluates conditionals when it reads a makefile.
4729 Consequently, you cannot use automatic variables in the tests of
4730 conditionals because they are not defined until commands are run
4731 (@pxref{Automatic, , Automatic Variables}).
4733 To prevent intolerable confusion, it is not permitted to start a
4734 conditional in one makefile and end it in another.  However, you may
4735 write an @code{include} directive within a conditional, provided you do
4736 not attempt to terminate the conditional inside the included file.
4738 @node Testing Flags,  , Conditional Syntax, Conditionals
4739 @section Conditionals that Test Flags
4741 You can write a conditional that tests @code{make} command flags such as
4742 @samp{-t} by using the variable @code{MAKEFLAGS} together with the
4743 @code{findstring} function
4744 (@pxref{Text Functions, , Functions for String Substitution and Analysis}).
4745 This is useful when @code{touch} is not enough to make a file appear up
4746 to date.
4748 The @code{findstring} function determines whether one string appears as a
4749 substring of another.  If you want to test for the @samp{-t} flag,
4750 use @samp{t} as the first string and the value of @code{MAKEFLAGS} as
4751 the other.
4753 For example, here is how to arrange to use @samp{ranlib -t} to finish
4754 marking an archive file up to date:
4756 @example
4757 archive.a: @dots{}
4758 ifneq (,$(findstring t,$(MAKEFLAGS)))
4759         +touch archive.a
4760         +ranlib -t archive.a
4761 else
4762         ranlib archive.a
4763 endif
4764 @end example
4766 @noindent
4767 The @samp{+} prefix marks those command lines as ``recursive'' so
4768 that they will be executed despite use of the @samp{-t} flag.
4769 @xref{Recursion, ,Recursive Use of @code{make}}.
4771 @node Functions, Running, Conditionals, Top
4772 @chapter Functions for Transforming Text
4773 @cindex functions
4775 @dfn{Functions} allow you to do text processing in the makefile to compute
4776 the files to operate on or the commands to use.  You use a function in a
4777 @dfn{function call}, where you give the name of the function and some text
4778 (the @dfn{arguments}) for the function to operate on.  The result of the
4779 function's processing is substituted into the makefile at the point of the
4780 call, just as a variable might be substituted.
4782 @menu
4783 * Syntax of Functions::         How to write a function call.
4784 * Text Functions::              General-purpose text manipulation functions.
4785 * Filename Functions::          Functions for manipulating file names.
4786 * Foreach Function::            Repeat some text with controlled variation.
4787 * Origin Function::             Find where a variable got its value.
4788 * Shell Function::              Substitute the output of a shell command.
4789 @end menu
4791 @node Syntax of Functions, Text Functions,  , Functions
4792 @section Function Call Syntax
4793 @cindex @code{$}, in function call
4794 @cindex dollar sign (@code{$}), in function call
4795 @cindex arguments of functions
4796 @cindex functions, syntax of
4798 A function call resembles a variable reference.  It looks like this:
4800 @example
4801 $(@var{function} @var{arguments})
4802 @end example
4804 @noindent
4805 or like this:
4807 @example
4808 $@{@var{function} @var{arguments}@}
4809 @end example
4811 Here @var{function} is a function name; one of a short list of names that
4812 are part of @code{make}.  There is no provision for defining new functions.
4814 The @var{arguments} are the arguments of the function.  They are
4815 separated from the function name by one or more spaces or tabs, and if
4816 there is more than one argument, then they are separated by commas.
4817 Such whitespace and commas are not part of an argument's value.  The
4818 delimiters which you use to surround the function call, whether
4819 parentheses or braces, can appear in an argument only in matching pairs;
4820 the other kind of delimiters may appear singly.  If the arguments
4821 themselves contain other function calls or variable references, it is
4822 wisest to use the same kind of delimiters for all the references; write
4823 @w{@samp{$(subst a,b,$(x))}}, not @w{@samp{$(subst a,b,$@{x@})}}.  This
4824 is because it is clearer, and because only one type of delimiter is
4825 matched to find the end of the reference.
4827 The text written for each argument is processed by substitution of
4828 variables and function calls to produce the argument value, which
4829 is the text on which the function acts.  The substitution is done in the
4830 order in which the arguments appear.
4832 Commas and unmatched parentheses or braces cannot appear in the text of an
4833 argument as written; leading spaces cannot appear in the text of the first
4834 argument as written.  These characters can be put into the argument value
4835 by variable substitution.  First define variables @code{comma} and
4836 @code{space} whose values are isolated comma and space characters, then
4837 substitute these variables where such characters are wanted, like this:
4839 @example
4840 @group
4841 comma:= ,
4842 empty:=
4843 space:= $(empty) $(empty)
4844 foo:= a b c
4845 bar:= $(subst $(space),$(comma),$(foo))
4846 # @r{bar is now `a,b,c'.}
4847 @end group
4848 @end example
4850 @noindent
4851 Here the @code{subst} function replaces each space with a comma, through
4852 the value of @code{foo}, and substitutes the result.
4854 @node Text Functions, Filename Functions, Syntax of Functions, Functions
4855 @section Functions for String Substitution and Analysis
4856 @cindex functions, for text
4858 Here are some functions that operate on strings:
4860 @table @code
4861 @item $(subst @var{from},@var{to},@var{text})
4862 @findex subst
4863 Performs a textual replacement on the text @var{text}: each occurrence
4864 of @var{from} is replaced by @var{to}.  The result is substituted for
4865 the function call.  For example,
4867 @example
4868 $(subst ee,EE,feet on the street)
4869 @end example
4871 substitutes the string @samp{fEEt on the strEEt}.
4873 @item $(patsubst @var{pattern},@var{replacement},@var{text})
4874 @findex patsubst
4875 Finds whitespace-separated words in @var{text} that match
4876 @var{pattern} and replaces them with @var{replacement}.  Here
4877 @var{pattern} may contain a @samp{%} which acts as a wildcard,
4878 matching any number of any characters within a word.  If
4879 @var{replacement} also contains a @samp{%}, the @samp{%} is replaced
4880 by the text that matched the @samp{%} in @var{pattern}.@refill
4882 @cindex @code{%}, quoting in @code{patsubst}
4883 @cindex @code{%}, quoting with @code{\} (backslash)
4884 @cindex @code{\} (backslash), to quote @code{%}
4885 @cindex backslash (@code{\}), to quote @code{%}
4886 @cindex quoting @code{%}, in @code{patsubst}
4887 @samp{%} characters in @code{patsubst} function invocations can be
4888 quoted with preceding backslashes (@samp{\}).  Backslashes that would
4889 otherwise quote @samp{%} characters can be quoted with more backslashes.
4890 Backslashes that quote @samp{%} characters or other backslashes are
4891 removed from the pattern before it is compared file names or has a stem
4892 substituted into it.  Backslashes that are not in danger of quoting
4893 @samp{%} characters go unmolested.  For example, the pattern
4894 @file{the\%weird\\%pattern\\} has @samp{the%weird\} preceding the
4895 operative @samp{%} character, and @samp{pattern\\} following it.  The
4896 final two backslashes are left alone because they cannot affect any
4897 @samp{%} character.@refill
4899 Whitespace between words is folded into single space characters;
4900 leading and trailing whitespace is discarded.
4902 For example,
4904 @example
4905 $(patsubst %.c,%.o,x.c.c bar.c)
4906 @end example
4908 @noindent
4909 produces the value @samp{x.c.o bar.o}.
4911 Substitution references (@pxref{Substitution Refs, ,Substitution
4912 References}) are a simpler way to get the effect of the @code{patsubst}
4913 function:
4915 @example
4916 $(@var{var}:@var{pattern}=@var{replacement})
4917 @end example
4919 @noindent
4920 is equivalent to
4922 @example
4923 $(patsubst @var{pattern},@var{replacement},$(@var{var}))
4924 @end example
4926 The second shorthand simplifies one of the most common uses of
4927 @code{patsubst}: replacing the suffix at the end of file names.
4929 @example
4930 $(@var{var}:@var{suffix}=@var{replacement})
4931 @end example
4933 @noindent
4934 is equivalent to
4936 @example
4937 $(patsubst %@var{suffix},%@var{replacement},$(@var{var}))
4938 @end example
4940 @noindent
4941 For example, you might have a list of object files:
4943 @example
4944 objects = foo.o bar.o baz.o
4945 @end example
4947 @noindent
4948 To get the list of corresponding source files, you could simply write:
4950 @example
4951 $(objects:.o=.c)
4952 @end example
4954 @noindent
4955 instead of using the general form:
4957 @example
4958 $(patsubst %.o,%.c,$(objects))
4959 @end example
4961 @item $(strip @var{string})
4962 @cindex stripping whitespace
4963 @cindex whitespace, stripping
4964 @cindex spaces, stripping
4965 @findex strip
4966 Removes leading and trailing whitespace from @var{string} and replaces
4967 each internal sequence of one or more whitespace characters with a
4968 single space.  Thus, @samp{$(strip a b  c )} results in @w{@samp{a b c}}.
4970 The function @code{strip} can be very useful when used in conjunction
4971 with conditionals.  When comparing something with the empty string
4972 @samp{} using @code{ifeq} or @code{ifneq}, you usually want a string of
4973 just whitespace to match the empty string (@pxref{Conditionals}).
4975 Thus, the following may fail to have the desired results:
4977 @example
4978 .PHONY: all
4979 ifneq   "$(needs_made)" ""
4980 all: $(needs_made)
4981 else
4982 all:;@@echo 'Nothing to make!'
4983 endif
4984 @end example
4986 @noindent
4987 Replacing the variable reference @w{@samp{$(needs_made)}} with the
4988 function call @w{@samp{$(strip $(needs_made))}} in the @code{ifneq}
4989 directive would make it more robust.@refill
4991 @item $(findstring @var{find},@var{in})
4992 @findex findstring
4993 @cindex searching for strings
4994 @cindex finding strings
4995 @cindex strings, searching for
4996 Searches @var{in} for an occurrence of @var{find}.  If it occurs, the
4997 value is @var{find}; otherwise, the value is empty.  You can use this
4998 function in a conditional to test for the presence of a specific
4999 substring in a given string.  Thus, the two examples,
5001 @example
5002 $(findstring a,a b c)
5003 $(findstring a,b c)
5004 @end example
5006 @noindent
5007 produce the values @samp{a} and @samp{} (the empty string),
5008 respectively.  @xref{Testing Flags}, for a practical application of
5009 @code{findstring}.@refill
5011 @need 750
5012 @findex filter
5013 @cindex filtering words
5014 @cindex words, filtering
5015 @item $(filter @var{pattern}@dots{},@var{text})
5016 Removes all whitespace-separated words in @var{text} that do
5017 @emph{not} match any of the @var{pattern} words, returning only
5018 matching words.  The patterns are written using @samp{%}, just like
5019 the patterns used in the @code{patsubst} function above.@refill
5021 The @code{filter} function can be used to separate out different types
5022 of strings (such as file names) in a variable.  For example:
5024 @example
5025 sources := foo.c bar.c baz.s ugh.h
5026 foo: $(sources)
5027         cc $(filter %.c %.s,$(sources)) -o foo
5028 @end example
5030 @noindent
5031 says that @file{foo} depends of @file{foo.c}, @file{bar.c},
5032 @file{baz.s} and @file{ugh.h} but only @file{foo.c}, @file{bar.c} and
5033 @file{baz.s} should be specified in the command to the
5034 compiler.@refill
5036 @item $(filter-out @var{pattern}@dots{},@var{text})
5037 @findex filter-out
5038 @cindex filtering out words
5039 @cindex words, filtering out
5040 Removes all whitespace-separated words in @var{text} that @emph{do}
5041 match the @var{pattern} words, returning only the words that @emph{do
5042 not} match.  This is the exact opposite of the @code{filter}
5043 function.@refill
5045 For example, given:
5047 @example
5048 @group
5049 objects=main1.o foo.o main2.o bar.o
5050 mains=main1.o main2.o
5051 @end group
5052 @end example
5054 @noindent
5055 the following generates a list which contains all the object files not
5056 in @samp{mains}:
5058 @example
5059 $(filter-out $(mains),$(objects))
5060 @end example
5062 @need 1500
5063 @findex sort
5064 @cindex sorting words
5065 @item $(sort @var{list})
5066 Sorts the words of @var{list} in lexical order, removing duplicate
5067 words.  The output is a list of words separated by single spaces.
5068 Thus,
5070 @example
5071 $(sort foo bar lose)
5072 @end example
5074 @noindent
5075 returns the value @samp{bar foo lose}.
5077 @cindex removing duplicate words
5078 @cindex duplicate words, removing
5079 @cindex words, removing duplicates
5080 Incidentally, since @code{sort} removes duplicate words, you can use
5081 it for this purpose even if you don't care about the sort order.
5082 @end table
5084 Here is a realistic example of the use of @code{subst} and
5085 @code{patsubst}.  Suppose that a makefile uses the @code{VPATH} variable
5086 to specify a list of directories that @code{make} should search for
5087 dependency files
5088 (@pxref{General Search, , @code{VPATH} Search Path for All Dependencies}).
5089 This example shows how to
5090 tell the C compiler to search for header files in the same list of
5091 directories.@refill
5093 The value of @code{VPATH} is a list of directories separated by colons,
5094 such as @samp{src:../headers}.  First, the @code{subst} function is used to
5095 change the colons to spaces:
5097 @example
5098 $(subst :, ,$(VPATH))
5099 @end example
5101 @noindent
5102 This produces @samp{src ../headers}.  Then @code{patsubst} is used to turn
5103 each directory name into a @samp{-I} flag.  These can be added to the
5104 value of the variable @code{CFLAGS}, which is passed automatically to the C
5105 compiler, like this:
5107 @example
5108 override CFLAGS += $(patsubst %,-I%,$(subst :, ,$(VPATH)))
5109 @end example
5111 @noindent
5112 The effect is to append the text @samp{-Isrc -I../headers} to the
5113 previously given value of @code{CFLAGS}.  The @code{override} directive is
5114 used so that the new value is assigned even if the previous value of
5115 @code{CFLAGS} was specified with a command argument (@pxref{Override
5116 Directive, , The @code{override} Directive}).
5118 @node Filename Functions, Foreach Function, Text Functions, Functions
5119 @section Functions for File Names
5120 @cindex functions, for file names
5121 @cindex file name functions
5123 Several of the built-in expansion functions relate specifically to
5124 taking apart file names or lists of file names.
5126 Each of the following functions performs a specific transformation on a
5127 file name.  The argument of the function is regarded as a series of file
5128 names, separated by whitespace.  (Leading and trailing whitespace is
5129 ignored.)  Each file name in the series is transformed in the same way and
5130 the results are concatenated with single spaces between them.
5132 @table @code
5133 @item $(dir @var{names}@dots{})
5134 @findex dir
5135 @cindex directory part
5136 @cindex file name, directory part
5137 Extracts the directory-part of each file name in @var{names}.  The
5138 directory-part of the file name is everything up through (and
5139 including) the last slash in it.  If the file name contains no slash,
5140 the directory part is the string @samp{./}.  For example,
5142 @example
5143 $(dir src/foo.c hacks)
5144 @end example
5146 @noindent
5147 produces the result @samp{src/ ./}.
5149 @item $(notdir @var{names}@dots{})
5150 @findex notdir
5151 @cindex file name, nondirectory part
5152 @cindex nondirectory part
5153 Extracts all but the directory-part of each file name in @var{names}.
5154 If the file name contains no slash, it is left unchanged.  Otherwise,
5155 everything through the last slash is removed from it.
5157 A file name that ends with a slash becomes an empty string.  This is
5158 unfortunate, because it means that the result does not always have the
5159 same number of whitespace-separated file names as the argument had;
5160 but we do not see any other valid alternative.
5162 For example,
5164 @example
5165 $(notdir src/foo.c hacks)
5166 @end example
5168 @noindent
5169 produces the result @samp{foo.c hacks}.
5171 @item $(suffix @var{names}@dots{})
5172 @findex suffix
5173 @cindex suffix, function to find
5174 @cindex file name suffix
5175 Extracts the suffix of each file name in @var{names}.  If the file name
5176 contains a period, the suffix is everything starting with the last
5177 period.  Otherwise, the suffix is the empty string.  This frequently
5178 means that the result will be empty when @var{names} is not, and if
5179 @var{names} contains multiple file names, the result may contain fewer
5180 file names.
5182 For example,
5184 @example
5185 $(suffix src/foo.c hacks)
5186 @end example
5188 @noindent
5189 produces the result @samp{.c}.
5191 @item $(basename @var{names}@dots{})
5192 @findex basename
5193 @cindex basename
5194 @cindex file name, basename of
5195 Extracts all but the suffix of each file name in @var{names}.  If the
5196 file name contains a period, the basename is everything starting up to
5197 (and not including) the last period.  Otherwise, the basename is the
5198 entire file name.  For example,
5200 @example
5201 $(basename src/foo.c hacks)
5202 @end example
5204 @noindent
5205 produces the result @samp{src/foo hacks}.
5207 @c plural convention with dots (be consistent)
5208 @item $(addsuffix @var{suffix},@var{names}@dots{})
5209 @findex addsuffix
5210 @cindex suffix, adding
5211 @cindex file name suffix, adding
5212 The argument @var{names} is regarded as a series of names, separated
5213 by whitespace; @var{suffix} is used as a unit.  The value of
5214 @var{suffix} is appended to the end of each individual name and the
5215 resulting larger names are concatenated with single spaces between
5216 them.  For example,
5218 @example
5219 $(addsuffix .c,foo bar)
5220 @end example
5222 @noindent
5223 produces the result @samp{foo.c bar.c}.
5225 @item $(addprefix @var{prefix},@var{names}@dots{})
5226 @findex addprefix
5227 @cindex prefix, adding
5228 @cindex file name prefix, adding
5229 The argument @var{names} is regarded as a series of names, separated
5230 by whitespace; @var{prefix} is used as a unit.  The value of
5231 @var{prefix} is prepended to the front of each individual name and the
5232 resulting larger names are concatenated with single spaces between
5233 them.  For example,
5235 @example
5236 $(addprefix src/,foo bar)
5237 @end example
5239 @noindent
5240 produces the result @samp{src/foo src/bar}.
5242 @item $(join @var{list1},@var{list2})
5243 @findex join
5244 @cindex joining lists of words
5245 @cindex words, joining lists
5246 Concatenates the two arguments word by word: the two first words (one
5247 from each argument) concatenated form the first word of the result, the
5248 two second words form the second word of the result, and so on.  So the
5249 @var{n}th word of the result comes from the @var{n}th word of each
5250 argument.  If one argument has more words that the other, the extra
5251 words are copied unchanged into the result.
5253 For example, @samp{$(join a b,.c .o)} produces @samp{a.c b.o}.
5255 Whitespace between the words in the lists is not preserved; it is
5256 replaced with a single space.
5258 This function can merge the results of the @code{dir} and
5259 @code{notdir} functions, to produce the original list of files which
5260 was given to those two functions.@refill
5262 @item $(word @var{n},@var{text})
5263 @findex word
5264 @cindex words, selecting
5265 @cindex selecting words
5266 Returns the @var{n}th word of @var{text}.  The legitimate values of
5267 @var{n} start from 1.  If @var{n} is bigger than the number of words
5268 in @var{text}, the value is empty.  For example,
5270 @example
5271 $(word 2, foo bar baz)
5272 @end example
5274 @noindent
5275 returns @samp{bar}.
5277 @c Following item phrased to prevent overfull hbox.  --RJC 17 Jul 92
5278 @item $(words @var{text})
5279 @findex words
5280 @cindex words, finding number
5281 Returns the number of words in @var{text}.
5282 Thus, the last word of @var{text} is
5283 @w{@code{$(word $(words @var{text}),@var{text})}}.@refill
5285 @item $(firstword @var{names}@dots{})
5286 @findex firstword
5287 @cindex words, extracting first
5288 The argument @var{names} is regarded as a series of names, separated
5289 by whitespace.  The value is the first name in the series.  The rest
5290 of the names are ignored.
5292 For example,
5294 @example
5295 $(firstword foo bar)
5296 @end example
5298 @noindent
5299 produces the result @samp{foo}.  Although @code{$(firstword
5300 @var{text})} is the same as @code{$(word 1,@var{text})}, the
5301 @code{firstword} function is retained for its simplicity.@refill
5303 @item $(wildcard @var{pattern})
5304 @findex wildcard
5305 @cindex wildcard, function
5306 The argument @var{pattern} is a file name pattern, typically containing
5307 wildcard characters (as in shell file name patterns).  The result of
5308 @code{wildcard} is a space-separated list of the names of existing files
5309 that match the pattern.
5310 @xref{Wildcards, ,Using Wildcard Characters in File Names}.
5311 @end table
5313 @node Foreach Function, Origin Function, Filename Functions, Functions
5314 @section The @code{foreach} Function
5315 @findex foreach
5316 @cindex words, iterating over
5318 The @code{foreach} function is very different from other functions.  It
5319 causes one piece of text to be used repeatedly, each time with a different
5320 substitution performed on it.  It resembles the @code{for} command in the
5321 shell @code{sh} and the @code{foreach} command in the C-shell @code{csh}.
5323 The syntax of the @code{foreach} function is:
5325 @example
5326 $(foreach @var{var},@var{list},@var{text})
5327 @end example
5329 @noindent
5330 The first two arguments, @var{var} and @var{list}, are expanded before
5331 anything else is done; note that the last argument, @var{text}, is
5332 @strong{not} expanded at the same time.  Then for each word of the expanded
5333 value of @var{list}, the variable named by the expanded value of @var{var}
5334 is set to that word, and @var{text} is expanded.  Presumably @var{text}
5335 contains references to that variable, so its expansion will be different
5336 each time.
5338 The result is that @var{text} is expanded as many times as there are
5339 whitespace-separated words in @var{list}.  The multiple expansions of
5340 @var{text} are concatenated, with spaces between them, to make the result
5341 of @code{foreach}.
5343 This simple example sets the variable @samp{files} to the list of all files
5344 in the directories in the list @samp{dirs}:
5346 @example
5347 dirs := a b c d
5348 files := $(foreach dir,$(dirs),$(wildcard $(dir)/*))
5349 @end example
5351 Here @var{text} is @samp{$(wildcard $(dir)/*)}.  The first repetition
5352 finds the value @samp{a} for @code{dir}, so it produces the same result
5353 as @samp{$(wildcard a/*)}; the second repetition produces the result
5354 of @samp{$(wildcard b/*)}; and the third, that of @samp{$(wildcard c/*)}.
5356 This example has the same result (except for setting @samp{dirs}) as
5357 the following example:
5359 @example
5360 files := $(wildcard a/* b/* c/* d/*)
5361 @end example
5363 When @var{text} is complicated, you can improve readability by giving it
5364 a name, with an additional variable:
5366 @example
5367 find_files = $(wildcard $(dir)/*)
5368 dirs := a b c d
5369 files := $(foreach dir,$(dirs),$(find_files))
5370 @end example
5372 @noindent
5373 Here we use the variable @code{find_files} this way.  We use plain @samp{=}
5374 to define a recursively-expanding variable, so that its value contains an
5375 actual function call to be reexpanded under the control of @code{foreach};
5376 a simply-expanded variable would not do, since @code{wildcard} would be
5377 called only once at the time of defining @code{find_files}.
5379 The @code{foreach} function has no permanent effect on the variable
5380 @var{var}; its value and flavor after the @code{foreach} function call are
5381 the same as they were beforehand.  The other values which are taken from
5382 @var{list} are in effect only temporarily, during the execution of
5383 @code{foreach}.  The variable @var{var} is a simply-expanded variable
5384 during the execution of @code{foreach}.  If @var{var} was undefined
5385 before the @code{foreach} function call, it is undefined after the call.
5386 @xref{Flavors, ,The Two Flavors of Variables}.@refill
5388 You must take care when using complex variable expressions that result in
5389 variable names because many strange things are valid variable names, but
5390 are probably not what you intended.  For example,
5392 @smallexample
5393 files := $(foreach Esta escrito en espanol!,b c ch,$(find_files))
5394 @end smallexample
5396 @noindent
5397 might be useful if the value of @code{find_files} references the variable
5398 whose name is @samp{Esta escrito en espanol!} (es un nombre bastante largo,
5399 no?), but it is more likely to be a mistake.
5401 @node Origin Function, Shell Function, Foreach Function, Functions
5402 @section The @code{origin} Function
5403 @findex origin
5404 @cindex variables, origin of
5405 @cindex origin of variable
5407 The @code{origin} function is unlike most other functions in that it does
5408 not operate on the values of variables; it tells you something @emph{about}
5409 a variable.  Specifically, it tells you where it came from.
5411 The syntax of the @code{origin} function is:
5413 @example
5414 $(origin @var{variable})
5415 @end example
5417 Note that @var{variable} is the @emph{name} of a variable to inquire about;
5418 not a @emph{reference} to that variable.  Therefore you would not normally
5419 use a @samp{$} or parentheses when writing it.  (You can, however, use a
5420 variable reference in the name if you want the name not to be a constant.)
5422 The result of this function is a string telling you how the variable
5423 @var{variable} was defined:
5425 @table @samp
5426 @item undefined
5428 if @var{variable} was never defined.
5430 @item default
5432 if @var{variable} has a default definition, as is usual with @code{CC}
5433 and so on.  @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
5434 Note that if you have redefined a default variable, the @code{origin}
5435 function will return the origin of the later definition.
5437 @item environment
5439 if @var{variable} was defined as an environment variable and the
5440 @samp{-e} option is @emph{not} turned on (@pxref{Options Summary, ,Summary of Options}).
5442 @item environment override
5444 if @var{variable} was defined as an environment variable and the
5445 @w{@samp{-e}} option @emph{is} turned on (@pxref{Options Summary,
5446 ,Summary of Options}).@refill
5448 @item file
5450 if @var{variable} was defined in a makefile.
5452 @item command line
5454 if @var{variable} was defined on the command line.
5456 @item override
5458 if @var{variable} was defined with an @code{override} directive in a
5459 makefile (@pxref{Override Directive, ,The @code{override} Directive}).
5461 @item automatic
5463 if @var{variable} is an automatic variable defined for the
5464 execution of the commands for each rule
5465 (@pxref{Automatic, , Automatic Variables}).
5466 @end table
5468 This information is primarily useful (other than for your curiosity) to
5469 determine if you want to believe the value of a variable.  For example,
5470 suppose you have a makefile @file{foo} that includes another makefile
5471 @file{bar}.  You want a variable @code{bletch} to be defined in @file{bar}
5472 if you run the command @w{@samp{make -f bar}}, even if the environment contains
5473 a definition of @code{bletch}.  However, if @file{foo} defined
5474 @code{bletch} before including @file{bar}, you do not want to override that
5475 definition.  This could be done by using an @code{override} directive in
5476 @file{foo}, giving that definition precedence over the later definition in
5477 @file{bar}; unfortunately, the @code{override} directive would also
5478 override any command line definitions.  So, @file{bar} could
5479 include:@refill
5481 @example
5482 @group
5483 ifdef bletch
5484 ifeq "$(origin bletch)" "environment"
5485 bletch = barf, gag, etc.
5486 endif
5487 endif
5488 @end group
5489 @end example
5491 @noindent
5492 If @code{bletch} has been defined from the environment, this will redefine
5495 If you want to override a previous definition of @code{bletch} if it came
5496 from the environment, even under @samp{-e}, you could instead write:
5498 @example
5499 @group
5500 ifneq "$(findstring environment,$(origin bletch))" ""
5501 bletch = barf, gag, etc.
5502 endif
5503 @end group
5504 @end example
5506 Here the redefinition takes place if @samp{$(origin bletch)} returns either
5507 @samp{environment} or @samp{environment override}.
5508 @xref{Text Functions, , Functions for String Substitution and Analysis}.
5510 @node Shell Function,  , Origin Function, Functions
5511 @section The @code{shell} Function
5512 @findex shell
5513 @cindex commands, expansion
5514 @cindex backquotes
5515 @cindex shell command, function for
5517 The @code{shell} function is unlike any other function except the
5518 @code{wildcard} function
5519 (@pxref{Wildcard Function, ,The Function @code{wildcard}}) in that it
5520 communicates with the world outside of @code{make}.
5522 The @code{shell} function performs the same function that backquotes
5523 (@samp{`}) perform in most shells: it does @dfn{command expansion}.  This
5524 means that it takes an argument that is a shell command and returns the
5525 output of the command.  The only processing @code{make} does on the result,
5526 before substituting it into the surrounding text, is to convert newlines to
5527 spaces.@refill
5529 The commands run by calls to the @code{shell} function are run when the
5530 function calls are expanded.  In most cases, this is when the makefile is
5531 read in.  The exception is that function calls in the commands of the rules
5532 are expanded when the commands are run, and this applies to @code{shell}
5533 function calls like all others.
5535 Here are some examples of the use of the @code{shell} function:
5537 @example
5538 contents := $(shell cat foo)
5539 @end example
5541 @noindent
5542 sets @code{contents} to the contents of the file @file{foo}, with a space
5543 (rather than a newline) separating each line.
5545 @example
5546 files := $(shell echo *.c)
5547 @end example
5549 @noindent
5550 sets @code{files} to the expansion of @samp{*.c}.  Unless @code{make} is
5551 using a very strange shell, this has the same result as
5552 @w{@samp{$(wildcard *.c)}}.@refill
5554 @node Running, Implicit Rules, Functions, Top
5555 @chapter How to Run @code{make}
5557 A makefile that says how to recompile a program can be used in more
5558 than one way.  The simplest use is to recompile every file that is out
5559 of date.  Usually, makefiles are written so that if you run
5560 @code{make} with no arguments, it does just that.
5562 But you might want to update only some of the files; you might want to use
5563 a different compiler or different compiler options; you might want just to
5564 find out which files are out of date without changing them.
5566 By giving arguments when you run @code{make}, you can do any of these
5567 things and many others.
5569 The exit status of @code{make} is always one of three values:
5570 @table @code
5571 @item 0
5572 The exit status is zero if @code{make} is successful.
5573 @item 2
5574 The exit status is two if @code{make} encounters any errors.
5575 It will print messages describing the particular errors.
5576 @item 1
5577 The exit status is one if you use the @samp{-q} flag and @code{make}
5578 determines that some target is not already up to date.
5579 @xref{Instead of Execution, ,Instead of Executing the Commands}.
5580 @end table
5582 @menu
5583 * Makefile Arguments::          How to specify which makefile to use.
5584 * Goals::                       How to use goal arguments to specify which
5585                                   parts of the makefile to use.
5586 * Instead of Execution::        How to use mode flags to specify what
5587                                   kind of thing to do with the commands
5588                                   in the makefile other than simply
5589                                   execute them.
5590 * Avoiding Compilation::        How to avoid recompiling certain files.
5591 * Overriding::                  How to override a variable to specify
5592                                   an alternate compiler and other things.
5593 * Testing::                     How to proceed past some errors, to
5594                                   test compilation.
5595 * Options Summary::             Summary of Options
5596 @end menu
5598 @node Makefile Arguments, Goals,  , Running
5599 @section Arguments to Specify the Makefile
5600 @cindex @code{--file}
5601 @cindex @code{--makefile}
5602 @cindex @code{-f}
5604 The way to specify the name of the makefile is with the @samp{-f} or
5605 @samp{--file} option (@samp{--makefile} also works).  For example,
5606 @samp{-f altmake} says to use the file @file{altmake} as the makefile.
5608 If you use the @samp{-f} flag several times and follow each @samp{-f}
5609 with an argument, all the specified files are used jointly as
5610 makefiles.
5612 If you do not use the @samp{-f} or @samp{--file} flag, the default is
5613 to try @file{GNUmakefile}, @file{makefile}, and @file{Makefile}, in
5614 that order, and use the first of these three which exists or can be made
5615 (@pxref{Makefiles, ,Writing Makefiles}).@refill
5617 @node Goals, Instead of Execution, Makefile Arguments, Running
5618 @section Arguments to Specify the Goals
5619 @cindex goal, how to specify
5621 The @dfn{goals} are the targets that @code{make} should strive ultimately
5622 to update.  Other targets are updated as well if they appear as
5623 dependencies of goals, or dependencies of dependencies of goals, etc.
5625 By default, the goal is the first target in the makefile (not counting
5626 targets that start with a period).  Therefore, makefiles are usually
5627 written so that the first target is for compiling the entire program or
5628 programs they describe.  If the first rule in the makefile has several
5629 targets, only the first target in the rule becomes the default goal, not
5630 the whole list.
5632 You can specify a different goal or goals with arguments to @code{make}.
5633 Use the name of the goal as an argument.  If you specify several goals,
5634 @code{make} processes each of them in turn, in the order you name them.
5636 Any target in the makefile may be specified as a goal (unless it
5637 starts with @samp{-} or contains an @samp{=}, in which case it will be
5638 parsed as a switch or variable definition, respectively).  Even
5639 targets not in the makefile may be specified, if @code{make} can find
5640 implicit rules that say how to make them.
5642 One use of specifying a goal is if you want to compile only a part of
5643 the program, or only one of several programs.  Specify as a goal each
5644 file that you wish to remake.  For example, consider a directory containing
5645 several programs, with a makefile that starts like this:
5647 @example
5648 .PHONY: all
5649 all: size nm ld ar as
5650 @end example
5652 If you are working on the program @code{size}, you might want to say
5653 @w{@samp{make size}} so that only the files of that program are recompiled.
5655 Another use of specifying a goal is to make files that are not normally
5656 made.  For example, there may be a file of debugging output, or a
5657 version of the program that is compiled specially for testing, which has
5658 a rule in the makefile but is not a dependency of the default goal.
5660 Another use of specifying a goal is to run the commands associated with
5661 a phony target (@pxref{Phony Targets}) or empty target (@pxref{Empty
5662 Targets, ,Empty Target Files to Record Events}).  Many makefiles contain
5663 a phony target named @file{clean} which deletes everything except source
5664 files.  Naturally, this is done only if you request it explicitly with
5665 @w{@samp{make clean}}.  Following is a list of typical phony and empty
5666 target names.  @xref{Standard Targets}, for a detailed list of all the
5667 standard target names which GNU software packages use.
5669 @table @file
5670 @item all
5671 @cindex @code{all} @r{(standard target)}
5672 Make all the top-level targets the makefile knows about.
5674 @item clean
5675 @cindex @code{clean} @r{(standard target)}
5676 Delete all files that are normally created by running @code{make}.
5678 @item mostlyclean
5679 @cindex @code{mostlyclean} @r{(standard target)}
5680 Like @samp{clean}, but may refrain from deleting a few files that people
5681 normally don't want to recompile.  For example, the @samp{mostlyclean}
5682 target for GCC does not delete @file{libgcc.a}, because recompiling it
5683 is rarely necessary and takes a lot of time.
5685 @item distclean
5686 @cindex @code{distclean} @r{(standard target)}
5687 @itemx realclean
5688 @cindex @code{realclean} @r{(standard target)}
5689 @itemx clobber
5690 @cindex @code{clobber} @r{(standard target)}
5691 Any of these targets might be defined to delete @emph{more} files than
5692 @samp{clean} does.  For example, this would delete configuration files
5693 or links that you would normally create as preparation for compilation,
5694 even if the makefile itself cannot create these files.
5696 @item install
5697 @cindex @code{install} @r{(standard target)}
5698 Copy the executable file into a directory that users typically search
5699 for commands; copy any auxiliary files that the executable uses into
5700 the directories where it will look for them.
5702 @item print
5703 @cindex @code{print} @r{(standard target)}
5704 Print listings of the source files that have changed.
5706 @item tar
5707 @cindex @code{tar} @r{(standard target)}
5708 Create a tar file of the source files.
5710 @item shar
5711 @cindex @code{shar} @r{(standard target)}
5712 Create a shell archive (shar file) of the source files.
5714 @item dist
5715 @cindex @code{dist} @r{(standard target)}
5716 Create a distribution file of the source files.  This might
5717 be a tar file, or a shar file, or a compressed version of one of the
5718 above, or even more than one of the above.
5720 @item TAGS
5721 @cindex @code{TAGS} @r{(standard target)}
5722 Update a tags table for this program.
5724 @item check
5725 @cindex @code{check} @r{(standard target)}
5726 @itemx test
5727 @cindex @code{test} @r{(standard target)}
5728 Perform self tests on the program this makefile builds.
5729 @end table
5731 @node Instead of Execution, Avoiding Compilation, Goals, Running
5732 @section Instead of Executing the Commands
5733 @cindex execution, instead of
5734 @cindex commands, instead of executing
5736 The makefile tells @code{make} how to tell whether a target is up to date,
5737 and how to update each target.  But updating the targets is not always
5738 what you want.  Certain options specify other activities for @code{make}.
5740 @comment Extra blank lines make it print better.
5741 @table @samp
5742 @item -n
5743 @itemx --just-print
5744 @itemx --dry-run
5745 @itemx --recon
5746 @cindex @code{--just-print}
5747 @cindex @code{--dry-run}
5748 @cindex @code{--recon}
5749 @cindex @code{-n}
5751 ``No-op''.  The activity is to print what commands would be used to make
5752 the targets up to date, but not actually execute them.
5754 @item -t
5755 @itemx --touch
5756 @cindex @code{--touch}
5757 @cindex touching files
5758 @cindex target, touching
5759 @cindex @code{-t}
5761 ``Touch''.  The activity is to mark the targets as up to date without
5762 actually changing them.  In other words, @code{make} pretends to compile
5763 the targets but does not really change their contents.
5765 @item -q
5766 @itemx --question
5767 @cindex @code{--question}
5768 @cindex @code{-q}
5769 @cindex question mode
5771 ``Question''.  The activity is to find out silently whether the targets
5772 are up to date already; but execute no commands in either case.  In other
5773 words, neither compilation nor output will occur.
5775 @item -W @var{file}
5776 @itemx --what-if=@var{file}
5777 @itemx --assume-new=@var{file}
5778 @itemx --new-file=@var{file}
5779 @cindex @code{--what-if}
5780 @cindex @code{-W}
5781 @cindex @code{--assume-new}
5782 @cindex @code{--new-file}
5783 @cindex what if
5784 @cindex files, assuming new
5786 ``What if''.  Each @samp{-W} flag is followed by a file name.  The given
5787 files' modification times are recorded by @code{make} as being the present
5788 time, although the actual modification times remain the same.
5789 You can use the @samp{-W} flag in conjunction with the @samp{-n} flag
5790 to see what would happen if you were to modify specific files.@refill
5791 @end table
5793 With the @samp{-n} flag, @code{make} prints the commands that it would
5794 normally execute but does not execute them.
5796 With the @samp{-t} flag, @code{make} ignores the commands in the rules
5797 and uses (in effect) the command @code{touch} for each target that needs to
5798 be remade.  The @code{touch} command is also printed, unless @samp{-s} or
5799 @code{.SILENT} is used.  For speed, @code{make} does not actually invoke
5800 the program @code{touch}.  It does the work directly.
5802 With the @samp{-q} flag, @code{make} prints nothing and executes no
5803 commands, but the exit status code it returns is zero if and only if the
5804 targets to be considered are already up to date.  If the exit status is
5805 one, then some updating needs to be done.  If @code{make} encounters an
5806 error, the exit status is two, so you can distinguish an error from a
5807 target that is not up to date.
5809 It is an error to use more than one of these three flags in the same
5810 invocation of @code{make}.
5812 The @samp{-n}, @samp{-t}, and @samp{-q} options do not affect command
5813 lines that begin with @samp{+} characters or contain the strings
5814 @samp{$(MAKE)} or @samp{$@{MAKE@}}.  Note that only the line containing
5815 the @samp{+} character or the strings @samp{$(MAKE)} or @samp{$@{MAKE@}}
5816 is run regardless of these options.  Other lines in the same rule are
5817 not run unless they too begin with @samp{+} or contain @samp{$(MAKE)} or
5818 @samp{$@{MAKE@}} (@xref{MAKE Variable, ,How the @code{MAKE} Variable Works}.)
5820 The @samp{-W} flag provides two features:
5822 @itemize @bullet
5823 @item
5824 If you also use the @samp{-n} or @samp{-q} flag, you can see what
5825 @code{make} would do if you were to modify some files.
5827 @item
5828 Without the @samp{-n} or @samp{-q} flag, when @code{make} is actually
5829 executing commands, the @samp{-W} flag can direct @code{make} to act
5830 as if some files had been modified, without actually modifying the
5831 files.@refill
5832 @end itemize
5834 Note that the options @samp{-p} and @samp{-v} allow you to obtain other
5835 information about @code{make} or about the makefiles in use
5836 (@pxref{Options Summary, ,Summary of Options}).@refill
5838 @node Avoiding Compilation, Overriding, Instead of Execution, Running
5839 @section Avoiding Recompilation of Some Files
5840 @cindex @code{-o}
5841 @cindex @code{--old-file}
5842 @cindex @code{--assume-old}
5843 @cindex files, assuming old
5844 @cindex files, avoiding recompilation of
5845 @cindex recompilation, avoiding
5847 Sometimes you may have changed a source file but you do not want to
5848 recompile all the files that depend on it.  For example, suppose you add a
5849 macro or a declaration to a header file that many other files depend on.
5850 Being conservative, @code{make} assumes that any change in the header file
5851 requires recompilation of all dependent files, but you know that they do not
5852 need to be recompiled and you would rather not waste the time waiting for
5853 them to compile.
5855 If you anticipate the problem before changing the header file, you can
5856 use the @samp{-t} flag.  This flag tells @code{make} not to run the
5857 commands in the rules, but rather to mark the target up to date by
5858 changing its last-modification date.  You would follow this procedure:
5860 @enumerate
5861 @item
5862 Use the command @samp{make} to recompile the source files that really
5863 need recompilation.
5865 @item
5866 Make the changes in the header files.
5868 @item
5869 Use the command @samp{make -t} to mark all the object files as
5870 up to date.  The next time you run @code{make}, the changes in the
5871 header files will not cause any recompilation.
5872 @end enumerate
5874 If you have already changed the header file at a time when some files
5875 do need recompilation, it is too late to do this.  Instead, you can
5876 use the @w{@samp{-o @var{file}}} flag, which marks a specified file as
5877 ``old'' (@pxref{Options Summary, ,Summary of Options}).  This means
5878 that the file itself will not be remade, and nothing else will be
5879 remade on its account.  Follow this procedure:
5881 @enumerate
5882 @item
5883 Recompile the source files that need compilation for reasons independent
5884 of the particular header file, with @samp{make -o @var{headerfile}}.
5885 If several header files are involved, use a separate @samp{-o} option
5886 for each header file.
5888 @item
5889 Touch all the object files with @samp{make -t}.
5890 @end enumerate
5892 @node Overriding, Testing, Avoiding Compilation, Running
5893 @section Overriding Variables
5894 @cindex overriding variables with arguments
5895 @cindex variables, overriding with arguments
5896 @cindex command line variables
5897 @cindex variables, command line
5899 An argument that contains @samp{=} specifies the value of a variable:
5900 @samp{@var{v}=@var{x}} sets the value of the variable @var{v} to @var{x}.
5901 If you specify a value in this way, all ordinary assignments of the same
5902 variable in the makefile are ignored; we say they have been
5903 @dfn{overridden} by the command line argument.
5905 The most common way to use this facility is to pass extra flags to
5906 compilers.  For example, in a properly written makefile, the variable
5907 @code{CFLAGS} is included in each command that runs the C compiler, so a
5908 file @file{foo.c} would be compiled something like this:
5910 @example
5911 cc -c $(CFLAGS) foo.c
5912 @end example
5914 Thus, whatever value you set for @code{CFLAGS} affects each compilation
5915 that occurs.  The makefile probably specifies the usual value for
5916 @code{CFLAGS}, like this:
5918 @example
5919 CFLAGS=-g
5920 @end example
5922 Each time you run @code{make}, you can override this value if you
5923 wish.  For example, if you say @samp{make CFLAGS='-g -O'}, each C
5924 compilation will be done with @samp{cc -c -g -O}.  (This illustrates
5925 how you can use quoting in the shell to enclose spaces and other
5926 special characters in the value of a variable when you override it.)
5928 The variable @code{CFLAGS} is only one of many standard variables that
5929 exist just so that you can change them this way.  @xref{Implicit
5930 Variables, , Variables Used by Implicit Rules}, for a complete list.
5932 You can also program the makefile to look at additional variables of your
5933 own, giving the user the ability to control other aspects of how the
5934 makefile works by changing the variables.
5936 When you override a variable with a command argument, you can define either
5937 a recursively-expanded variable or a simply-expanded variable.  The
5938 examples shown above make a recursively-expanded variable; to make a
5939 simply-expanded variable, write @samp{:=} instead of @samp{=}.  But, unless
5940 you want to include a variable reference or function call in the
5941 @emph{value} that you specify, it makes no difference which kind of
5942 variable you create.
5944 There is one way that the makefile can change a variable that you have
5945 overridden.  This is to use the @code{override} directive, which is a line
5946 that looks like this: @samp{override @var{variable} = @var{value}}
5947 (@pxref{Override Directive, ,The @code{override} Directive}).
5949 @node Testing, Options Summary, Overriding, Running
5950 @section Testing the Compilation of a Program
5951 @cindex testing compilation
5952 @cindex compilation, testing
5954 Normally, when an error happens in executing a shell command, @code{make}
5955 gives up immediately, returning a nonzero status.  No further commands are
5956 executed for any target.  The error implies that the goal cannot be
5957 correctly remade, and @code{make} reports this as soon as it knows.
5959 When you are compiling a program that you have just changed, this is not
5960 what you want.  Instead, you would rather that @code{make} try compiling
5961 every file that can be tried, to show you as many compilation errors
5962 as possible.
5964 @cindex @code{-k}
5965 @cindex @code{--keep-going}
5966 On these occasions, you should use the @samp{-k} or
5967 @samp{--keep-going} flag.  This tells @code{make} to continue to
5968 consider the other dependencies of the pending targets, remaking them
5969 if necessary, before it gives up and returns nonzero status.  For
5970 example, after an error in compiling one object file, @samp{make -k}
5971 will continue compiling other object files even though it already
5972 knows that linking them will be impossible.  In addition to continuing
5973 after failed shell commands, @samp{make -k} will continue as much as
5974 possible after discovering that it does not know how to make a target
5975 or dependency file.  This will always cause an error message, but
5976 without @samp{-k}, it is a fatal error (@pxref{Options Summary,
5977 ,Summary of Options}).@refill
5979 The usual behavior of @code{make} assumes that your purpose is to get the
5980 goals up to date; once @code{make} learns that this is impossible, it might
5981 as well report the failure immediately.  The @samp{-k} flag says that the
5982 real purpose is to test as much as possible of the changes made in the
5983 program, perhaps to find several independent problems so that you can
5984 correct them all before the next attempt to compile.  This is why Emacs'
5985 @kbd{M-x compile} command passes the @samp{-k} flag by default.
5987 @node Options Summary,  , Testing, Running
5988 @section Summary of Options
5989 @cindex options
5990 @cindex flags
5991 @cindex switches
5993 Here is a table of all the options @code{make} understands:
5995 @table @samp
5996 @item -b
5997 @cindex @code{-b}
5998 @itemx -m
5999 @cindex @code{-m}
6000 These options are ignored for compatibility with other versions of @code{make}.
6002 @item -C @var{dir}
6003 @cindex @code{-C}
6004 @itemx --directory=@var{dir}
6005 @cindex @code{--directory}
6006 Change to directory @var{dir} before reading the makefiles.  If multiple
6007 @samp{-C} options are specified, each is interpreted relative to the
6008 previous one: @samp{-C / -C etc} is equivalent to @samp{-C /etc}.
6009 This is typically used with recursive invocations of @code{make}
6010 (@pxref{Recursion, ,Recursive Use of @code{make}}).
6012 @item -d
6013 @cindex @code{-d}
6014 @itemx --debug
6015 @cindex @code{--debug}
6016 @c Extra blank line here makes the table look better.
6018 Print debugging information in addition to normal processing.  The
6019 debugging information says which files are being considered for
6020 remaking, which file-times are being compared and with what results,
6021 which files actually need to be remade, which implicit rules are
6022 considered and which are applied---everything interesting about how
6023 @code{make} decides what to do.
6025 @item -e
6026 @cindex @code{-e}
6027 @itemx --environment-overrides
6028 @cindex @code{--environment-overrides}
6029 Give variables taken from the environment precedence
6030 over variables from makefiles.
6031 @xref{Environment, ,Variables from the Environment}.
6033 @item -f @var{file}
6034 @cindex @code{-f}
6035 @itemx --file=@var{file}
6036 @cindex @code{--file}
6037 @itemx --makefile=@var{file}
6038 @cindex @code{--makefile}
6039 Read the file named @var{file} as a makefile.
6040 @xref{Makefiles, ,Writing Makefiles}.
6042 @item -h
6043 @cindex @code{-h}
6044 @itemx --help
6045 @cindex @code{--help}
6046 @c Extra blank line here makes the table look better.
6048 Remind you of the options that @code{make} understands and then exit.
6050 @item -i
6051 @cindex @code{-i}
6052 @itemx --ignore-errors
6053 @cindex @code{--ignore-errors}
6054 Ignore all errors in commands executed to remake files.
6055 @xref{Errors, ,Errors in Commands}.
6057 @item -I @var{dir}
6058 @cindex @code{-I}
6059 @itemx --include-dir=@var{dir}
6060 @cindex @code{--include-dir}
6061 Specifies a directory @var{dir} to search for included makefiles.
6062 @xref{Include, ,Including Other Makefiles}.  If several @samp{-I}
6063 options are used to specify several directories, the directories are
6064 searched in the order specified.
6066 @item -j [@var{jobs}]
6067 @cindex @code{-j}
6068 @itemx --jobs=[@var{jobs}]
6069 @cindex @code{--jobs}
6070 Specifies the number of jobs (commands) to run simultaneously.  With no
6071 argument, @code{make} runs as many jobs simultaneously as possible.  If
6072 there is more than one @samp{-j} option, the last one is effective.
6073 @xref{Parallel, ,Parallel Execution},
6074 for more information on how commands are run.
6076 @item -k
6077 @cindex @code{-k}
6078 @itemx --keep-going
6079 @cindex @code{--keep-going}
6080 Continue as much as possible after an error.  While the target that
6081 failed, and those that depend on it, cannot be remade, the other
6082 dependencies of these targets can be processed all the same.
6083 @xref{Testing, ,Testing the Compilation of a Program}.
6085 @item -l [@var{load}]
6086 @cindex @code{-l}
6087 @itemx --load-average[=@var{load}]
6088 @cindex @code{--load-average}
6089 @itemx --max-load[=@var{load}]
6090 @cindex @code{--max-load}
6091 Specifies that no new jobs (commands) should be started if there are
6092 other jobs running and the load average is at least @var{load} (a
6093 floating-point number).  With no argument, removes a previous load
6094 limit.  @xref{Parallel, ,Parallel Execution}.
6096 @item -n
6097 @cindex @code{-n}
6098 @itemx --just-print
6099 @cindex @code{--just-print}
6100 @itemx --dry-run
6101 @cindex @code{--dry-run}
6102 @itemx --recon
6103 @cindex @code{--recon}
6104 @c Extra blank line here makes the table look better.
6106 Print the commands that would be executed, but do not execute them.
6107 @xref{Instead of Execution, ,Instead of Executing the Commands}.
6109 @item -o @var{file}
6110 @cindex @code{-o}
6111 @itemx --old-file=@var{file}
6112 @cindex @code{--old-file}
6113 @itemx --assume-old=@var{file}
6114 @cindex @code{--assume-old}
6115 Do not remake the file @var{file} even if it is older than its
6116 dependencies, and do not remake anything on account of changes in
6117 @var{file}.  Essentially the file is treated as very old and its rules
6118 are ignored.  @xref{Avoiding Compilation, ,Avoiding Recompilation of
6119 Some Files}.@refill
6121 @item -p
6122 @cindex @code{-p}
6123 @itemx --print-data-base
6124 @cindex @code{--print-data-base}
6125 Print the data base (rules and variable values) that results from
6126 reading the makefiles; then execute as usual or as otherwise
6127 specified.  This also prints the version information given by
6128 the @samp{-v} switch (see below).  To print the data base without
6129 trying to remake any files, use @w{@samp{make -p -f /dev/null}}.
6131 @item -q
6132 @cindex @code{-q}
6133 @itemx --question
6134 @cindex @code{--question}
6135 ``Question mode''.  Do not run any commands, or print anything; just
6136 return an exit status that is zero if the specified targets are already
6137 up to date, one if any remaking is required, or two if an error is
6138 encountered.  @xref{Instead of Execution, ,Instead of Executing the
6139 Commands}.@refill
6141 @item -r
6142 @cindex @code{-r}
6143 @itemx --no-builtin-rules
6144 @cindex @code{--no-builtin-rules}
6145 Eliminate use of the built-in implicit rules (@pxref{Implicit Rules,
6146 ,Using Implicit Rules}).  You can still define your own by writing
6147 pattern rules (@pxref{Pattern Rules, ,Defining and Redefining Pattern
6148 Rules}).  The @samp{-r} option also clears out the default list of
6149 suffixes for suffix rules (@pxref{Suffix Rules, ,Old-Fashioned Suffix
6150 Rules}).  But you can still define your own suffixes with a rule for
6151 @code{.SUFFIXES}, and then define your own suffix rules.
6153 @item -s
6154 @cindex @code{-s}
6155 @itemx --silent
6156 @cindex @code{--silent}
6157 @itemx --quiet
6158 @cindex @code{--quiet}
6159 @c Extra blank line here makes the table look better.
6161 Silent operation; do not print the commands as they are executed.
6162 @xref{Echoing, ,Command Echoing}.
6164 @item -S
6165 @cindex @code{-S}
6166 @itemx --no-keep-going
6167 @cindex @code{--no-keep-going}
6168 @itemx --stop
6169 @cindex @code{--stop}
6170 @c Extra blank line here makes the table look better.
6172 Cancel the effect of the @samp{-k} option.  This is never necessary
6173 except in a recursive @code{make} where @samp{-k} might be inherited
6174 from the top-level @code{make} via @code{MAKEFLAGS}
6175 (@pxref{Recursion, ,Recursive Use of @code{make}})
6176 or if you set @samp{-k} in @code{MAKEFLAGS} in your environment.@refill
6178 @item -t
6179 @cindex @code{-t}
6180 @itemx --touch
6181 @cindex @code{--touch}
6182 @c Extra blank line here makes the table look better.
6184 Touch files (mark them up to date without really changing them)
6185 instead of running their commands.  This is used to pretend that the
6186 commands were done, in order to fool future invocations of
6187 @code{make}.  @xref{Instead of Execution, ,Instead of Executing the Commands}.
6189 @item -v
6190 @cindex @code{-v}
6191 @itemx --version
6192 @cindex @code{--version}
6193 Print the version of the @code{make} program plus a copyright, a list
6194 of authors, and a notice that there is no warranty; then exit.
6196 @item -w
6197 @cindex @code{-w}
6198 @itemx --print-directory
6199 @cindex @code{--print-directory}
6200 Print a message containing the working directory both before and after
6201 executing the makefile.  This may be useful for tracking down errors
6202 from complicated nests of recursive @code{make} commands.
6203 @xref{Recursion, ,Recursive Use of @code{make}}.  (In practice, you
6204 rarely need to specify this option since @samp{make} does it for you;
6205 see @ref{-w Option, ,The @samp{--print-directory} Option}.)
6207 @itemx --no-print-directory
6208 @cindex @code{--no-print-directory}
6209 Disable printing of the working directory under @code{-w}.
6210 This option is useful when @code{-w} is turned on automatically,
6211 but you do not want to see the extra messages.
6212 @xref{-w Option, ,The @samp{--print-directory} Option}.
6214 @item -W @var{file}
6215 @cindex @code{-W}
6216 @itemx --what-if=@var{file}
6217 @cindex @code{--what-if}
6218 @itemx --new-file=@var{file}
6219 @cindex @code{--new-file}
6220 @itemx --assume-new=@var{file}
6221 @cindex @code{--assume-new}
6222 Pretend that the target @var{file} has just been modified.  When used
6223 with the @samp{-n} flag, this shows you what would happen if you were
6224 to modify that file.  Without @samp{-n}, it is almost the same as
6225 running a @code{touch} command on the given file before running
6226 @code{make}, except that the modification time is changed only in the
6227 imagination of @code{make}.
6228 @xref{Instead of Execution, ,Instead of Executing the Commands}.
6230 @item --warn-undefined-variables
6231 @cindex @code{--warn-undefined-variables}
6232 @cindex variables, warning for undefined
6233 @cindex undefined variables, warning message
6234 Issue a warning message whenever @code{make} sees a reference to an
6235 undefined variable.  This can be helpful when you are trying to debug
6236 makefiles which use variables in complex ways.
6237 @end table
6239 @node Implicit Rules, Archives, Running, Top
6240 @chapter Using Implicit Rules
6241 @cindex implicit rule
6242 @cindex rule, implicit
6244 Certain standard ways of remaking target files are used very often.  For
6245 example, one customary way to make an object file is from a C source file
6246 using the C compiler, @code{cc}.
6248 @dfn{Implicit rules} tell @code{make} how to use customary techniques so
6249 that you do not have to specify them in detail when you want to use
6250 them.  For example, there is an implicit rule for C compilation.  File
6251 names determine which implicit rules are run.  For example, C
6252 compilation typically takes a @file{.c} file and makes a @file{.o} file.
6253 So @code{make} applies the implicit rule for C compilation when it sees
6254 this combination of file name endings.@refill
6256 A chain of implicit rules can apply in sequence; for example, @code{make}
6257 will remake a @file{.o} file from a @file{.y} file by way of a @file{.c} file.
6258 @iftex
6259 @xref{Chained Rules, ,Chains of Implicit Rules}.
6260 @end iftex
6262 The built-in implicit rules use several variables in their commands so
6263 that, by changing the values of the variables, you can change the way the
6264 implicit rule works.  For example, the variable @code{CFLAGS} controls the
6265 flags given to the C compiler by the implicit rule for C compilation.
6266 @iftex
6267 @xref{Implicit Variables, ,Variables Used by Implicit Rules}.
6268 @end iftex
6270 You can define your own implicit rules by writing @dfn{pattern rules}.
6271 @iftex
6272 @xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.
6273 @end iftex
6275 @dfn{Suffix rules} are a more limited way to define implicit rules.
6276 Pattern rules are more general and clearer, but suffix rules are
6277 retained for compatibility.
6278 @iftex
6279 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
6280 @end iftex
6282 @menu
6283 * Using Implicit::              How to use an existing implicit rule
6284                                   to get the commands for updating a file.
6285 * Catalogue of Rules::          A list of built-in implicit rules.
6286 * Implicit Variables::          How to change what predefined rules do.
6287 * Chained Rules::               How to use a chain of implicit rules.
6288 * Pattern Rules::               How to define new implicit rules.
6289 * Last Resort::                 How to defining commands for rules
6290                                   which cannot find any.
6291 * Suffix Rules::                The old-fashioned style of implicit rule.
6292 * Search Algorithm::            The precise algorithm for applying
6293                                   implicit rules.
6294 @end menu
6296 @node Using Implicit, Catalogue of Rules,  , Implicit Rules
6297 @section Using Implicit Rules
6298 @cindex implicit rule, how to use
6299 @cindex rule, implicit, how to use
6301 To allow @code{make} to find a customary method for updating a target file,
6302 all you have to do is refrain from specifying commands yourself.  Either
6303 write a rule with no command lines, or don't write a rule at all.  Then
6304 @code{make} will figure out which implicit rule to use based on which
6305 kind of source file exists or can be made.
6307 For example, suppose the makefile looks like this:
6309 @example
6310 foo : foo.o bar.o
6311         cc -o foo foo.o bar.o $(CFLAGS) $(LDFLAGS)
6312 @end example
6314 @noindent
6315 Because you mention @file{foo.o} but do not give a rule for it, @code{make}
6316 will automatically look for an implicit rule that tells how to update it.
6317 This happens whether or not the file @file{foo.o} currently exists.
6319 If an implicit rule is found, it can supply both commands and one or
6320 more dependencies (the source files).  You would want to write a rule
6321 for @file{foo.o} with no command lines if you need to specify additional
6322 dependencies, such as header files, that the implicit rule cannot
6323 supply.
6325 Each implicit rule has a target pattern and dependency patterns.  There may
6326 be many implicit rules with the same target pattern.  For example, numerous
6327 rules make @samp{.o} files: one, from a @samp{.c} file with the C compiler;
6328 another, from a @samp{.p} file with the Pascal compiler; and so on.  The rule
6329 that actually applies is the one whose dependencies exist or can be made.
6330 So, if you have a file @file{foo.c}, @code{make} will run the C compiler;
6331 otherwise, if you have a file @file{foo.p}, @code{make} will run the Pascal
6332 compiler; and so on.
6334 Of course, when you write the makefile, you know which implicit rule you
6335 want @code{make} to use, and you know it will choose that one because you
6336 know which possible dependency files are supposed to exist.
6337 @xref{Catalogue of Rules, ,Catalogue of Implicit Rules},
6338 for a catalogue of all the predefined implicit rules.
6340 Above, we said an implicit rule applies if the required dependencies ``exist
6341 or can be made''.  A file ``can be made'' if it is mentioned explicitly in
6342 the makefile as a target or a dependency, or if an implicit rule can be
6343 recursively found for how to make it.  When an implicit dependency is the
6344 result of another implicit rule, we say that @dfn{chaining} is occurring.
6345 @xref{Chained Rules, ,Chains of Implicit Rules}.
6347 In general, @code{make} searches for an implicit rule for each target, and
6348 for each double-colon rule, that has no commands.  A file that is mentioned
6349 only as a dependency is considered a target whose rule specifies nothing,
6350 so implicit rule search happens for it.  @xref{Search Algorithm, ,Implicit Rule Search Algorithm}, for the
6351 details of how the search is done.
6353 Note that explicit dependencies do not influence implicit rule search.
6354 For example, consider this explicit rule:
6356 @example
6357 foo.o: foo.p
6358 @end example
6360 @noindent
6361 The dependency on @file{foo.p} does not necessarily mean that
6362 @code{make} will remake @file{foo.o} according to the implicit rule to
6363 make an object file, a @file{.o} file, from a Pascal source file, a
6364 @file{.p} file.  For example, if @file{foo.c} also exists, the implicit
6365 rule to make an object file from a C source file is used instead,
6366 because it appears before the Pascal rule in the list of predefined
6367 implicit rules (@pxref{Catalogue of Rules, , Catalogue of Implicit
6368 Rules}).
6370 If you do not want an implicit rule to be used for a target that has no
6371 commands, you can give that target empty commands by writing a semicolon
6372 (@pxref{Empty Commands, ,Defining Empty Commands}).
6374 @node Catalogue of Rules, Implicit Variables, Using Implicit, Implicit Rules
6375 @section Catalogue of Implicit Rules
6376 @cindex implicit rule, predefined
6377 @cindex rule, implicit, predefined
6379 Here is a catalogue of predefined implicit rules which are always
6380 available unless the makefile explicitly overrides or cancels them.
6381 @xref{Canceling Rules, ,Canceling Implicit Rules}, for information on
6382 canceling or overriding an implicit rule.  The @samp{-r} or
6383 @samp{--no-builtin-rules} option cancels all predefined rules.
6385 Not all of these rules will always be defined, even when the @samp{-r}
6386 option is not given.  Many of the predefined implicit rules are
6387 implemented in @code{make} as suffix rules, so which ones will be
6388 defined depends on the @dfn{suffix list} (the list of dependencies of
6389 the special target @code{.SUFFIXES}).  The default suffix list is:
6390 @code{.out}, @code{.a}, @code{.ln}, @code{.o}, @code{.c}, @code{.cc},
6391 @code{.C}, @code{.p}, @code{.f}, @code{.F}, @code{.r}, @code{.y},
6392 @code{.l}, @code{.s}, @code{.S}, @code{.mod}, @code{.sym}, @code{.def},
6393 @code{.h}, @code{.info}, @code{.dvi}, @code{.tex}, @code{.texinfo},
6394 @code{.texi}, @code{.txinfo}, @code{.w}, @code{.ch} @code{.web},
6395 @code{.sh}, @code{.elc}, @code{.el}.  All of the implicit rules
6396 described below whose dependencies have one of these suffixes are
6397 actually suffix rules.  If you modify the suffix list, the only
6398 predefined suffix rules in effect will be those named by one or two of
6399 the suffixes that are on the list you specify; rules whose suffixes fail
6400 to be on the list are disabled.  @xref{Suffix Rules, ,Old-Fashioned
6401 Suffix Rules}, for full details on suffix rules.
6403 @table @asis
6404 @item Compiling C programs
6405 @cindex C, rule to compile
6406 @pindex cc
6407 @pindex gcc
6408 @pindex .o
6409 @pindex .c
6410 @file{@var{n}.o} is made automatically from @file{@var{n}.c} with
6411 a command of the form @samp{$(CC) -c $(CPPFLAGS) $(CFLAGS)}.@refill
6413 @item Compiling C++ programs
6414 @cindex C++, rule to compile
6415 @pindex g++
6416 @pindex .C
6417 @pindex .cc
6418 @file{@var{n}.o} is made automatically from @file{@var{n}.cc} or
6419 @file{@var{n}.C} with a command of the form @samp{$(CXX) -c $(CPPFLAGS)
6420 $(CXXFLAGS)}.  We encourage you to use the suffix @samp{.cc} for C++
6421 source files instead of @samp{.C}.@refill
6423 @item Compiling Pascal programs
6424 @cindex Pascal, rule to compile
6425 @pindex pc
6426 @pindex .p
6427 @file{@var{n}.o} is made automatically from @file{@var{n}.p}
6428 with the command @samp{$(PC) -c $(PFLAGS)}.@refill
6430 @item Compiling Fortran and Ratfor programs
6431 @cindex Fortran, rule to compile
6432 @cindex Ratfor, rule to compile
6433 @pindex f77
6434 @pindex .f
6435 @pindex .r
6436 @pindex .F
6437 @file{@var{n}.o} is made automatically from @file{@var{n}.r},
6438 @file{@var{n}.F} or @file{@var{n}.f} by running the
6439 Fortran compiler.  The precise command used is as follows:@refill
6441 @table @samp
6442 @item .f
6443 @samp{$(FC) -c $(FFLAGS)}.
6444 @item .F
6445 @samp{$(FC) -c $(FFLAGS) $(CPPFLAGS)}.
6446 @item .r
6447 @samp{$(FC) -c $(FFLAGS) $(RFLAGS)}.
6448 @end table
6450 @item Preprocessing Fortran and Ratfor programs
6451 @file{@var{n}.f} is made automatically from @file{@var{n}.r} or
6452 @file{@var{n}.F}.  This rule runs just the preprocessor to convert a
6453 Ratfor or preprocessable Fortran program into a strict Fortran
6454 program.  The precise command used is as follows:@refill
6456 @table @samp
6457 @item .F
6458 @samp{$(FC) -F $(CPPFLAGS) $(FFLAGS)}.
6459 @item .r
6460 @samp{$(FC) -F $(FFLAGS) $(RFLAGS)}.
6461 @end table
6463 @item Compiling Modula-2 programs
6464 @cindex Modula-2, rule to compile
6465 @pindex m2c
6466 @pindex .sym
6467 @pindex .def
6468 @pindex .mod
6469 @file{@var{n}.sym} is made from @file{@var{n}.def} with a command
6470 of the form @samp{$(M2C) $(M2FLAGS) $(DEFFLAGS)}.  @file{@var{n}.o}
6471 is made from @file{@var{n}.mod}; the form is:
6472 @w{@samp{$(M2C) $(M2FLAGS) $(MODFLAGS)}}.@refill
6474 @need 1200
6475 @item Assembling and preprocessing assembler programs
6476 @cindex assembly, rule to compile
6477 @pindex as
6478 @pindex .s
6479 @file{@var{n}.o} is made automatically from @file{@var{n}.s} by
6480 running the assembler, @code{as}.  The precise command is
6481 @samp{$(AS) $(ASFLAGS)}.@refill
6483 @pindex .S
6484 @file{@var{n}.s} is made automatically from @file{@var{n}.S} by
6485 running the C preprocessor, @code{cpp}.  The precise command is
6486 @w{@samp{$(CPP) $(CPPFLAGS)}}.
6488 @item Linking a single object file
6489 @cindex linking, predefined rule for
6490 @pindex ld
6491 @pindex .o
6492 @file{@var{n}} is made automatically from @file{@var{n}.o} by running
6493 the linker (usually called @code{ld}) via the C compiler.  The precise
6494 command used is @w{@samp{$(CC) $(LDFLAGS) @var{n}.o $(LOADLIBES)}}.
6496 This rule does the right thing for a simple program with only one
6497 source file.  It will also do the right thing if there are multiple
6498 object files (presumably coming from various other source files), one
6499 of which has a name matching that of the executable file.  Thus,
6501 @example
6502 x: y.o z.o
6503 @end example
6505 @noindent
6506 when @file{x.c}, @file{y.c} and @file{z.c} all exist will execute:
6508 @example
6509 @group
6510 cc -c x.c -o x.o
6511 cc -c y.c -o y.o
6512 cc -c z.c -o z.o
6513 cc x.o y.o z.o -o x
6514 rm -f x.o
6515 rm -f y.o
6516 rm -f z.o
6517 @end group
6518 @end example
6520 @noindent
6521 In more complicated cases, such as when there is no object file whose
6522 name derives from the executable file name, you must write an explicit
6523 command for linking.
6525 Each kind of file automatically made into @samp{.o} object files will
6526 be automatically linked by using the compiler (@samp{$(CC)},
6527 @samp{$(FC)} or @samp{$(PC)}; the C compiler @samp{$(CC)} is used to
6528 assemble @samp{.s} files) without the @samp{-c} option.  This could be
6529 done by using the @samp{.o} object files as intermediates, but it is
6530 faster to do the compiling and linking in one step, so that's how it's
6531 done.@refill
6533 @item Yacc for C programs
6534 @pindex yacc
6535 @cindex Yacc, rule to run
6536 @pindex .y
6537 @file{@var{n}.c} is made automatically from @file{@var{n}.y} by
6538 running Yacc with the command @samp{$(YACC) $(YFLAGS)}.
6540 @item Lex for C programs
6541 @pindex lex
6542 @cindex Lex, rule to run
6543 @pindex .l
6544 @file{@var{n}.c} is made automatically from @file{@var{n}.l} by
6545 by running Lex.  The actual command is @samp{$(LEX) $(LFLAGS)}.
6547 @item Lex for Ratfor programs
6548 @file{@var{n}.r} is made automatically from @file{@var{n}.l} by
6549 by running Lex.  The actual command is @samp{$(LEX) $(LFLAGS)}.
6551 The convention of using the same suffix @samp{.l} for all Lex files
6552 regardless of whether they produce C code or Ratfor code makes it
6553 impossible for @code{make} to determine automatically which of the two
6554 languages you are using in any particular case.  If @code{make} is
6555 called upon to remake an object file from a @samp{.l} file, it must
6556 guess which compiler to use.  It will guess the C compiler, because
6557 that is more common.  If you are using Ratfor, make sure @code{make}
6558 knows this by mentioning @file{@var{n}.r} in the makefile.  Or, if you
6559 are using Ratfor exclusively, with no C files, remove @samp{.c} from
6560 the list of implicit rule suffixes with:@refill
6562 @example
6563 @group
6564 .SUFFIXES:
6565 .SUFFIXES: .o .r .f .l @dots{}
6566 @end group
6567 @end example
6569 @item Making Lint Libraries from C, Yacc, or Lex programs
6570 @pindex lint
6571 @cindex @code{lint}, rule to run
6572 @pindex .ln
6573 @file{@var{n}.ln} is made from @file{@var{n}.c} by running @code{lint}.
6574 The precise command is @w{@samp{$(LINT) $(LINTFLAGS) $(CPPFLAGS) -i}}.
6575 The same command is used on the C code produced from
6576 @file{@var{n}.y} or @file{@var{n}.l}.@refill
6578 @item @TeX{} and Web
6579 @cindex @TeX{}, rule to run
6580 @cindex Web, rule to run
6581 @pindex tex
6582 @pindex cweave
6583 @pindex weave
6584 @pindex tangle
6585 @pindex ctangle
6586 @pindex .dvi
6587 @pindex .tex
6588 @pindex .web
6589 @pindex .w
6590 @pindex .ch
6591 @file{@var{n}.dvi} is made from @file{@var{n}.tex} with the command
6592 @samp{$(TEX)}.  @file{@var{n}.tex} is made from @file{@var{n}.web} with
6593 @samp{$(WEAVE)}, or from @file{@var{n}.w} (and from @file{@var{n}.ch} if
6594 it exists or can be made) with @samp{$(CWEAVE)}.  @file{@var{n}.p} is
6595 made from @file{@var{n}.web} with @samp{$(TANGLE)} and @file{@var{n}.c}
6596 is made from @file{@var{n}.w} (and from @file{@var{n}.ch} if it exists
6597 or can be made) with @samp{$(CTANGLE)}.@refill
6599 @item Texinfo and Info
6600 @cindex Texinfo, rule to format
6601 @cindex Info, rule to format
6602 @pindex texi2dvi
6603 @pindex makeinfo
6604 @pindex .texinfo
6605 @pindex .info
6606 @pindex .texi
6607 @pindex .txinfo
6608 @file{@var{n}.dvi} is made from @file{@var{n}.texinfo},
6609 @file{@var{n}.texi}, or @file{@var{n}.txinfo}, with the command
6610 @w{@samp{$(TEXI2DVI) $(TEXI2DVI_FLAGS)}}.  @file{@var{n}.info} is made from
6611 @file{@var{n}.texinfo}, @file{@var{n}.texi}, or @file{@var{n}.txinfo}, with
6612 the command @w{@samp{$(MAKEINFO) $(MAKEINFO_FLAGS)}}.
6614 @item RCS
6615 @cindex RCS, rule to extract from
6616 @pindex co
6617 @pindex ,v @r{(RCS file extension)}
6618 Any file @file{@var{n}} is extracted if necessary from an RCS file
6619 named either @file{@var{n},v} or @file{RCS/@var{n},v}.  The precise
6620 command used is @w{@samp{$(CO) $(COFLAGS)}}.  @file{@var{n}} will not be
6621 extracted from RCS if it already exists, even if the RCS file is
6622 newer.  The rules for RCS are terminal
6623 (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}),
6624 so RCS files cannot be generated from another source; they must
6625 actually exist.@refill
6627 @item SCCS
6628 @cindex SCCS, rule to extract from
6629 @pindex get
6630 @pindex s. @r{(SCCS file prefix)}
6631 Any file @file{@var{n}} is extracted if necessary from an SCCS file
6632 named either @file{s.@var{n}} or @file{SCCS/s.@var{n}}.  The precise
6633 command used is @w{@samp{$(GET) $(GFLAGS)}}.  The rules for SCCS are
6634 terminal (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}),
6635 so SCCS files cannot be generated from another source; they must
6636 actually exist.@refill
6638 @pindex .sh
6639 For the benefit of SCCS, a file @file{@var{n}} is copied from
6640 @file{@var{n}.sh} and made executable (by everyone).  This is for
6641 shell scripts that are checked into SCCS.  Since RCS preserves the
6642 execution permission of a file, you do not need to use this feature
6643 with RCS.@refill
6645 We recommend that you avoid using of SCCS.  RCS is widely held to be
6646 superior, and is also free.  By choosing free software in place of
6647 comparable (or inferior) proprietary software, you support the free
6648 software movement.
6649 @end table
6651 Usually, you want to change only the variables listed in the table
6652 above, which are documented in the following section.
6654 However, the commands in built-in implicit rules actually use
6655 variables such as @code{COMPILE.c}, @code{LINK.p}, and
6656 @code{PREPROCESS.S}, whose values contain the commands listed above.
6658 @code{make} follows the convention that the rule to compile a
6659 @file{.@var{x}} source file uses the variable @code{COMPILE.@var{x}}.
6660 Similarly, the rule to produce an executable from a @file{.@var{x}}
6661 file uses @code{LINK.@var{x}}; and the rule to preprocess a
6662 @file{.@var{x}} file uses @code{PREPROCESS.@var{x}}.
6664 @vindex OUTPUT_OPTION
6665 Every rule that produces an object file uses the variable
6666 @code{OUTPUT_OPTION}.  @code{make} defines this variable either to
6667 contain @samp{-o $@@}, or to be empty, depending on a compile-time
6668 option.  You need the @samp{-o} option to ensure that the output goes
6669 into the right file when the source file is in a different directory,
6670 as when using @code{VPATH} (@pxref{Directory Search}).  However,
6671 compilers on some systems do not accept a @samp{-o} switch for object
6672 files.  If you use such a system, and use @code{VPATH}, some
6673 compilations will put their output in the wrong place.
6674 A possible workaround for this problem is to give @code{OUTPUT_OPTION}
6675 the value @w{@samp{; mv $*.o $@@}}.
6677 @node Implicit Variables, Chained Rules, Catalogue of Rules, Implicit Rules
6678 @section Variables Used by Implicit Rules
6679 @cindex flags for compilers
6681 The commands in built-in implicit rules make liberal use of certain
6682 predefined variables.  You can alter these variables in the makefile,
6683 with arguments to @code{make}, or in the environment to alter how the
6684 implicit rules work without redefining the rules themselves.
6686 For example, the command used to compile a C source file actually says
6687 @samp{$(CC) -c $(CFLAGS) $(CPPFLAGS)}.  The default values of the variables
6688 used are @samp{cc} and nothing, resulting in the command @samp{cc -c}.  By
6689 redefining @samp{CC} to @samp{ncc}, you could cause @samp{ncc} to be
6690 used for all C compilations performed by the implicit rule.  By redefining
6691 @samp{CFLAGS} to be @samp{-g}, you could pass the @samp{-g} option to
6692 each compilation.  @emph{All} implicit rules that do C compilation use
6693 @samp{$(CC)} to get the program name for the compiler and @emph{all}
6694 include @samp{$(CFLAGS)} among the arguments given to the compiler.@refill
6696 The variables used in implicit rules fall into two classes: those that are
6697 names of programs (like @code{CC}) and those that contain arguments for the
6698 programs (like @code{CFLAGS}).  (The ``name of a program'' may also contain
6699 some command arguments, but it must start with an actual executable program
6700 name.)  If a variable value contains more than one argument, separate them
6701 with spaces.
6703 Here is a table of variables used as names of programs in built-in rules:
6705 @table @code
6706 @item AR
6707 @vindex AR
6708 Archive-maintaining program; default @samp{ar}.
6709 @pindex ar
6711 @item AS
6712 @vindex AS
6713 Program for doing assembly; default @samp{as}.
6714 @pindex as
6716 @item CC
6717 @vindex CC
6718 Program for compiling C programs; default @samp{cc}.
6719 @pindex cc
6721 @item CXX
6722 @vindex CXX
6723 Program for compiling C++ programs; default @samp{g++}.
6724 @pindex g++
6726 @item CO
6727 @vindex CO
6728 Program for extracting a file from RCS; default @samp{co}.
6729 @pindex co
6731 @item CPP
6732 @vindex CPP
6733 Program for running the C preprocessor, with results to standard output;
6734 default @samp{$(CC) -E}.
6736 @item FC
6737 @vindex FC
6738 Program for compiling or preprocessing Fortran and Ratfor programs;
6739 default @samp{f77}.
6740 @pindex f77
6742 @item GET
6743 @vindex GET
6744 Program for extracting a file from SCCS; default @samp{get}.
6745 @pindex get
6747 @item LEX
6748 @vindex LEX
6749 Program to use to turn Lex grammars into C programs or Ratfor programs;
6750 default @samp{lex}.
6751 @pindex lex
6753 @item PC
6754 @vindex PC
6755 Program for compiling Pascal programs; default @samp{pc}.
6756 @pindex pc
6758 @item YACC
6759 @vindex YACC
6760 Program to use to turn Yacc grammars into C programs; default @samp{yacc}.
6761 @pindex yacc
6763 @item YACCR
6764 @vindex YACCR
6765 Program to use to turn Yacc grammars into Ratfor
6766 programs; default @samp{yacc -r}.
6768 @item MAKEINFO
6769 @vindex MAKEINFO
6770 Program to convert a Texinfo source file into an Info file; default
6771 @samp{makeinfo}.
6772 @pindex makeinfo
6774 @item TEX
6775 @vindex TEX
6776 Program to make @TeX{} @sc{dvi} files from @TeX{} source;
6777 default @samp{tex}.
6778 @pindex tex
6780 @item TEXI2DVI
6781 @vindex TEXI2DVI
6782 Program to make @TeX{} @sc{dvi} files from Texinfo source;
6783 default @samp{texi2dvi}.
6784 @pindex texi2dvi
6786 @item WEAVE
6787 @vindex WEAVE
6788 Program to translate Web into @TeX{}; default @samp{weave}.
6789 @pindex weave
6791 @item CWEAVE
6792 @vindex CWEAVE
6793 Program to translate C Web into @TeX{}; default @samp{cweave}.
6794 @pindex cweave
6796 @item TANGLE
6797 @vindex TANGLE
6798 Program to translate Web into Pascal; default @samp{tangle}.
6799 @pindex tangle
6801 @item CTANGLE
6802 @vindex CTANGLE
6803 Program to translate C Web into C; default @samp{ctangle}.
6804 @pindex ctangle
6806 @item RM
6807 @vindex RM
6808 Command to remove a file; default @samp{rm -f}.
6809 @pindex rm
6810 @end table
6812 Here is a table of variables whose values are additional arguments for the
6813 programs above.  The default values for all of these is the empty
6814 string, unless otherwise noted.
6816 @table @code
6817 @item ARFLAGS
6818 @vindex ARFLAGS
6819 Flags to give the archive-maintaining program; default @samp{rv}.
6821 @item ASFLAGS
6822 @vindex ASFLAGS
6823 Extra flags to give to the assembler (when explicitly
6824 invoked on a @samp{.s} or @samp{.S} file).
6826 @item CFLAGS
6827 @vindex CFLAGS
6828 Extra flags to give to the C compiler.
6830 @item CXXFLAGS
6831 @vindex CXXFLAGS
6832 Extra flags to give to the C++ compiler.
6834 @item COFLAGS
6835 @vindex COFLAGS
6836 Extra flags to give to the RCS @code{co} program.
6838 @item CPPFLAGS
6839 @vindex CPPFLAGS
6840 Extra flags to give to the C preprocessor and programs
6841 that use it (the C and Fortran compilers).
6843 @item FFLAGS
6844 @vindex FFLAGS
6845 Extra flags to give to the Fortran compiler.
6847 @item GFLAGS
6848 @vindex GFLAGS
6849 Extra flags to give to the SCCS @code{get} program.
6851 @item LDFLAGS
6852 @vindex LDFLAGS
6853 Extra flags to give to compilers when they are
6854 supposed to invoke the linker, @samp{ld}.
6856 @item LFLAGS
6857 @vindex LFLAGS
6858 Extra flags to give to Lex.
6860 @item PFLAGS
6861 @vindex PFLAGS
6862 Extra flags to give to the Pascal compiler.
6864 @item RFLAGS
6865 @vindex RFLAGS
6866 Extra flags to give to the Fortran compiler for Ratfor programs.
6868 @item YFLAGS
6869 @vindex YFLAGS
6870 Extra flags to give to Yacc.
6871 @end table
6873 @node Chained Rules, Pattern Rules, Implicit Variables, Implicit Rules
6874 @section Chains of Implicit Rules
6876 @cindex chains of rules
6877 @cindex rule, implicit, chains of
6878 Sometimes a file can be made by a sequence of implicit rules.  For example,
6879 a file @file{@var{n}.o} could be made from @file{@var{n}.y} by running
6880 first Yacc and then @code{cc}.  Such a sequence is called a @dfn{chain}.
6882 If the file @file{@var{n}.c} exists, or is mentioned in the makefile, no
6883 special searching is required: @code{make} finds that the object file can
6884 be made by C compilation from @file{@var{n}.c}; later on, when considering
6885 how to make @file{@var{n}.c}, the rule for running Yacc is
6886 used.  Ultimately both @file{@var{n}.c} and @file{@var{n}.o} are
6887 updated.@refill
6889 @cindex intermediate files
6890 @cindex files, intermediate
6891 However, even if @file{@var{n}.c} does not exist and is not mentioned,
6892 @code{make} knows how to envision it as the missing link between
6893 @file{@var{n}.o} and @file{@var{n}.y}!  In this case, @file{@var{n}.c} is
6894 called an @dfn{intermediate file}.  Once @code{make} has decided to use the
6895 intermediate file, it is entered in the data base as if it had been
6896 mentioned in the makefile, along with the implicit rule that says how to
6897 create it.@refill
6899 Intermediate files are remade using their rules just like all other
6900 files.  The difference is that the intermediate file is deleted when
6901 @code{make} is finished.  Therefore, the intermediate file which did not
6902 exist before @code{make} also does not exist after @code{make}.  The
6903 deletion is reported to you by printing a @samp{rm -f} command that
6904 shows what @code{make} is doing.  (You can list the target pattern of an
6905 implicit rule (such as @samp{%.o}) as a dependency of the special
6906 target @code{.PRECIOUS} to preserve intermediate files made by implicit
6907 rules whose target patterns match that file's name;
6908 see @ref{Interrupts}.)@refill
6909 @cindex intermediate files, preserving
6910 @cindex preserving intermediate files
6911 @cindex preserving with @code{.PRECIOUS}
6912 @cindex @code{.PRECIOUS} intermediate files
6914 A chain can involve more than two implicit rules.  For example, it is
6915 possible to make a file @file{foo} from @file{RCS/foo.y,v} by running RCS,
6916 Yacc and @code{cc}.  Then both @file{foo.y} and @file{foo.c} are
6917 intermediate files that are deleted at the end.@refill
6919 No single implicit rule can appear more than once in a chain.  This means
6920 that @code{make} will not even consider such a ridiculous thing as making
6921 @file{foo} from @file{foo.o.o} by running the linker twice.  This
6922 constraint has the added benefit of preventing any infinite loop in the
6923 search for an implicit rule chain.
6925 There are some special implicit rules to optimize certain cases that would
6926 otherwise be handled by rule chains.  For example, making @file{foo} from
6927 @file{foo.c} could be handled by compiling and linking with separate
6928 chained rules, using @file{foo.o} as an intermediate file.  But what
6929 actually happens is that a special rule for this case does the compilation
6930 and linking with a single @code{cc} command.  The optimized rule is used in
6931 preference to the step-by-step chain because it comes earlier in the
6932 ordering of rules.
6934 @node Pattern Rules, Last Resort, Chained Rules, Implicit Rules
6935 @section Defining and Redefining Pattern Rules
6937 You define an implicit rule by writing a @dfn{pattern rule}.  A pattern
6938 rule looks like an ordinary rule, except that its target contains the
6939 character @samp{%} (exactly one of them).  The target is considered a
6940 pattern for matching file names; the @samp{%} can match any nonempty
6941 substring, while other characters match only themselves.  The dependencies
6942 likewise use @samp{%} to show how their names relate to the target name.
6944 Thus, a pattern rule @samp{%.o : %.c} says how to make any file
6945 @file{@var{stem}.o} from another file @file{@var{stem}.c}.@refill
6947 Note that expansion using @samp{%} in pattern rules occurs
6948 @strong{after} any variable or function expansions, which take place
6949 when the makefile is read.  @xref{Using Variables, , How to Use
6950 Variables}, and @ref{Functions, ,Functions for Transforming Text}.
6952 @menu
6953 * Pattern Intro::               An introduction to pattern rules.
6954 * Pattern Examples::            Examples of pattern rules.
6955 * Automatic::                   How to use automatic variables in the
6956                                   commands of implicit rules.
6957 * Pattern Match::               How patterns match.
6958 * Match-Anything Rules::        Precautions you should take prior to
6959                                   defining rules that can match any
6960                                   target file whatever.
6961 * Canceling Rules::             How to override or cancel built-in rules.
6962 @end menu
6964 @node Pattern Intro, Pattern Examples,  , Pattern Rules
6965 @subsection Introduction to Pattern Rules
6966 @cindex pattern rule
6967 @cindex rule, pattern
6969 A pattern rule contains the character @samp{%} (exactly one of them)
6970 in the target; otherwise, it looks exactly like an ordinary rule.  The
6971 target is a pattern for matching file names; the @samp{%} matches any
6972 nonempty substring, while other characters match only themselves.
6973 @cindex target pattern, implicit
6974 @cindex @code{%}, in pattern rules
6976 For example, @samp{%.c} as a pattern matches any file name that ends in
6977 @samp{.c}.  @samp{s.%.c} as a pattern matches any file name that starts
6978 with @samp{s.}, ends in @samp{.c} and is at least five characters long.
6979 (There must be at least one character to match the @samp{%}.)  The substring
6980 that the @samp{%} matches is called the @dfn{stem}.@refill
6982 @samp{%} in a dependency of a pattern rule stands for the same stem
6983 that was matched by the @samp{%} in the target.  In order for
6984 the pattern rule to apply, its target pattern must match the file name
6985 under consideration, and its dependency patterns must name files that
6986 exist or can be made.  These files become dependencies of the target.
6987 @cindex dependency pattern, implicit
6989 Thus, a rule of the form
6991 @example
6992 %.o : %.c ; @var{command}@dots{}
6993 @end example
6995 @noindent
6996 specifies how to make a file @file{@var{n}.o}, with another file
6997 @file{@var{n}.c} as its dependency, provided that @file{@var{n}.c}
6998 exists or can be made.
7000 There may also be dependencies that do not use @samp{%}; such a dependency
7001 attaches to every file made by this pattern rule.  These unvarying
7002 dependencies are useful occasionally.
7004 A pattern rule need not have any dependencies that contain @samp{%}, or
7005 in fact any dependencies at all.  Such a rule is effectively a general
7006 wildcard.  It provides a way to make any file that matches the target
7007 pattern.  @xref{Last Resort}.
7009 @c !!! The end of of this paragraph should be rewritten.  --bob
7010 Pattern rules may have more than one target.  Unlike normal rules, this
7011 does not act as many different rules with the same dependencies and
7012 commands.  If a pattern rule has multiple targets, @code{make} knows that
7013 the rule's commands are responsible for making all of the targets.  The
7014 commands are executed only once to make all the targets.  When searching
7015 for a pattern rule to match a target, the target patterns of a rule other
7016 than the one that matches the target in need of a rule are incidental:
7017 @code{make} worries only about giving commands and dependencies to the file
7018 presently in question.  However, when this file's commands are run, the
7019 other targets are marked as having been updated themselves.
7020 @cindex multiple targets, in pattern rule
7021 @cindex target, multiple in pattern rule
7023 The order in which pattern rules appear in the makefile is important
7024 since this is the order in which they are considered.
7025 Of equally applicable
7026 rules, only the first one found is used.  The rules you write take precedence
7027 over those that are built in.  Note however, that a rule whose
7028 dependencies actually exist or are mentioned always takes priority over a
7029 rule with dependencies that must be made by chaining other implicit rules.
7030 @cindex pattern rules, order of
7031 @cindex order of pattern rules
7033 @node Pattern Examples, Automatic, Pattern Intro, Pattern Rules
7034 @subsection Pattern Rule Examples
7036 Here are some examples of pattern rules actually predefined in
7037 @code{make}.  First, the rule that compiles @samp{.c} files into @samp{.o}
7038 files:@refill
7040 @example
7041 %.o : %.c
7042         $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@@
7043 @end example
7045 @noindent
7046 defines a rule that can make any file @file{@var{x}.o} from
7047 @file{@var{x}.c}.  The command uses the automatic variables @samp{$@@} and
7048 @samp{$<} to substitute the names of the target file and the source file
7049 in each case where the rule applies (@pxref{Automatic, ,Automatic Variables}).@refill
7051 Here is a second built-in rule:
7053 @example
7054 % :: RCS/%,v
7055         $(CO) $(COFLAGS) $<
7056 @end example
7058 @noindent
7059 defines a rule that can make any file @file{@var{x}} whatsoever from a
7060 corresponding file @file{@var{x},v} in the subdirectory @file{RCS}.  Since
7061 the target is @samp{%}, this rule will apply to any file whatever, provided
7062 the appropriate dependency file exists.  The double colon makes the rule
7063 @dfn{terminal}, which means that its dependency may not be an intermediate
7064 file (@pxref{Match-Anything Rules, ,Match-Anything Pattern Rules}).@refill
7066 @need 500
7067 This pattern rule has two targets:
7069 @example
7070 @group
7071 %.tab.c %.tab.h: %.y
7072         bison -d $<
7073 @end group
7074 @end example
7076 @noindent
7077 @c The following paragraph is rewritten to avoid overfull hboxes
7078 This tells @code{make} that the command @samp{bison -d @var{x}.y} will
7079 make both @file{@var{x}.tab.c} and @file{@var{x}.tab.h}.  If the file
7080 @file{foo} depends on the files @file{parse.tab.o} and @file{scan.o}
7081 and the file @file{scan.o} depends on the file @file{parse.tab.h},
7082 when @file{parse.y} is changed, the command @samp{bison -d parse.y}
7083 will be executed only once, and the dependencies of both
7084 @file{parse.tab.o} and @file{scan.o} will be satisfied.  (Presumably
7085 the file @file{parse.tab.o} will be recompiled from @file{parse.tab.c}
7086 and the file @file{scan.o} from @file{scan.c}, while @file{foo} is
7087 linked from @file{parse.tab.o}, @file{scan.o}, and its other
7088 dependencies, and it will execute happily ever after.)@refill
7090 @node Automatic, Pattern Match, Pattern Examples, Pattern Rules
7091 @subsection Automatic Variables
7092 @cindex automatic variables
7093 @cindex variables, automatic
7094 @cindex variables, and implicit rule
7096 Suppose you are writing a pattern rule to compile a @samp{.c} file into a
7097 @samp{.o} file: how do you write the @samp{cc} command so that it operates
7098 on the right source file name?  You cannot write the name in the command,
7099 because the name is different each time the implicit rule is applied.
7101 What you do is use a special feature of @code{make}, the @dfn{automatic
7102 variables}.  These variables have values computed afresh for each rule that
7103 is executed, based on the target and dependencies of the rule.  In this
7104 example, you would use @samp{$@@} for the object file name and @samp{$<}
7105 for the source file name.
7107 Here is a table of automatic variables:
7109 @table @code
7110 @vindex $@@
7111 @vindex @@ @r{(automatic variable)}
7112 @item $@@
7113 The file name of the target of the rule.  If the target is an archive
7114 member, then @samp{$@@} is the name of the archive file.  In a pattern
7115 rule that has multiple targets (@pxref{Pattern Intro, ,Introduction to
7116 Pattern Rules}), @samp{$@@} is the name of whichever target caused the
7117 rule's commands to be run.
7119 @vindex $%
7120 @vindex % @r{(automatic variable)}
7121 @item $%
7122 The target member name, when the target is an archive member.
7123 @xref{Archives}.  For example, if the target is @file{foo.a(bar.o)} then
7124 @samp{$%} is @file{bar.o} and @samp{$@@} is @file{foo.a}.  @samp{$%} is
7125 empty when the target is not an archive member.
7127 @vindex $<
7128 @vindex < @r{(automatic variable)}
7129 @item $<
7130 The name of the first dependency.  If the target got its commands from
7131 an implicit rule, this will be the first dependency added by the
7132 implicit rule (@pxref{Implicit Rules}).
7134 @vindex $?
7135 @vindex ? @r{(automatic variable)}
7136 @item $?
7137 The names of all the dependencies that are newer than the target, with
7138 spaces between them.  For dependencies which are archive members, only
7139 the member named is used (@pxref{Archives}).
7140 @cindex dependencies, list of changed
7141 @cindex list of changed dependencies
7143 @vindex $^
7144 @vindex ^ @r{(automatic variable)}
7145 @item $^
7146 The names of all the dependencies, with spaces between them.  For
7147 dependencies which are archive members, only the member named is used
7148 (@pxref{Archives}).  A target has only one dependency on each other file
7149 it depends on, no matter how many times each file is listed as a
7150 dependency.  So if you list a dependency more than once for a target,
7151 the value of @code{$^} contains just one copy of the name.
7152 @cindex dependencies, list of all
7153 @cindex list of all dependencies
7155 @vindex $+
7156 @vindex + @r{(automatic variable)}
7157 @item $+
7158 This is like @samp{$^}, but dependencies listed more than once are
7159 duplicated in the order they were listed in the makefile.  This is
7160 primarily useful for use in linking commands where it is meaningful to
7161 repeat library file names in a particular order.
7163 @vindex $*
7164 @vindex * @r{(automatic variable)}
7165 @item $*
7166 The stem with which an implicit rule matches (@pxref{Pattern Match, ,How
7167 Patterns Match}).  If the target is @file{dir/a.foo.b} and the target
7168 pattern is @file{a.%.b} then the stem is @file{dir/foo}.  The stem is
7169 useful for constructing names of related files.@refill
7170 @cindex stem, variable for
7172 In a static pattern rule, the stem is part of the file name that matched
7173 the @samp{%} in the target pattern.
7175 In an explicit rule, there is no stem; so @samp{$*} cannot be determined
7176 in that way.  Instead, if the target name ends with a recognized suffix
7177 (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}), @samp{$*} is set to
7178 the target name minus the suffix.  For example, if the target name is
7179 @samp{foo.c}, then @samp{$*} is set to @samp{foo}, since @samp{.c} is a
7180 suffix.  GNU @code{make} does this bizarre thing only for compatibility
7181 with other implementations of @code{make}.  You should generally avoid
7182 using @samp{$*} except in implicit rules or static pattern rules.@refill
7184 If the target name in an explicit rule does not end with a recognized
7185 suffix, @samp{$*} is set to the empty string for that rule.
7186 @end table
7188 @samp{$?} is useful even in explicit rules when you wish to operate on only
7189 the dependencies that have changed.  For example, suppose that an archive
7190 named @file{lib} is supposed to contain copies of several object files.
7191 This rule copies just the changed object files into the archive:
7193 @example
7194 @group
7195 lib: foo.o bar.o lose.o win.o
7196         ar r lib $?
7197 @end group
7198 @end example
7200 Of the variables listed above, four have values that are single file
7201 names, and two have values that are lists of file names.  These six have
7202 variants that get just the file's directory name or just the file name
7203 within the directory.  The variant variables' names are formed by
7204 appending @samp{D} or @samp{F}, respectively.  These variants are
7205 semi-obsolete in GNU @code{make} since the functions @code{dir} and
7206 @code{notdir} can be used to get a similar effect (@pxref{Filename
7207 Functions, , Functions for File Names}).  Note, however, that the
7208 @samp{F} variants all omit the trailing slash which always appears in
7209 the output of the @code{dir} function.  Here is a table of the variants:
7211 @table @samp
7212 @vindex $(@@D)
7213 @vindex @@D @r{(automatic variable)}
7214 @item $(@@D)
7215 The directory part of the file name of the target, with the trailing
7216 slash removed.  If the value of @samp{$@@} is @file{dir/foo.o} then
7217 @samp{$(@@D)} is @file{dir}.  This value is @file{.} if @samp{$@@} does
7218 not contain a slash.
7220 @vindex $(@@F)
7221 @vindex @@F @r{(automatic variable)}
7222 @item $(@@F)
7223 The file-within-directory part of the file name of the target.  If the
7224 value of @samp{$@@} is @file{dir/foo.o} then @samp{$(@@F)} is
7225 @file{foo.o}.  @samp{$(@@F)} is equivalent to @samp{$(notdir $@@)}.
7227 @vindex $(*D)
7228 @vindex *D @r{(automatic variable)}
7229 @item $(*D)
7230 @vindex $(*F)
7231 @vindex *F @r{(automatic variable)}
7232 @itemx $(*F)
7233 The directory part and the file-within-directory
7234 part of the stem; @file{dir} and @file{foo} in this example.
7236 @vindex $(%D)
7237 @vindex %D @r{(automatic variable)}
7238 @item $(%D)
7239 @vindex $(%F)
7240 @vindex %F @r{(automatic variable)}
7241 @itemx $(%F)
7242 The directory part and the file-within-directory part of the target
7243 archive member name.  This makes sense only for archive member targets
7244 of the form @file{@var{archive}(@var{member})} and is useful only when
7245 @var{member} may contain a directory name.  (@xref{Archive Members,
7246 ,Archive Members as Targets}.)
7248 @vindex $(<D)
7249 @vindex <D @r{(automatic variable)}
7250 @item $(<D)
7251 @vindex $(<F)
7252 @vindex <F @r{(automatic variable)}
7253 @itemx $(<F)
7254 The directory part and the file-within-directory
7255 part of the first dependency.
7257 @vindex $(^D)
7258 @vindex ^D @r{(automatic variable)}
7259 @item $(^D)
7260 @vindex $(^F)
7261 @vindex ^F @r{(automatic variable)}
7262 @itemx $(^F)
7263 Lists of the directory parts and the file-within-directory
7264 parts of all dependencies.
7266 @vindex $(?D)
7267 @vindex ?D @r{(automatic variable)}
7268 @item $(?D)
7269 @vindex $(?F)
7270 @vindex ?F @r{(automatic variable)}
7271 @itemx $(?F)
7272 Lists of the directory parts and the file-within-directory parts of
7273 all dependencies that are newer than the target.
7274 @end table
7276 Note that we use a special stylistic convention when we talk about these
7277 automatic variables; we write ``the value of @samp{$<}'', rather than
7278 @w{``the variable @code{<}''} as we would write for ordinary variables
7279 such as @code{objects} and @code{CFLAGS}.  We think this convention
7280 looks more natural in this special case.  Please do not assume it has a
7281 deep significance; @samp{$<} refers to the variable named @code{<} just
7282 as @samp{$(CFLAGS)} refers to the variable named @code{CFLAGS}.
7283 You could just as well use @samp{$(<)} in place of @samp{$<}.
7285 @node Pattern Match, Match-Anything Rules, Automatic, Pattern Rules
7286 @subsection How Patterns Match
7288 @cindex stem
7289 A target pattern is composed of a @samp{%} between a prefix and a suffix,
7290 either or both of which may be empty.  The pattern matches a file name only
7291 if the file name starts with the prefix and ends with the suffix, without
7292 overlap.  The text between the prefix and the suffix is called the
7293 @dfn{stem}.  Thus, when the pattern @samp{%.o} matches the file name
7294 @file{test.o}, the stem is @samp{test}.  The pattern rule dependencies are
7295 turned into actual file names by substituting the stem for the character
7296 @samp{%}.  Thus, if in the same example one of the dependencies is written
7297 as @samp{%.c}, it expands to @samp{test.c}.@refill
7299 When the target pattern does not contain a slash (and it usually does
7300 not), directory names in the file names are removed from the file name
7301 before it is compared with the target prefix and suffix.  After the
7302 comparison of the file name to the target pattern, the directory
7303 names, along with the slash that ends them, are added on to the
7304 dependency file names generated from the pattern rule's dependency
7305 patterns and the file name. The directories are ignored only for the
7306 purpose of finding an implicit rule to use, not in the application of
7307 that rule.  Thus, @samp{e%t} matches the file name @file{src/eat},
7308 with @samp{src/a} as the stem.  When dependencies are turned into file
7309 names, the directories from the stem are added at the front, while the
7310 rest of the stem is substituted for the @samp{%}.  The stem
7311 @samp{src/a} with a dependency pattern @samp{c%r} gives the file name
7312 @file{src/car}.@refill
7314 @node Match-Anything Rules, Canceling Rules, Pattern Match, Pattern Rules
7315 @subsection Match-Anything Pattern Rules
7317 @cindex match-anything rule
7318 @cindex terminal rule
7319 When a pattern rule's target is just @samp{%}, it matches any file name
7320 whatever.  We call these rules @dfn{match-anything} rules.  They are very
7321 useful, but it can take a lot of time for @code{make} to think about them,
7322 because it must consider every such rule for each file name listed either
7323 as a target or as a dependency.
7325 Suppose the makefile mentions @file{foo.c}.  For this target, @code{make}
7326 would have to consider making it by linking an object file @file{foo.c.o},
7327 or by C compilation-and-linking in one step from @file{foo.c.c}, or by
7328 Pascal compilation-and-linking from @file{foo.c.p}, and many other
7329 possibilities.
7331 We know these possibilities are ridiculous since @file{foo.c} is a C source
7332 file, not an executable.  If @code{make} did consider these possibilities,
7333 it would ultimately reject them, because files such as @file{foo.c.o} and
7334 @file{foo.c.p} would not exist.  But these possibilities are so
7335 numerous that @code{make} would run very slowly if it had to consider
7336 them.@refill
7338 To gain speed, we have put various constraints on the way @code{make}
7339 considers match-anything rules.  There are two different constraints that
7340 can be applied, and each time you define a match-anything rule you must
7341 choose one or the other for that rule.
7343 One choice is to mark the match-anything rule as @dfn{terminal} by defining
7344 it with a double colon.  When a rule is terminal, it does not apply unless
7345 its dependencies actually exist.  Dependencies that could be made with
7346 other implicit rules are not good enough.  In other words, no further
7347 chaining is allowed beyond a terminal rule.
7349 For example, the built-in implicit rules for extracting sources from RCS
7350 and SCCS files are terminal; as a result, if the file @file{foo.c,v} does
7351 not exist, @code{make} will not even consider trying to make it as an
7352 intermediate file from @file{foo.c,v.o} or from @file{RCS/SCCS/s.foo.c,v}.
7353 RCS and SCCS files are generally ultimate source files, which should not be
7354 remade from any other files; therefore, @code{make} can save time by not
7355 looking for ways to remake them.@refill
7357 If you do not mark the match-anything rule as terminal, then it is
7358 nonterminal.  A nonterminal match-anything rule cannot apply to a file name
7359 that indicates a specific type of data.  A file name indicates a specific
7360 type of data if some non-match-anything implicit rule target matches it.
7362 For example, the file name @file{foo.c} matches the target for the pattern
7363 rule @samp{%.c : %.y} (the rule to run Yacc).  Regardless of whether this
7364 rule is actually applicable (which happens only if there is a file
7365 @file{foo.y}), the fact that its target matches is enough to prevent
7366 consideration of any nonterminal match-anything rules for the file
7367 @file{foo.c}.  Thus, @code{make} will not even consider trying to make
7368 @file{foo.c} as an executable file from @file{foo.c.o}, @file{foo.c.c},
7369 @file{foo.c.p}, etc.@refill
7371 The motivation for this constraint is that nonterminal match-anything
7372 rules are used for making files containing specific types of data (such as
7373 executable files) and a file name with a recognized suffix indicates some
7374 other specific type of data (such as a C source file).
7376 Special built-in dummy pattern rules are provided solely to recognize
7377 certain file names so that nonterminal match-anything rules will not be
7378 considered.  These dummy rules have no dependencies and no commands, and
7379 they are ignored for all other purposes.  For example, the built-in
7380 implicit rule
7382 @example
7383 %.p :
7384 @end example
7386 @noindent
7387 exists to make sure that Pascal source files such as @file{foo.p} match a
7388 specific target pattern and thereby prevent time from being wasted looking
7389 for @file{foo.p.o} or @file{foo.p.c}.
7391 Dummy pattern rules such as the one for @samp{%.p} are made for every
7392 suffix listed as valid for use in suffix rules (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}).
7394 @node Canceling Rules,  , Match-Anything Rules, Pattern Rules
7395 @subsection Canceling Implicit Rules
7397 You can override a built-in implicit rule (or one you have defined
7398 yourself) by defining a new pattern rule with the same target and
7399 dependencies, but different commands.  When the new rule is defined, the
7400 built-in one is replaced.  The new rule's position in the sequence of
7401 implicit rules is determined by where you write the new rule.
7403 You can cancel a built-in implicit rule by defining a pattern rule with the
7404 same target and dependencies, but no commands.  For example, the following
7405 would cancel the rule that runs the assembler:
7407 @example
7408 %.o : %.s
7409 @end example
7411 @node Last Resort, Suffix Rules, Pattern Rules, Implicit Rules
7412 @section Defining Last-Resort Default Rules
7413 @cindex last-resort default rules
7414 @cindex default rules, last-resort
7416 You can define a last-resort implicit rule by writing a terminal
7417 match-anything pattern rule with no dependencies (@pxref{Match-Anything
7418 Rules}).  This is just like any other pattern rule; the only thing
7419 special about it is that it will match any target.  So such a rule's
7420 commands are used for all targets and dependencies that have no commands
7421 of their own and for which no other implicit rule applies.
7423 For example, when testing a makefile, you might not care if the source
7424 files contain real data, only that they exist.  Then you might do this:
7426 @example
7428         touch $@@
7429 @end example
7431 @noindent
7432 to cause all the source files needed (as dependencies) to be created
7433 automatically.
7435 @findex .DEFAULT
7436 You can instead define commands to be used for targets for which there
7437 are no rules at all, even ones which don't specify commands.  You do
7438 this by writing a rule for the target @code{.DEFAULT}.  Such a rule's
7439 commands are used for all dependencies which do not appear as targets in
7440 any explicit rule, and for which no implicit rule applies.  Naturally,
7441 there is no @code{.DEFAULT} rule unless you write one.
7443 If you use @code{.DEFAULT} with no commands or dependencies:
7445 @example
7446 .DEFAULT:
7447 @end example
7449 @noindent
7450 the commands previously stored for @code{.DEFAULT} are cleared.
7451 Then @code{make} acts as if you had never defined @code{.DEFAULT} at all.
7453 If you do not want a target to get the commands from a match-anything
7454 pattern rule or @code{.DEFAULT}, but you also do not want any commands
7455 to be run for the target, you can give it empty commands (@pxref{Empty
7456 Commands, ,Defining Empty Commands}).@refill
7458 You can use a last-resort rule to override part of another makefile.
7459 @xref{Overriding Makefiles, , Overriding Part of Another Makefile}.
7461 @node Suffix Rules, Search Algorithm, Last Resort, Implicit Rules
7462 @section Old-Fashioned Suffix Rules
7463 @cindex old-fashioned suffix rules
7464 @cindex suffix rule
7466 @dfn{Suffix rules} are the old-fashioned way of defining implicit rules for
7467 @code{make}.  Suffix rules are obsolete because pattern rules are more
7468 general and clearer.  They are supported in GNU @code{make} for
7469 compatibility with old makefiles.  They come in two kinds:
7470 @dfn{double-suffix} and @dfn{single-suffix}.@refill
7472 A double-suffix rule is defined by a pair of suffixes: the target suffix
7473 and the source suffix.  It matches any file whose name ends with the
7474 target suffix.  The corresponding implicit dependency is made by
7475 replacing the target suffix with the source suffix in the file name.  A
7476 two-suffix rule whose target and source suffixes are @samp{.o} and
7477 @samp{.c} is equivalent to the pattern rule @samp{%.o : %.c}.
7479 A single-suffix rule is defined by a single suffix, which is the source
7480 suffix.  It matches any file name, and the corresponding implicit
7481 dependency name is made by appending the source suffix.  A single-suffix
7482 rule whose source suffix is @samp{.c} is equivalent to the pattern rule
7483 @samp{% : %.c}.
7485 Suffix rule definitions are recognized by comparing each rule's target
7486 against a defined list of known suffixes.  When @code{make} sees a rule
7487 whose target is a known suffix, this rule is considered a single-suffix
7488 rule.  When @code{make} sees a rule whose target is two known suffixes
7489 concatenated, this rule is taken as a double-suffix rule.
7491 For example, @samp{.c} and @samp{.o} are both on the default list of
7492 known suffixes.  Therefore, if you define a rule whose target is
7493 @samp{.c.o}, @code{make} takes it to be a double-suffix rule with source
7494 suffix @samp{.c} and target suffix @samp{.o}.  Here is the old-fashioned
7495 way to define the rule for compiling a C source file:@refill
7497 @example
7498 .c.o:
7499         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
7500 @end example
7502 Suffix rules cannot have any dependencies of their own.  If they have any,
7503 they are treated as normal files with funny names, not as suffix rules.
7504 Thus, the rule:
7506 @example
7507 .c.o: foo.h
7508         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
7509 @end example
7511 @noindent
7512 tells how to make the file @file{.c.o} from the dependency file
7513 @file{foo.h}, and is not at all like the pattern rule:
7515 @example
7516 %.o: %.c foo.h
7517         $(CC) -c $(CFLAGS) $(CPPFLAGS) -o $@@ $<
7518 @end example
7520 @noindent
7521 which tells how to make @samp{.o} files from @samp{.c} files, and makes all
7522 @samp{.o} files using this pattern rule also depend on @file{foo.h}.
7524 Suffix rules with no commands are also meaningless.  They do not remove
7525 previous rules as do pattern rules with no commands (@pxref{Canceling
7526 Rules, , Canceling Implicit Rules}).  They simply enter the suffix or pair of suffixes concatenated as
7527 a target in the data base.@refill
7529 @findex .SUFFIXES
7530 The known suffixes are simply the names of the dependencies of the special
7531 target @code{.SUFFIXES}.  You can add your own suffixes by writing a rule
7532 for @code{.SUFFIXES} that adds more dependencies, as in:
7534 @example
7535 .SUFFIXES: .hack .win
7536 @end example
7538 @noindent
7539 which adds @samp{.hack} and @samp{.win} to the end of the list of suffixes.
7541 If you wish to eliminate the default known suffixes instead of just adding
7542 to them, write a rule for @code{.SUFFIXES} with no dependencies.  By
7543 special dispensation, this eliminates all existing dependencies of
7544 @code{.SUFFIXES}.  You can then write another rule to add the suffixes you
7545 want.  For example,
7547 @example
7548 @group
7549 .SUFFIXES:            # @r{Delete the default suffixes}
7550 .SUFFIXES: .c .o .h   # @r{Define our suffix list}
7551 @end group
7552 @end example
7554 The @samp{-r} or @samp{--no-builtin-rules} flag causes the default
7555 list of suffixes to be empty.
7557 @vindex SUFFIXES
7558 The variable @code{SUFFIXES} is defined to the default list of suffixes
7559 before @code{make} reads any makefiles.  You can change the list of suffixes
7560 with a rule for the special target @code{.SUFFIXES}, but that does not alter
7561 this variable.
7563 @node Search Algorithm,  , Suffix Rules, Implicit Rules
7564 @section Implicit Rule Search Algorithm
7565 @cindex implicit rule, search algorithm
7566 @cindex search algorithm, implicit rule
7568 Here is the procedure @code{make} uses for searching for an implicit rule
7569 for a target @var{t}.  This procedure is followed for each double-colon
7570 rule with no commands, for each target of ordinary rules none of which have
7571 commands, and for each dependency that is not the target of any rule.  It
7572 is also followed recursively for dependencies that come from implicit
7573 rules, in the search for a chain of rules.
7575 Suffix rules are not mentioned in this algorithm because suffix rules are
7576 converted to equivalent pattern rules once the makefiles have been read in.
7578 For an archive member target of the form
7579 @samp{@var{archive}(@var{member})}, the following algorithm is run
7580 twice, first using the entire target name @var{t}, and second using
7581 @samp{(@var{member})} as the target @var{t} if the first run found no
7582 rule.@refill
7584 @enumerate
7585 @item
7586 Split @var{t} into a directory part, called @var{d}, and the rest,
7587 called @var{n}.  For example, if @var{t} is @samp{src/foo.o}, then
7588 @var{d} is @samp{src/} and @var{n} is @samp{foo.o}.@refill
7590 @item
7591 Make a list of all the pattern rules one of whose targets matches
7592 @var{t} or @var{n}.  If the target pattern contains a slash, it is
7593 matched against @var{t}; otherwise, against @var{n}.
7595 @item
7596 If any rule in that list is @emph{not} a match-anything rule, then
7597 remove all nonterminal match-anything rules from the list.
7599 @item
7600 Remove from the list all rules with no commands.
7602 @item
7603 For each pattern rule in the list:
7605 @enumerate a
7606 @item
7607 Find the stem @var{s}, which is the nonempty part of @var{t} or @var{n}
7608 matched by the @samp{%} in the target pattern.@refill
7610 @item
7611 Compute the dependency names by substituting @var{s} for @samp{%}; if
7612 the target pattern does not contain a slash, append @var{d} to
7613 the front of each dependency name.@refill
7615 @item
7616 Test whether all the dependencies exist or ought to exist.  (If a
7617 file name is mentioned in the makefile as a target or as an explicit
7618 dependency, then we say it ought to exist.)
7620 If all dependencies exist or ought to exist, or there are no dependencies,
7621 then this rule applies.
7622 @end enumerate
7624 @item
7625 If no pattern rule has been found so far, try harder.
7626 For each pattern rule in the list:
7628 @enumerate a
7629 @item
7630 If the rule is terminal, ignore it and go on to the next rule.
7632 @item
7633 Compute the dependency names as before.
7635 @item
7636 Test whether all the dependencies exist or ought to exist.
7638 @item
7639 For each dependency that does not exist, follow this algorithm
7640 recursively to see if the dependency can be made by an implicit
7641 rule.
7643 @item
7644 If all dependencies exist, ought to exist, or can be
7645 made by implicit rules, then this rule applies.
7646 @end enumerate
7648 @item
7649 If no implicit rule applies, the rule for @code{.DEFAULT}, if any,
7650 applies.  In that case, give @var{t} the same commands that
7651 @code{.DEFAULT} has.  Otherwise, there are no commands for @var{t}.
7652 @end enumerate
7654 Once a rule that applies has been found, for each target pattern of the
7655 rule other than the one that matched @var{t} or @var{n}, the @samp{%} in
7656 the pattern is replaced with @var{s} and the resultant file name is stored
7657 until the commands to remake the target file @var{t} are executed.  After
7658 these commands are executed, each of these stored file names are entered
7659 into the data base and marked as having been updated and having the same
7660 update status as the file @var{t}.
7662 When the commands of a pattern rule are executed for @var{t}, the automatic
7663 variables are set corresponding to the target and dependencies.
7664 @xref{Automatic, ,Automatic Variables}.
7666 @node Archives, Features, Implicit Rules, Top
7667 @chapter Using @code{make} to Update Archive Files
7668 @cindex archive
7670 @dfn{Archive files} are files containing named subfiles called
7671 @dfn{members}; they are maintained with the program @code{ar} and their
7672 main use is as subroutine libraries for linking.
7674 @menu
7675 * Archive Members::             Archive members as targets.
7676 * Archive Update::              The implicit rule for archive member targets.
7677 * Archive Pitfalls::            Dangers to watch out for when using archives.
7678 * Archive Suffix Rules::        You can write a special kind of suffix rule
7679                                   for updating archives.
7680 @end menu
7682 @node Archive Members, Archive Update,  , Archives
7683 @section Archive Members as Targets
7684 @cindex archive member targets
7686 An individual member of an archive file can be used as a target or
7687 dependency in @code{make}.  You specify the member named @var{member} in
7688 archive file @var{archive} as follows:
7690 @example
7691 @var{archive}(@var{member})
7692 @end example
7694 @noindent
7695 This construct is available only in targets and dependencies, not in
7696 commands!  Most programs that you might use in commands do not support this
7697 syntax and cannot act directly on archive members.  Only @code{ar} and
7698 other programs specifically designed to operate on archives can do so.
7699 Therefore, valid commands to update an archive member target probably must
7700 use @code{ar}.  For example, this rule says to create a member
7701 @file{hack.o} in archive @file{foolib} by copying the file @file{hack.o}:
7703 @example
7704 foolib(hack.o) : hack.o
7705         ar cr foolib hack.o
7706 @end example
7708 In fact, nearly all archive member targets are updated in just this way
7709 and there is an implicit rule to do it for you.  @strong{Note:} The
7710 @samp{c} flag to @code{ar} is required if the archive file does not
7711 already exist.
7713 To specify several members in the same archive, you can write all the
7714 member names together between the parentheses.  For example:
7716 @example
7717 foolib(hack.o kludge.o)
7718 @end example
7720 @noindent
7721 is equivalent to:
7723 @example
7724 foolib(hack.o) foolib(kludge.o)
7725 @end example
7727 @cindex wildcard, in archive member
7728 You can also use shell-style wildcards in an archive member reference.
7729 @xref{Wildcards, ,Using Wildcard Characters in File Names}.  For
7730 example, @w{@samp{foolib(*.o)}} expands to all existing members of the
7731 @file{foolib} archive whose names end in @samp{.o}; perhaps
7732 @samp{@w{foolib(hack.o)} @w{foolib(kludge.o)}}.
7734 @node Archive Update
7735 @section Implicit Rule for Archive Member Targets
7737 Recall that a target that looks like @file{@var{a}(@var{m})} stands for the
7738 member named @var{m} in the archive file @var{a}.
7740 When @code{make} looks for an implicit rule for such a target, as a special
7741 feature it considers implicit rules that match @file{(@var{m})}, as well as
7742 those that match the actual target @file{@var{a}(@var{m})}.
7744 This causes one special rule whose target is @file{(%)} to match.  This
7745 rule updates the target @file{@var{a}(@var{m})} by copying the file @var{m}
7746 into the archive.  For example, it will update the archive member target
7747 @file{foo.a(bar.o)} by copying the @emph{file} @file{bar.o} into the
7748 archive @file{foo.a} as a @emph{member} named @file{bar.o}.
7750 When this rule is chained with others, the result is very powerful.
7751 Thus, @samp{make "foo.a(bar.o)"} (the quotes are needed to protect the
7752 @samp{(} and @samp{)} from being interpreted specially by the shell) in
7753 the presence of a file @file{bar.c} is enough to cause the following
7754 commands to be run, even without a makefile:
7756 @example
7757 cc -c bar.c -o bar.o
7758 ar r foo.a bar.o
7759 rm -f bar.o
7760 @end example
7762 @noindent
7763 Here @code{make} has envisioned the file @file{bar.o} as an intermediate
7764 file.  @xref{Chained Rules, ,Chains of Implicit Rules}.
7766 Implicit rules such as this one are written using the automatic variable
7767 @samp{$%}.  @xref{Automatic, ,Automatic Variables}.
7769 An archive member name in an archive cannot contain a directory name, but
7770 it may be useful in a makefile to pretend that it does.  If you write an
7771 archive member target @file{foo.a(dir/file.o)}, @code{make} will perform
7772 automatic updating with this command:
7774 @example
7775 ar r foo.a dir/file.o
7776 @end example
7778 @noindent
7779 which has the effect of copying the file @file{dir/file.o} into a member
7780 named @file{file.o}.  In connection with such usage, the automatic variables
7781 @code{%D} and @code{%F} may be useful.
7783 @menu
7784 * Archive Symbols::             How to update archive symbol directories.
7785 @end menu
7787 @node Archive Symbols,  ,  , Archive Update
7788 @subsection Updating Archive Symbol Directories
7789 @cindex @code{__.SYMDEF}
7790 @cindex updating archive symbol directories
7791 @cindex archive symbol directory updating
7792 @cindex symbol directories, updating archive
7793 @cindex directories, updating archive symbol
7795 An archive file that is used as a library usually contains a special member
7796 named @file{__.SYMDEF} that contains a directory of the external symbol
7797 names defined by all the other members.  After you update any other
7798 members, you need to update @file{__.SYMDEF} so that it will summarize the
7799 other members properly.  This is done by running the @code{ranlib} program:
7801 @example
7802 ranlib @var{archivefile}
7803 @end example
7805 Normally you would put this command in the rule for the archive file,
7806 and make all the members of the archive file dependencies of that rule.
7807 For example,
7809 @example
7810 libfoo.a: libfoo.a(x.o) libfoo.a(y.o) @dots{}
7811         ranlib libfoo.a
7812 @end example
7814 @noindent
7815 The effect of this is to update archive members @file{x.o}, @file{y.o},
7816 etc., and then update the symbol directory member @file{__.SYMDEF} by
7817 running @code{ranlib}.  The rules for updating the members are not shown
7818 here; most likely you can omit them and use the implicit rule which copies
7819 files into the archive, as described in the preceding section.
7821 This is not necessary when using the GNU @code{ar} program, which
7822 updates the @file{__.SYMDEF} member automatically.
7824 @node Archive Pitfalls
7825 @section Dangers When Using Archives
7826 @cindex archive, and parallel execution
7827 @cindex parallel execution, and archive update
7828 @cindex archive, and @code{-j}
7829 @cindex @code{-j}, and archive update
7831 It is important to be careful when using parallel execution (the
7832 @code{-j} switch; @pxref{Parallel, ,Parallel Execution}) and archives.
7833 If multiple @code{ar} commands run at the same time on the same archive
7834 file, they will not know about each other and can corrupt the file.
7836 Possibly a future version of @code{make} will provide a mechanism to
7837 circumvent this problem by serializing all commands that operate on the
7838 same archive file.  But for the time being, you must either write your
7839 makefiles to avoid this problem in some other way, or not use @code{-j}.
7841 @node Archive Suffix Rules, , Archive Pitfalls, Archives
7842 @section Suffix Rules for Archive Files
7843 @cindex suffix rule, for archive
7844 @cindex archive, suffix rule for
7845 @cindex library archive, suffix rule for
7846 @cindex @code{.a} (archives)
7848 You can write a special kind of suffix rule for dealing with archive
7849 files.  @xref{Suffix Rules}, for a full explanation of suffix rules.
7850 Archive suffix rules are obsolete in GNU @code{make}, because pattern
7851 rules for archives are a more general mechanism (@pxref{Archive
7852 Update}).  But they are retained for compatibility with other
7853 @code{make}s.
7855 To write a suffix rule for archives, you simply write a suffix rule
7856 using the target suffix @samp{.a} (the usual suffix for archive files).
7857 For example, here is the old-fashioned suffix rule to update a library
7858 archive from C source files:
7860 @example
7861 @group
7862 .c.a:
7863         $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
7864         $(AR) r $@@ $*.o
7865         $(RM) $*.o
7866 @end group
7867 @end example
7869 @noindent
7870 This works just as if you had written the pattern rule:
7872 @example
7873 @group
7874 (%.o): %.c
7875         $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $*.o
7876         $(AR) r $@@ $*.o
7877         $(RM) $*.o
7878 @end group
7879 @end example
7881 In fact, this is just what @code{make} does when it sees a suffix rule
7882 with @samp{.a} as the target suffix.  Any double-suffix rule
7883 @w{@samp{.@var{x}.a}} is converted to a pattern rule with the target
7884 pattern @samp{(%.o)} and a dependency pattern of @samp{%.@var{x}}.
7886 Since you might want to use @samp{.a} as the suffix for some other kind
7887 of file, @code{make} also converts archive suffix rules to pattern rules
7888 in the normal way (@pxref{Suffix Rules}).  Thus a double-suffix rule
7889 @w{@samp{.@var{x}.a}} produces two pattern rules: @samp{@w{(%.o):}
7890 @w{%.@var{x}}} and @samp{@w{%.a}: @w{%.@var{x}}}.@refill
7892 @node Features, Missing, Archives, Top
7893 @chapter Features of GNU @code{make}
7894 @cindex features of GNU @code{make}
7895 @cindex portability
7896 @cindex compatibility
7898 Here is a summary of the features of GNU @code{make}, for comparison
7899 with and credit to other versions of @code{make}.  We consider the
7900 features of @code{make} in 4.2 BSD systems as a baseline.  If you are
7901 concerned with writing portable makefiles, you should use only the
7902 features of @code{make} @emph{not} listed here or in @ref{Missing}.
7904 Many features come from the version of @code{make} in System V.
7906 @itemize @bullet
7907 @item
7908 The @code{VPATH} variable and its special meaning.
7909 @xref{Directory Search, , Searching Directories for Dependencies}.
7910 This feature exists in System V @code{make}, but is undocumented.
7911 It is documented in 4.3 BSD @code{make} (which says it mimics System V's
7912 @code{VPATH} feature).@refill
7914 @item
7915 Included makefiles.  @xref{Include, ,Including Other Makefiles}.
7916 Allowing multiple files to be included with a single directive is a GNU
7917 extension.
7919 @item
7920 Variables are read from and communicated via the environment.
7921 @xref{Environment, ,Variables from the Environment}.
7923 @item
7924 Options passed through the variable @code{MAKEFLAGS} to recursive
7925 invocations of @code{make}.
7926 @xref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
7928 @item
7929 The automatic variable @code{$%} is set to the member name
7930 in an archive reference.  @xref{Automatic, ,Automatic Variables}.
7932 @item
7933 The automatic variables @code{$@@}, @code{$*}, @code{$<}, @code{$%},
7934 and @code{$?} have corresponding forms like @code{$(@@F)} and
7935 @code{$(@@D)}.  We have generalized this to @code{$^} as an obvious
7936 extension.  @xref{Automatic, ,Automatic Variables}.@refill
7938 @item
7939 Substitution variable references.
7940 @xref{Reference, ,Basics of Variable References}.
7942 @item
7943 The command-line options @samp{-b} and @samp{-m}, accepted and
7944 ignored.  In System V @code{make}, these options actually do something.
7946 @item
7947 Execution of recursive commands to run @code{make} via the variable
7948 @code{MAKE} even if @samp{-n}, @samp{-q} or @samp{-t} is specified.
7949 @xref{Recursion, ,Recursive Use of @code{make}}.
7951 @item
7952 Support for suffix @samp{.a} in suffix rules.  @xref{Archive Suffix
7953 Rules}.  This feature is obsolete in GNU @code{make}, because the
7954 general feature of rule chaining (@pxref{Chained Rules, ,Chains of
7955 Implicit Rules}) allows one pattern rule for installing members in an
7956 archive (@pxref{Archive Update}) to be sufficient.
7958 @item
7959 The arrangement of lines and backslash-newline combinations in
7960 commands is retained when the commands are printed, so they appear as
7961 they do in the makefile, except for the stripping of initial
7962 whitespace.
7963 @end itemize
7965 The following features were inspired by various other versions of
7966 @code{make}.  In some cases it is unclear exactly which versions inspired
7967 which others.
7969 @itemize @bullet
7970 @item
7971 Pattern rules using @samp{%}.
7972 This has been implemented in several versions of @code{make}.
7973 We're not sure who invented it first, but it's been spread around a bit.
7974 @xref{Pattern Rules, ,Defining and Redefining Pattern Rules}.@refill
7976 @item
7977 Rule chaining and implicit intermediate files.
7978 This was implemented by Stu Feldman in his version of @code{make}
7979 for AT&T Eighth Edition Research Unix, and later by Andrew Hume of
7980 AT&T Bell Labs in his @code{mk} program (where he terms it
7981 ``transitive closure'').  We do not really know if
7982 we got this from either of them or thought it up ourselves at the
7983 same time.  @xref{Chained Rules, ,Chains of Implicit Rules}.
7985 @item
7986 The automatic variable @code{$^} containing a list of all dependencies
7987 of the current target.  We did not invent this, but we have no idea who
7988 did.  @xref{Automatic, ,Automatic Variables}.  The automatic variable
7989 @code{$+} is a simple extension of @code{$^}.
7991 @item
7992 The ``what if'' flag (@samp{-W} in GNU @code{make}) was (as far as we know)
7993 invented by Andrew Hume in @code{mk}.
7994 @xref{Instead of Execution, ,Instead of Executing the Commands}.
7996 @item
7997 The concept of doing several things at once (parallelism) exists in
7998 many incarnations of @code{make} and similar programs, though not in the
7999 System V or BSD implementations.  @xref{Execution, ,Command Execution}.
8001 @item
8002 Modified variable references using pattern substitution come from
8003 SunOS 4.  @xref{Reference, ,Basics of Variable References}.
8004 This functionality was provided in GNU @code{make} by the
8005 @code{patsubst} function before the alternate syntax was implemented
8006 for compatibility with SunOS 4.  It is not altogether clear who
8007 inspired whom, since GNU @code{make} had @code{patsubst} before SunOS
8008 4 was released.@refill
8010 @item
8011 The special significance of @samp{+} characters preceding command lines
8012 (@pxref{Instead of Execution, ,Instead of Executing the Commands}) is
8013 mandated by
8014 @cite{IEEE Standard 1003.2-1992} (POSIX.2).
8016 @item
8017 The @samp{+=} syntax to append to the value of a variable comes from SunOS
8018 4 @code{make}.  @xref{Appending, , Appending More Text to Variables}.
8020 @item
8021 The syntax @w{@samp{@var{archive}(@var{mem1} @var{mem2}@dots{})}} to list
8022 multiple members in a single archive file comes from SunOS 4 @code{make}.
8023 @xref{Archive Members}.
8025 @item
8026 The @code{-include} directive to include makefiles with no error for a
8027 nonexistent file comes from SunOS 4 @code{make}.  (But note that SunOS 4
8028 @code{make} does not allow multiple makefiles to be specified in one
8029 @code{-include} directive.)
8030 @end itemize
8032 The remaining features are inventions new in GNU @code{make}:
8034 @itemize @bullet
8035 @item
8036 Use the @samp{-v} or @samp{--version} option to print version and
8037 copyright information.
8039 @item
8040 Use the @samp{-h} or @samp{--help} option to summarize the options to
8041 @code{make}.
8043 @item
8044 Simply-expanded variables.  @xref{Flavors, ,The Two Flavors of Variables}.
8046 @item
8047 Pass command-line variable assignments automatically through the
8048 variable @code{MAKE} to recursive @code{make} invocations.
8049 @xref{Recursion, ,Recursive Use of @code{make}}.
8051 @item
8052 Use the @samp{-C} or @samp{--directory} command option to change
8053 directory.  @xref{Options Summary, ,Summary of Options}.
8055 @item
8056 Make verbatim variable definitions with @code{define}.
8057 @xref{Defining, ,Defining Variables Verbatim}.
8059 @item
8060 Declare phony targets with the special target @code{.PHONY}.
8062 Andrew Hume of AT&T Bell Labs implemented a similar feature with a
8063 different syntax in his @code{mk} program.  This seems to be a case of
8064 parallel discovery.  @xref{Phony Targets, ,Phony Targets}.
8066 @item
8067 Manipulate text by calling functions.
8068 @xref{Functions, ,Functions for Transforming Text}.
8070 @item
8071 Use the @samp{-o} or @samp{--old-file}
8072 option to pretend a file's modification-time is old.
8073 @xref{Avoiding Compilation, ,Avoiding Recompilation of Some Files}.
8075 @item
8076 Conditional execution.
8078 This feature has been implemented numerous times in various versions
8079 of @code{make}; it seems a natural extension derived from the features
8080 of the C preprocessor and similar macro languages and is not a
8081 revolutionary concept.  @xref{Conditionals, ,Conditional Parts of Makefiles}.
8083 @item
8084 Specify a search path for included makefiles.
8085 @xref{Include, ,Including Other Makefiles}.
8087 @item
8088 Specify extra makefiles to read with an environment variable.
8089 @xref{MAKEFILES Variable, ,The Variable @code{MAKEFILES}}.
8091 @item
8092 Strip leading sequences of @samp{./} from file names, so that
8093 @file{./@var{file}} and @file{@var{file}} are considered to be the
8094 same file.@refill
8096 @item
8097 Use a special search method for library dependencies written in the
8098 form @samp{-l@var{name}}.
8099 @xref{Libraries/Search, ,Directory Search for Link Libraries}.
8101 @item
8102 Allow suffixes for suffix rules
8103 (@pxref{Suffix Rules, ,Old-Fashioned Suffix Rules}) to contain any
8104 characters.  In other versions of @code{make}, they must begin with
8105 @samp{.} and not contain any @samp{/} characters.
8107 @item
8108 Keep track of the current level of @code{make} recursion using the
8109 variable @code{MAKELEVEL}.  @xref{Recursion, ,Recursive Use of @code{make}}.
8111 @item
8112 Specify static pattern rules.  @xref{Static Pattern, ,Static Pattern Rules}.
8114 @item
8115 Provide selective @code{vpath} search.
8116 @xref{Directory Search, ,Searching Directories for Dependencies}.
8118 @item
8119 Provide computed variable references.
8120 @xref{Reference, ,Basics of Variable References}.
8122 @item
8123 Update makefiles.  @xref{Remaking Makefiles, ,How Makefiles Are Remade}.
8124 System V @code{make} has a very, very limited form of this
8125 functionality in that it will check out SCCS files for makefiles.
8127 @item
8128 Various new built-in implicit rules.
8129 @xref{Catalogue of Rules, ,Catalogue of Implicit Rules}.
8131 @item
8132 The built-in variable @samp{MAKE_VERSION} gives the version number of
8133 @code{make}.
8134 @end itemize
8136 @node Missing, Makefile Conventions, Features, Top
8137 @chapter Incompatibilities and Missing Features
8138 @cindex incompatibilities
8139 @cindex missing features
8140 @cindex features, missing
8142 The @code{make} programs in various other systems support a few features
8143 that are not implemented in GNU @code{make}.  The POSIX.2 standard
8144 (@cite{IEEE Standard 1003.2-1992}) which specifies @code{make} does not
8145 require any of these features.@refill
8147 @itemize @bullet
8148 @item
8149 A target of the form @samp{@var{file}((@var{entry}))} stands for a member
8150 of archive file @var{file}.  The member is chosen, not by name, but by
8151 being an object file which defines the linker symbol @var{entry}.@refill
8153 This feature was not put into GNU @code{make} because of the
8154 nonmodularity of putting knowledge into @code{make} of the internal
8155 format of archive file symbol tables.
8156 @xref{Archive Symbols, ,Updating Archive Symbol Directories}.
8158 @item
8159 Suffixes (used in suffix rules) that end with the character @samp{~}
8160 have a special meaning to System V @code{make};
8161 they refer to the SCCS file that corresponds
8162 to the file one would get without the @samp{~}.  For example, the
8163 suffix rule @samp{.c~.o} would make the file @file{@var{n}.o} from
8164 the SCCS file @file{s.@var{n}.c}.  For complete coverage, a whole
8165 series of such suffix rules is required.
8166 @xref{Suffix Rules, ,Old-Fashioned Suffix Rules}.
8168 In GNU @code{make}, this entire series of cases is handled by two
8169 pattern rules for extraction from SCCS, in combination with the
8170 general feature of rule chaining.
8171 @xref{Chained Rules, ,Chains of Implicit Rules}.
8173 @item
8174 In System V @code{make}, the string @samp{$$@@} has the strange meaning
8175 that, in the dependencies of a rule with multiple targets, it stands
8176 for the particular target that is being processed.
8178 This is not defined in GNU @code{make} because @samp{$$} should always
8179 stand for an ordinary @samp{$}.
8181 It is possible to get this functionality through the use of static pattern
8182 rules (@pxref{Static Pattern, ,Static Pattern Rules}).
8183 The System V @code{make} rule:
8185 @example
8186 $(targets): $$@@.o lib.a
8187 @end example
8189 @noindent
8190 can be replaced with the GNU @code{make} static pattern rule:
8192 @example
8193 $(targets): %: %.o lib.a
8194 @end example
8196 @item
8197 In System V and 4.3 BSD @code{make}, files found by @code{VPATH} search
8198 (@pxref{Directory Search, ,Searching Directories for Dependencies}) have their names changed inside command
8199 strings.  We feel it is much cleaner to always use automatic variables
8200 and thus make this feature obsolete.@refill
8202 @item
8203 In some Unix @code{make}s, the automatic variable @code{$*} appearing in
8204 the dependencies of a rule has the amazingly strange ``feature'' of
8205 expanding to the full name of the @emph{target of that rule}.  We cannot
8206 imagine what went on in the minds of Unix @code{make} developers to do
8207 this; it is utterly inconsistent with the normal definition of @code{$*}.
8208 @vindex * @r{(automatic variable), unsupported bizarre usage}
8210 @item
8211 In some Unix @code{make}s, implicit rule search
8212 (@pxref{Implicit Rules, ,Using Implicit Rules}) is apparently done for
8213 @emph{all} targets, not just those without commands.  This means you can
8214 do:@refill
8216 @example
8217 @group
8218 foo.o:
8219         cc -c foo.c
8220 @end group
8221 @end example
8223 @noindent
8224 and Unix @code{make} will intuit that @file{foo.o} depends on
8225 @file{foo.c}.@refill
8227 We feel that such usage is broken.  The dependency properties of
8228 @code{make} are well-defined (for GNU @code{make}, at least),
8229 and doing such a thing simply does not fit the model.@refill
8231 @item
8232 GNU @code{make} does not include any built-in implicit rules for
8233 compiling or preprocessing EFL programs.  If we hear of anyone who is
8234 using EFL, we will gladly add them.
8236 @item
8237 It appears that in SVR4 @code{make}, a suffix rule can be specified with
8238 no commands, and it is treated as if it had empty commands
8239 (@pxref{Empty Commands}).  For example:
8241 @example
8242 .c.a:
8243 @end example
8245 @noindent
8246 will override the built-in @file{.c.a} suffix rule.
8248 We feel that it is cleaner for a rule without commands to always simply
8249 add to the dependency list for the target.  The above example can be
8250 easily rewritten to get the desired behavior in GNU @code{make}:
8252 @example
8253 .c.a: ;
8254 @end example
8256 @item
8257 Some versions of @code{make} invoke the shell with the @samp{-e} flag,
8258 except under @samp{-k} (@pxref{Testing, ,Testing the Compilation of a
8259 Program}).  The @samp{-e} flag tells the shell to exit as soon as any
8260 program it runs returns a nonzero status.  We feel it is cleaner to
8261 write each shell command line to stand on its own and not require this
8262 special treatment.
8263 @end itemize
8265 @comment The makefile standards are in a separate file that is also
8266 @comment included by standards.texi.
8267 @include make-stds.texi
8269 @node Quick Reference, Complex Makefile, Makefile Conventions, Top
8270 @appendix Quick Reference
8272 This appendix summarizes the directives, text manipulation functions,
8273 and special variables which GNU @code{make} understands.
8274 @xref{Special Targets}, @ref{Catalogue of Rules, ,Catalogue of Implicit Rules},
8275 and @ref{Options Summary, ,Summary of Options},
8276 for other summaries.
8278 Here is a summary of the directives GNU @code{make} recognizes:
8280 @table @code
8281 @item define @var{variable}
8282 @itemx endef
8284 Define a multi-line, recursively-expanded variable.@*
8285 @xref{Sequences}.
8287 @item ifdef @var{variable}
8288 @itemx ifndef @var{variable}
8289 @itemx ifeq (@var{a},@var{b})
8290 @itemx ifeq "@var{a}" "@var{b}"
8291 @itemx ifeq '@var{a}' '@var{b}'
8292 @itemx ifneq (@var{a},@var{b})
8293 @itemx ifneq "@var{a}" "@var{b}"
8294 @itemx ifneq '@var{a}' '@var{b}'
8295 @itemx else
8296 @itemx endif
8298 Conditionally evaluate part of the makefile.@*
8299 @xref{Conditionals}.
8301 @item include @var{file}
8303 Include another makefile.@*
8304 @xref{Include, ,Including Other Makefiles}.
8306 @item override @var{variable} = @var{value}
8307 @itemx override @var{variable} := @var{value}
8308 @itemx override @var{variable} += @var{value}
8309 @itemx override define @var{variable}
8310 @itemx endef
8312 Define a variable, overriding any previous definition, even one from
8313 the command line.@*
8314 @xref{Override Directive, ,The @code{override} Directive}.
8316 @item export
8318 Tell @code{make} to export all variables to child processes by default.@*
8319 @xref{Variables/Recursion, , Communicating Variables to a Sub-@code{make}}.
8321 @item export @var{variable}
8322 @itemx export @var{variable} = @var{value}
8323 @itemx export @var{variable} := @var{value}
8324 @itemx export @var{variable} += @var{value}
8325 @itemx unexport @var{variable}
8326 Tell @code{make} whether or not to export a particular variable to child
8327 processes.@*
8328 @xref{Variables/Recursion, , Communicating Variables to a Sub-@code{make}}.
8330 @item vpath @var{pattern} @var{path}
8331 Specify a search path for files matching a @samp{%} pattern.@*
8332 @xref{Selective Search, , The @code{vpath} Directive}.
8334 @item vpath @var{pattern}
8335 Remove all search paths previously specified for @var{pattern}.
8337 @item vpath
8338 Remove all search paths previously specified in any @code{vpath}
8339 directive.
8340 @end table
8342 Here is a summary of the text manipulation functions (@pxref{Functions}):
8344 @table @code
8345 @item $(subst @var{from},@var{to},@var{text})
8346 Replace @var{from} with @var{to} in @var{text}.@*
8347 @xref{Text Functions, , Functions for String Substitution and Analysis}.
8349 @item $(patsubst @var{pattern},@var{replacement},@var{text})
8350 Replace words matching @var{pattern} with @var{replacement} in @var{text}.@*
8351 @xref{Text Functions, , Functions for String Substitution and Analysis}.
8353 @item $(strip @var{string})
8354 Remove excess whitespace characters from @var{string}.@*
8355 @xref{Text Functions, , Functions for String Substitution and Analysis}.
8357 @item $(findstring @var{find},@var{text})
8358 Locate @var{find} in @var{text}.@*
8359 @xref{Text Functions, , Functions for String Substitution and Analysis}.
8361 @item $(filter @var{pattern}@dots{},@var{text})
8362 Select words in @var{text} that match one of the @var{pattern} words.@*
8363 @xref{Text Functions, , Functions for String Substitution and Analysis}.
8365 @item $(filter-out @var{pattern}@dots{},@var{text})
8366 Select words in @var{text} that @emph{do not} match any of the @var{pattern} words.@*
8367 @xref{Text Functions, , Functions for String Substitution and Analysis}.
8369 @item $(sort @var{list})
8370 Sort the words in @var{list} lexicographically, removing duplicates.@*
8371 @xref{Text Functions, , Functions for String Substitution and Analysis}.
8373 @item $(dir @var{names}@dots{})
8374 Extract the directory part of each file name.@*
8375 @xref{Filename Functions, ,Functions for File Names}.
8377 @item $(notdir @var{names}@dots{})
8378 Extract the non-directory part of each file name.@*
8379 @xref{Filename Functions, ,Functions for File Names}.
8381 @item $(suffix @var{names}@dots{})
8382 Extract the suffix (the last @samp{.} and following characters) of each file name.@*
8383 @xref{Filename Functions, ,Functions for File Names}.
8385 @item $(basename @var{names}@dots{})
8386 Extract the base name (name without suffix) of each file name.@*
8387 @xref{Filename Functions, ,Functions for File Names}.
8389 @item $(addsuffix @var{suffix},@var{names}@dots{})
8390 Append @var{suffix} to each word in @var{names}.@*
8391 @xref{Filename Functions, ,Functions for File Names}.
8393 @item $(addprefix @var{prefix},@var{names}@dots{})
8394 Prepend @var{prefix} to each word in @var{names}.@*
8395 @xref{Filename Functions, ,Functions for File Names}.
8397 @item $(join @var{list1},@var{list2})
8398 Join two parallel lists of words.@*
8399 @xref{Filename Functions, ,Functions for File Names}.
8401 @item $(word @var{n},@var{text})
8402 Extract the @var{n}th word (one-origin) of @var{text}.@*
8403 @xref{Filename Functions, ,Functions for File Names}.
8405 @item $(words @var{text})
8406 Count the number of words in @var{text}.@*
8407 @xref{Filename Functions, ,Functions for File Names}.
8409 @item $(firstword @var{names}@dots{})
8410 Extract the first word of @var{names}.@*
8411 @xref{Filename Functions, ,Functions for File Names}.
8413 @item $(wildcard @var{pattern}@dots{})
8414 Find file names matching a shell file name pattern (@emph{not} a
8415 @samp{%} pattern).@*
8416 @xref{Wildcard Function, ,The Function @code{wildcard}}.
8418 @item $(shell @var{command})
8420 Execute a shell command and return its output.@*
8421 @xref{Shell Function, , The @code{shell} Function}.
8423 @item $(origin @var{variable})
8425 Return a string describing how the @code{make} variable @var{variable} was
8426 defined.@*
8427 @xref{Origin Function, , The @code{origin} Function}.
8429 @item $(foreach @var{var},@var{words},@var{text})
8431 Evaluate @var{text} with @var{var} bound to each word in @var{words},
8432 and concatenate the results.@*
8433 @xref{Foreach Function, ,The @code{foreach} Function}.
8434 @end table
8436 Here is a summary of the automatic variables.
8437 @xref{Automatic, ,Automatic Variables},
8438 for full information.
8440 @table @code
8441 @item $@@
8442 The file name of the target.
8444 @item $%
8445 The target member name, when the target is an archive member.
8447 @item $<
8448 The name of the first dependency.
8450 @item $?
8451 The names of all the dependencies that are
8452 newer than the target, with spaces between them.
8453 For dependencies which are archive members, only
8454 the member named is used (@pxref{Archives}).
8456 @item $^
8457 @itemx $+
8458 The names of all the dependencies, with spaces between them.  For
8459 dependencies which are archive members, only the member named is used
8460 (@pxref{Archives}).  The value of @code{$^} omits duplicate
8461 dependencies, while @code{$+} retains them and preserves their order.
8463 @item $*
8464 The stem with which an implicit rule matches
8465 (@pxref{Pattern Match, ,How Patterns Match}).
8467 @item $(@@D)
8468 @itemx $(@@F)
8469 The directory part and the file-within-directory part of @code{$@@}.
8471 @item $(*D)
8472 @itemx $(*F)
8473 The directory part and the file-within-directory part of @code{$*}.
8475 @item $(%D)
8476 @itemx $(%F)
8477 The directory part and the file-within-directory part of @code{$%}.
8479 @item $(<D)
8480 @itemx $(<F)
8481 The directory part and the file-within-directory part of @code{$<}.
8483 @item $(^D)
8484 @itemx $(^F)
8485 The directory part and the file-within-directory part of @code{$^}.
8487 @item $(+D)
8488 @itemx $(+F)
8489 The directory part and the file-within-directory part of @code{$+}.
8491 @item $(?D)
8492 @itemx $(?F)
8493 The directory part and the file-within-directory part of @code{$?}.
8494 @end table
8496 These variables are used specially by GNU @code{make}:
8498 @table @code
8499 @item MAKEFILES
8501 Makefiles to be read on every invocation of @code{make}.@*
8502 @xref{MAKEFILES Variable, ,The Variable @code{MAKEFILES}}.
8504 @item VPATH
8506 Directory search path for files not found in the current directory.@*
8507 @xref{General Search, , @code{VPATH} Search Path for All Dependencies}.
8509 @item SHELL
8511 The name of the system default command interpreter, usually @file{/bin/sh}.
8512 You can set @code{SHELL} in the makefile to change the shell used to run
8513 commands.  @xref{Execution, ,Command Execution}.
8515 @item MAKE
8517 The name with which @code{make} was invoked.
8518 Using this variable in commands has special meaning.
8519 @xref{MAKE Variable, ,How the @code{MAKE} Variable Works}.
8521 @item MAKELEVEL
8523 The number of levels of recursion (sub-@code{make}s).@*
8524 @xref{Variables/Recursion}.
8526 @item MAKEFLAGS
8528 The flags given to @code{make}.  You can set this in the environment or
8529 a makefile to set flags.@*
8530 @xref{Options/Recursion, ,Communicating Options to a Sub-@code{make}}.
8532 @item SUFFIXES
8534 The default list of suffixes before @code{make} reads any makefiles.
8535 @end table
8537 @node Complex Makefile, Concept Index, Quick Reference, Top
8538 @appendix Complex Makefile Example
8540 Here is the makefile for the GNU @code{tar} program.  This is a
8541 moderately complex makefile.
8543 Because it is the first target, the default goal is @samp{all}.  An
8544 interesting feature of this makefile is that @file{testpad.h} is a
8545 source file automatically created by the @code{testpad} program,
8546 itself compiled from @file{testpad.c}.
8548 If you type @samp{make} or @samp{make all}, then @code{make} creates
8549 the @file{tar} executable, the @file{rmt} daemon that provides
8550 remote tape access, and the @file{tar.info} Info file.
8552 If you type @samp{make install}, then @code{make} not only creates
8553 @file{tar}, @file{rmt}, and @file{tar.info}, but also installs
8554 them.
8556 If you type @samp{make clean}, then @code{make} removes the @samp{.o}
8557 files, and the @file{tar}, @file{rmt}, @file{testpad},
8558 @file{testpad.h}, and @file{core} files.
8560 If you type @samp{make distclean}, then @code{make} not only removes
8561 the same files as does @samp{make clean} but also the
8562 @file{TAGS}, @file{Makefile}, and @file{config.status} files.
8563 (Although it is not evident, this makefile (and
8564 @file{config.status}) is generated by the user with the
8565 @code{configure} program, which is provided in the @code{tar}
8566 distribution, but is not shown here.)
8568 If you type @samp{make realclean}, then @code{make} removes the same
8569 files as does @samp{make distclean} and also removes the Info files
8570 generated from @file{tar.texinfo}.
8572 In addition, there are targets @code{shar} and @code{dist} that create
8573 distribution kits.
8575 @example
8576 @group
8577 # Generated automatically from Makefile.in by configure.
8578 # Un*x Makefile for GNU tar program.
8579 # Copyright (C) 1991 Free Software Foundation, Inc.
8580 @end group
8582 @group
8583 # This program is free software; you can redistribute
8584 # it and/or modify it under the terms of the GNU
8585 # General Public License @dots{}
8586 @dots{}
8587 @dots{}
8588 @end group
8590 SHELL = /bin/sh
8592 #### Start of system configuration section. ####
8594 srcdir = .
8596 @group
8597 # If you use gcc, you should either run the
8598 # fixincludes script that comes with it or else use
8599 # gcc with the -traditional option.  Otherwise ioctl
8600 # calls will be compiled incorrectly on some systems.
8601 CC = gcc -O
8602 YACC = bison -y
8603 INSTALL = /usr/local/bin/install -c
8604 INSTALLDATA = /usr/local/bin/install -c -m 644
8605 @end group
8607 # Things you might add to DEFS:
8608 # -DSTDC_HEADERS        If you have ANSI C headers and
8609 #                       libraries.
8610 # -DPOSIX               If you have POSIX.1 headers and
8611 #                       libraries.
8612 # -DBSD42               If you have sys/dir.h (unless
8613 #                       you use -DPOSIX), sys/file.h,
8614 #                       and st_blocks in `struct stat'.
8615 # -DUSG                 If you have System V/ANSI C
8616 #                       string and memory functions
8617 #                       and headers, sys/sysmacros.h,
8618 #                       fcntl.h, getcwd, no valloc,
8619 #                       and ndir.h (unless
8620 #                       you use -DDIRENT).
8621 # -DNO_MEMORY_H         If USG or STDC_HEADERS but do not
8622 #                       include memory.h.
8623 # -DDIRENT              If USG and you have dirent.h
8624 #                       instead of ndir.h.
8625 # -DSIGTYPE=int         If your signal handlers
8626 #                       return int, not void.
8627 # -DNO_MTIO             If you lack sys/mtio.h
8628 #                       (magtape ioctls).
8629 # -DNO_REMOTE           If you do not have a remote shell
8630 #                       or rexec.
8631 # -DUSE_REXEC           To use rexec for remote tape
8632 #                       operations instead of
8633 #                       forking rsh or remsh.
8634 # -DVPRINTF_MISSING     If you lack vprintf function
8635 #                       (but have _doprnt).
8636 # -DDOPRNT_MISSING      If you lack _doprnt function.
8637 #                       Also need to define
8638 #                       -DVPRINTF_MISSING.
8639 # -DFTIME_MISSING       If you lack ftime system call.
8640 # -DSTRSTR_MISSING      If you lack strstr function.
8641 # -DVALLOC_MISSING      If you lack valloc function.
8642 # -DMKDIR_MISSING       If you lack mkdir and
8643 #                       rmdir system calls.
8644 # -DRENAME_MISSING      If you lack rename system call.
8645 # -DFTRUNCATE_MISSING   If you lack ftruncate
8646 #                       system call.
8647 # -DV7                  On Version 7 Unix (not
8648 #                       tested in a long time).
8649 # -DEMUL_OPEN3          If you lack a 3-argument version
8650 #                       of open, and want to emulate it
8651 #                       with system calls you do have.
8652 # -DNO_OPEN3            If you lack the 3-argument open
8653 #                       and want to disable the tar -k
8654 #                       option instead of emulating open.
8655 # -DXENIX               If you have sys/inode.h
8656 #                       and need it 94 to be included.
8658 DEFS =  -DSIGTYPE=int -DDIRENT -DSTRSTR_MISSING \
8659         -DVPRINTF_MISSING -DBSD42
8660 # Set this to rtapelib.o unless you defined NO_REMOTE,
8661 # in which case make it empty.
8662 RTAPELIB = rtapelib.o
8663 LIBS =
8664 DEF_AR_FILE = /dev/rmt8
8665 DEFBLOCKING = 20
8667 @group
8668 CDEBUG = -g
8669 CFLAGS = $(CDEBUG) -I. -I$(srcdir) $(DEFS) \
8670         -DDEF_AR_FILE=\"$(DEF_AR_FILE)\" \
8671         -DDEFBLOCKING=$(DEFBLOCKING)
8672 LDFLAGS = -g
8673 @end group
8675 @group
8676 prefix = /usr/local
8677 # Prefix for each installed program,
8678 # normally empty or `g'.
8679 binprefix =
8681 # The directory to install tar in.
8682 bindir = $(prefix)/bin
8684 # The directory to install the info files in.
8685 infodir = $(prefix)/info
8686 @end group
8688 #### End of system configuration section. ####
8690 SRC1 =  tar.c create.c extract.c buffer.c \
8691         getoldopt.c update.c gnu.c mangle.c
8692 SRC2 =  version.c list.c names.c diffarch.c \
8693         port.c wildmat.c getopt.c
8694 SRC3 =  getopt1.c regex.c getdate.y
8695 SRCS =  $(SRC1) $(SRC2) $(SRC3)
8696 OBJ1 =  tar.o create.o extract.o buffer.o \
8697         getoldopt.o update.o gnu.o mangle.o
8698 OBJ2 =  version.o list.o names.o diffarch.o \
8699         port.o wildmat.o getopt.o
8700 OBJ3 =  getopt1.o regex.o getdate.o $(RTAPELIB)
8701 OBJS =  $(OBJ1) $(OBJ2) $(OBJ3)
8702 @group
8703 AUX =   README COPYING ChangeLog Makefile.in  \
8704         makefile.pc configure configure.in \
8705         tar.texinfo tar.info* texinfo.tex \
8706         tar.h port.h open3.h getopt.h regex.h \
8707         rmt.h rmt.c rtapelib.c alloca.c \
8708         msd_dir.h msd_dir.c tcexparg.c \
8709         level-0 level-1 backup-specs testpad.c
8710 @end group
8712 all:    tar rmt tar.info
8714 @group
8715 tar:    $(OBJS)
8716         $(CC) $(LDFLAGS) -o $@@ $(OBJS) $(LIBS)
8717 @end group
8719 @group
8720 rmt:    rmt.c
8721         $(CC) $(CFLAGS) $(LDFLAGS) -o $@@ rmt.c
8722 @end group
8724 @group
8725 tar.info: tar.texinfo
8726         makeinfo tar.texinfo
8727 @end group
8729 @group
8730 install: all
8731         $(INSTALL) tar $(bindir)/$(binprefix)tar
8732         -test ! -f rmt || $(INSTALL) rmt /etc/rmt
8733         $(INSTALLDATA) $(srcdir)/tar.info* $(infodir)
8734 @end group
8736 @group
8737 $(OBJS): tar.h port.h testpad.h
8738 regex.o buffer.o tar.o: regex.h
8739 # getdate.y has 8 shift/reduce conflicts.
8740 @end group
8742 @group
8743 testpad.h: testpad
8744         ./testpad
8745 @end group
8747 @group
8748 testpad: testpad.o
8749         $(CC) -o $@@ testpad.o
8750 @end group
8752 @group
8753 TAGS:   $(SRCS)
8754         etags $(SRCS)
8755 @end group
8757 @group
8758 clean:
8759         rm -f *.o tar rmt testpad testpad.h core
8760 @end group
8762 @group
8763 distclean: clean
8764         rm -f TAGS Makefile config.status
8765 @end group
8767 @group
8768 realclean: distclean
8769         rm -f tar.info*
8770 @end group
8772 @group
8773 shar: $(SRCS) $(AUX)
8774         shar $(SRCS) $(AUX) | compress \
8775           > tar-`sed -e '/version_string/!d' \
8776                      -e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
8777                      -e q
8778                      version.c`.shar.Z
8779 @end group
8781 @group
8782 dist: $(SRCS) $(AUX)
8783         echo tar-`sed \
8784              -e '/version_string/!d' \
8785              -e 's/[^0-9.]*\([0-9.]*\).*/\1/' \
8786              -e q
8787              version.c` > .fname
8788         -rm -rf `cat .fname`
8789         mkdir `cat .fname`
8790         ln $(SRCS) $(AUX) `cat .fname`
8791         -rm -rf `cat .fname` .fname
8792         tar chZf `cat .fname`.tar.Z `cat .fname`
8793 @end group
8795 @group
8796 tar.zoo: $(SRCS) $(AUX)
8797         -rm -rf tmp.dir
8798         -mkdir tmp.dir
8799         -rm tar.zoo
8800         for X in $(SRCS) $(AUX) ; do \
8801             echo $$X ; \
8802             sed 's/$$/^M/' $$X \
8803             > tmp.dir/$$X ; done
8804         cd tmp.dir ; zoo aM ../tar.zoo *
8805         -rm -rf tmp.dir
8806 @end group
8807 @end example
8809 @node Concept Index, Name Index, Complex Makefile, Top
8810 @unnumbered Index of Concepts
8812 @printindex cp
8814 @node Name Index,  , Concept Index, Top
8815 @unnumbered Index of Functions, Variables, & Directives
8817 @printindex fn
8819 @summarycontents
8820 @contents
8821 @bye