home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / gnu / info / make.info-2 (.txt) < prev    next >
GNU Info File  |  1994-11-12  |  49KB  |  885 lines

  1. This is Info file make.info, produced by Makeinfo-1.55 from the input
  2. file ./make.texinfo.
  3.    This file documents the GNU Make utility, which determines
  4. automatically which pieces of a large program need to be recompiled,
  5. and issues the commands to recompile them.
  6.    This is Edition 0.47, last updated 1 November 1994, of `The GNU Make
  7. Manual', for `make', Version 3.72 Beta.
  8.    Copyright (C) 1988, '89, '90, '91, '92, '93, '94 Free Software
  9. Foundation, Inc.
  10.    Permission is granted to make and distribute verbatim copies of this
  11. manual provided the copyright notice and this permission notice are
  12. preserved on all copies.
  13.    Permission is granted to copy and distribute modified versions of
  14. this manual under the conditions for verbatim copying, provided that
  15. the entire resulting derived work is distributed under the terms of a
  16. permission notice identical to this one.
  17.    Permission is granted to copy and distribute translations of this
  18. manual into another language, under the above conditions for modified
  19. versions, except that this permission notice may be stated in a
  20. translation approved by the Free Software Foundation.
  21. File: make.info,  Node: Rule Example,  Next: Rule Syntax,  Up: Rules
  22. Rule Example
  23. ============
  24.    Here is an example of a rule:
  25.      foo.o : foo.c defs.h       # module for twiddling the frobs
  26.              cc -c -g foo.c
  27.    Its target is `foo.o' and its dependencies are `foo.c' and `defs.h'.
  28. It has one command, which is `cc -c -g foo.c'.  The command line
  29. starts with a tab to identify it as a command.
  30.    This rule says two things:
  31.    * How to decide whether `foo.o' is out of date: it is out of date if
  32.      it does not exist, or if either `foo.c' or `defs.h' is more recent
  33.      than it.
  34.    * How to update the file `foo.o': by running `cc' as stated.  The
  35.      command does not explicitly mention `defs.h', but we presume that
  36.      `foo.c' includes it, and that that is why `defs.h' was added to
  37.      the dependencies.
  38. File: make.info,  Node: Rule Syntax,  Next: Wildcards,  Prev: Rule Example,  Up: Rules
  39. Rule Syntax
  40. ===========
  41.    In general, a rule looks like this:
  42.      TARGETS : DEPENDENCIES
  43.              COMMAND
  44.              ...
  45. or like this:
  46.      TARGETS : DEPENDENCIES ; COMMAND
  47.              COMMAND
  48.              ...
  49.    The TARGETS are file names, separated by spaces.  Wildcard
  50. characters may be used (*note Using Wildcard Characters in File Names:
  51. Wildcards.) and a name of the form `A(M)' represents member M in
  52. archive file A (*note Archive Members as Targets: Archive Members.).
  53. Usually there is only one target per rule, but occasionally there is a
  54. reason to have more (*note Multiple Targets in a Rule: Multiple
  55. Targets.).
  56.    The COMMAND lines start with a tab character.  The first command may
  57. appear on the line after the dependencies, with a tab character, or may
  58. appear on the same line, with a semicolon.  Either way, the effect is
  59. the same.  *Note Writing the Commands in Rules: Commands.
  60.    Because dollar signs are used to start variable references, if you
  61. really want a dollar sign in a rule you must write two of them, `$$'
  62. (*note How to Use Variables: Using Variables.).  You may split a long
  63. line by inserting a backslash followed by a newline, but this is not
  64. required, as `make' places no limit on the length of a line in a
  65. makefile.
  66.    A rule tells `make' two things: when the targets are out of date,
  67. and how to update them when necessary.
  68.    The criterion for being out of date is specified in terms of the
  69. DEPENDENCIES, which consist of file names separated by spaces.
  70. (Wildcards and archive members (*note Archives::.) are allowed here
  71. too.) A target is out of date if it does not exist or if it is older
  72. than any of the dependencies (by comparison of last-modification
  73. times).  The idea is that the contents of the target file are computed
  74. based on information in the dependencies, so if any of the dependencies
  75. changes, the contents of the existing target file are no longer
  76. necessarily valid.
  77.    How to update is specified by COMMANDS.  These are lines to be
  78. executed by the shell (normally `sh'), but with some extra features
  79. (*note Writing the Commands in Rules: Commands.).
  80. File: make.info,  Node: Wildcards,  Next: Directory Search,  Prev: Rule Syntax,  Up: Rules
  81. Using Wildcard Characters in File Names
  82. =======================================
  83.    A single file name can specify many files using "wildcard
  84. characters".  The wildcard characters in `make' are `*', `?' and
  85. `[...]', the same as in the Bourne shell.  For example, `*.c' specifies
  86. a list of all the files (in the working directory) whose names end in
  87. `.c'.
  88.    The character `~' at the beginning of a file name also has special
  89. significance.  If alone, or followed by a slash, it represents your home
  90. directory.  For example `~/bin' expands to `/home/you/bin'.  If the `~'
  91. is followed by a word, the string represents the home directory of the
  92. user named by that word.  For example `~john/bin' expands to
  93. `/home/john/bin'.
  94.    Wildcard expansion happens automatically in targets, in dependencies,
  95. and in commands (where the shell does the expansion).  In other
  96. contexts, wildcard expansion happens only if you request it explicitly
  97. with the `wildcard' function.
  98.    The special significance of a wildcard character can be turned off by
  99. preceding it with a backslash.  Thus, `foo\*bar' would refer to a
  100. specific file whose name consists of `foo', an asterisk, and `bar'.
  101. * Menu:
  102. * Wildcard Examples::           Several examples
  103. * Wildcard Pitfall::            Problems to avoid.
  104. * Wildcard Function::           How to cause wildcard expansion where
  105.                                   it does not normally take place.
  106. File: make.info,  Node: Wildcard Examples,  Next: Wildcard Pitfall,  Up: Wildcards
  107. Wildcard Examples
  108. -----------------
  109.    Wildcards can be used in the commands of a rule, where they are
  110. expanded by the shell.  For example, here is a rule to delete all the
  111. object files:
  112.      clean:
  113.              rm -f *.o
  114.    Wildcards are also useful in the dependencies of a rule.  With the
  115. following rule in the makefile, `make print' will print all the `.c'
  116. files that have changed since the last time you printed them:
  117.      print: *.c
  118.              lpr -p $?
  119.              touch print
  120. This rule uses `print' as an empty target file; see *Note Empty Target
  121. Files to Record Events: Empty Targets.  (The automatic variable `$?' is
  122. used to print only those files that have changed; see *Note Automatic
  123. Variables: Automatic.)
  124.    Wildcard expansion does not happen when you define a variable.
  125. Thus, if you write this:
  126.      objects = *.o
  127. then the value of the variable `objects' is the actual string `*.o'.
  128. However, if you use the value of `objects' in a target, dependency or
  129. command, wildcard expansion will take place at that time.  To set
  130. `objects' to the expansion, instead use:
  131.      objects := $(wildcard *.o)
  132. *Note Wildcard Function::.
  133. File: make.info,  Node: Wildcard Pitfall,  Next: Wildcard Function,  Prev: Wildcard Examples,  Up: Wildcards
  134. Pitfalls of Using Wildcards
  135. ---------------------------
  136.    Now here is an example of a naive way of using wildcard expansion,
  137. that does not do what you would intend.  Suppose you would like to say
  138. that the executable file `foo' is made from all the object files in the
  139. directory, and you write this:
  140.      objects = *.o
  141.      
  142.      foo : $(objects)
  143.              cc -o foo $(CFLAGS) $(objects)
  144. The value of `objects' is the actual string `*.o'.  Wildcard expansion
  145. happens in the rule for `foo', so that each *existing* `.o' file
  146. becomes a dependency of `foo' and will be recompiled if necessary.
  147.    But what if you delete all the `.o' files?  When a wildcard matches
  148. no files, it is left as it is, so then `foo' will depend on the
  149. oddly-named file `*.o'.  Since no such file is likely to exist, `make'
  150. will give you an error saying it cannot figure out how to make `*.o'.
  151. This is not what you want!
  152.    Actually it is possible to obtain the desired result with wildcard
  153. expansion, but you need more sophisticated techniques, including the
  154. `wildcard' function and string substitution.  *Note The Function
  155. `wildcard': Wildcard Function.
  156. File: make.info,  Node: Wildcard Function,  Prev: Wildcard Pitfall,  Up: Wildcards
  157. The Function `wildcard'
  158. -----------------------
  159.    Wildcard expansion happens automatically in rules.  But wildcard
  160. expansion does not normally take place when a variable is set, or
  161. inside the arguments of a function.  If you want to do wildcard
  162. expansion in such places, you need to use the `wildcard' function, like
  163. this:
  164.      $(wildcard PATTERN...)
  165. This string, used anywhere in a makefile, is replaced by a
  166. space-separated list of names of existing files that match one of the
  167. given file name patterns.  If no existing file name matches a pattern,
  168. then that pattern is omitted from the output of the `wildcard'
  169. function.  Note that this is different from how unmatched wildcards
  170. behave in rules, where they are used verbatim rather than ignored
  171. (*note Wildcard Pitfall::.).
  172.    One use of the `wildcard' function is to get a list of all the C
  173. source files in a directory, like this:
  174.      $(wildcard *.c)
  175.    We can change the list of C source files into a list of object files
  176. by replacing the `.o' suffix with `.c' in the result, like this:
  177.      $(patsubst %.c,%.o,$(wildcard *.c))
  178. (Here we have used another function, `patsubst'.  *Note Functions for
  179. String Substitution and Analysis: Text Functions.)
  180.    Thus, a makefile to compile all C source files in the directory and
  181. then link them together could be written as follows:
  182.      objects := $(patsubst %.c,%.o,$(wildcard *.c))
  183.      
  184.      foo : $(objects)
  185.              cc -o foo $(objects)
  186. (This takes advantage of the implicit rule for compiling C programs, so
  187. there is no need to write explicit rules for compiling the files.
  188. *Note The Two Flavors of Variables: Flavors, for an explanation of
  189. `:=', which is a variant of `='.)
  190. File: make.info,  Node: Directory Search,  Next: Phony Targets,  Prev: Wildcards,  Up: Rules
  191. Searching Directories for Dependencies
  192. ======================================
  193.    For large systems, it is often desirable to put sources in a separate
  194. directory from the binaries.  The "directory search" features of `make'
  195. facilitate this by searching several directories automatically to find
  196. a dependency.  When you redistribute the files among directories, you
  197. do not need to change the individual rules, just the search paths.
  198. * Menu:
  199. * General Search::              Specifying a search path that applies
  200.                                   to every dependency.
  201. * Selective Search::            Specifying a search path
  202.                                   for a specified class of names.
  203. * Commands/Search::             How to write shell commands that work together
  204.                                   with search paths.
  205. * Implicit/Search::             How search paths affect implicit rules.
  206. * Libraries/Search::            Directory search for link libraries.
  207. File: make.info,  Node: General Search,  Next: Selective Search,  Up: Directory Search
  208. `VPATH': Search Path for All Dependencies
  209. -----------------------------------------
  210.    The value of the `make' variable `VPATH' specifies a list of
  211. directories that `make' should search.  Most often, the directories are
  212. expected to contain dependency files that are not in the current
  213. directory; however, `VPATH' specifies a search list that `make' applies
  214. for all files, including files which are targets of rules.
  215.    Thus, if a file that is listed as a target or dependency does not
  216. exist in the current directory, `make' searches the directories listed
  217. in `VPATH' for a file with that name.  If a file is found in one of
  218. them, that file becomes the dependency.  Rules may then specify the
  219. names of source files in the dependencies as if they all existed in the
  220. current directory.  *Note Writing Shell Commands with Directory Search:
  221. Commands/Search.
  222.    In the `VPATH' variable, directory names are separated by colons or
  223. blanks.  The order in which directories are listed is the order followed
  224. by `make' in its search.
  225.    For example,
  226.      VPATH = src:../headers
  227. specifies a path containing two directories, `src' and `../headers',
  228. which `make' searches in that order.
  229.    With this value of `VPATH', the following rule,
  230.      foo.o : foo.c
  231. is interpreted as if it were written like this:
  232.      foo.o : src/foo.c
  233. assuming the file `foo.c' does not exist in the current directory but
  234. is found in the directory `src'.
  235. File: make.info,  Node: Selective Search,  Next: Commands/Search,  Prev: General Search,  Up: Directory Search
  236. The `vpath' Directive
  237. ---------------------
  238.    Similar to the `VPATH' variable but more selective is the `vpath'
  239. directive (note lower case), which allows you to specify a search path
  240. for a particular class of file names, those that match a particular
  241. pattern.  Thus you can supply certain search directories for one class
  242. of file names and other directories (or none) for other file names.
  243.    There are three forms of the `vpath' directive:
  244. `vpath PATTERN DIRECTORIES'
  245.      Specify the search path DIRECTORIES for file names that match
  246.      PATTERN.
  247.      The search path, DIRECTORIES, is a list of directories to be
  248.      searched, separated by colons or blanks, just like the search path
  249.      used in the `VPATH' variable.
  250. `vpath PATTERN'
  251.      Clear out the search path associated with PATTERN.
  252. `vpath'
  253.      Clear all search paths previously specified with `vpath'
  254.      directives.
  255.    A `vpath' pattern is a string containing a `%' character.  The
  256. string must match the file name of a dependency that is being searched
  257. for, the `%' character matching any sequence of zero or more characters
  258. (as in pattern rules; *note Defining and Redefining Pattern Rules:
  259. Pattern Rules.).  For example, `%.h' matches files that end in `.h'.
  260. (If there is no `%', the pattern must match the dependency exactly,
  261. which is not useful very often.)
  262.    `%' characters in a `vpath' directive's pattern can be quoted with
  263. preceding backslashes (`\').  Backslashes that would otherwise quote
  264. `%' characters can be quoted with more backslashes.  Backslashes that
  265. quote `%' characters or other backslashes are removed from the pattern
  266. before it is compared to file names.  Backslashes that are not in
  267. danger of quoting `%' characters go unmolested.
  268.    When a dependency fails to exist in the current directory, if the
  269. PATTERN in a `vpath' directive matches the name of the dependency file,
  270. then the DIRECTORIES in that directive are searched just like (and
  271. before) the directories in the `VPATH' variable.
  272.    For example,
  273.      vpath %.h ../headers
  274. tells `make' to look for any dependency whose name ends in `.h' in the
  275. directory `../headers' if the file is not found in the current
  276. directory.
  277.    If several `vpath' patterns match the dependency file's name, then
  278. `make' processes each matching `vpath' directive one by one, searching
  279. all the directories mentioned in each directive.  `make' handles
  280. multiple `vpath' directives in the order in which they appear in the
  281. makefile; multiple directives with the same pattern are independent of
  282. each other.
  283.    Thus,
  284.      vpath %.c foo
  285.      vpath %   blish
  286.      vpath %.c bar
  287. will look for a file ending in `.c' in `foo', then `blish', then `bar',
  288. while
  289.      vpath %.c foo:bar
  290.      vpath %   blish
  291. will look for a file ending in `.c' in `foo', then `bar', then `blish'.
  292. File: make.info,  Node: Commands/Search,  Next: Implicit/Search,  Prev: Selective Search,  Up: Directory Search
  293. Writing Shell Commands with Directory Search
  294. --------------------------------------------
  295.    When a dependency is found in another directory through directory
  296. search, this cannot change the commands of the rule; they will execute
  297. as written.  Therefore, you must write the commands with care so that
  298. they will look for the dependency in the directory where `make' finds
  299.    This is done with the "automatic variables" such as `$^' (*note
  300. Automatic Variables: Automatic.).  For instance, the value of `$^' is a
  301. list of all the dependencies of the rule, including the names of the
  302. directories in which they were found, and the value of `$@' is the
  303. target.  Thus:
  304.      foo.o : foo.c
  305.              cc -c $(CFLAGS) $^ -o $@
  306. (The variable `CFLAGS' exists so you can specify flags for C
  307. compilation by implicit rules; we use it here for consistency so it will
  308. affect all C compilations uniformly; *note Variables Used by Implicit
  309. Rules: Implicit Variables..)
  310.    Often the dependencies include header files as well, which you do not
  311. want to mention in the commands.  The automatic variable `$<' is just
  312. the first dependency:
  313.      VPATH = src:../headers
  314.      foo.o : foo.c defs.h hack.h
  315.              cc -c $(CFLAGS) $< -o $@
  316. File: make.info,  Node: Implicit/Search,  Next: Libraries/Search,  Prev: Commands/Search,  Up: Directory Search
  317. Directory Search and Implicit Rules
  318. -----------------------------------
  319.    The search through the directories specified in `VPATH' or with
  320. `vpath' also happens during consideration of implicit rules (*note
  321. Using Implicit Rules: Implicit Rules.).
  322.    For example, when a file `foo.o' has no explicit rule, `make'
  323. considers implicit rules, such as the built-in rule to compile `foo.c'
  324. if that file exists.  If such a file is lacking in the current
  325. directory, the appropriate directories are searched for it.  If `foo.c'
  326. exists (or is mentioned in the makefile) in any of the directories, the
  327. implicit rule for C compilation is applied.
  328.    The commands of implicit rules normally use automatic variables as a
  329. matter of necessity; consequently they will use the file names found by
  330. directory search with no extra effort.
  331. File: make.info,  Node: Libraries/Search,  Prev: Implicit/Search,  Up: Directory Search
  332. Directory Search for Link Libraries
  333. -----------------------------------
  334.    Directory search applies in a special way to libraries used with the
  335. linker.  This special feature comes into play when you write a
  336. dependency whose name is of the form `-lNAME'.  (You can tell something
  337. strange is going on here because the dependency is normally the name of
  338. a file, and the *file name* of the library looks like `libNAME.a', not
  339. like `-lNAME'.)
  340.    When a dependency's name has the form `-lNAME', `make' handles it
  341. specially by searching for the file `libNAME.a' in the current
  342. directory, in directories specified by matching `vpath' search paths
  343. and the `VPATH' search path, and then in the directories `/lib',
  344. `/usr/lib', and `PREFIX/lib' (normally `/usr/local/lib').
  345.    For example,
  346.      foo : foo.c -lcurses
  347.              cc $^ -o $@
  348. would cause the command `cc foo.c /usr/lib/libcurses.a -o foo' to be
  349. executed when `foo' is older than `foo.c' or than
  350. `/usr/lib/libcurses.a'.
  351. File: make.info,  Node: Phony Targets,  Next: Force Targets,  Prev: Directory Search,  Up: Rules
  352. Phony Targets
  353. =============
  354.    A phony target is one that is not really the name of a file.  It is
  355. just a name for some commands to be executed when you make an explicit
  356. request.  There are two reasons to use a phony target: to avoid a
  357. conflict with a file of the same name, and to improve performance.
  358.    If you write a rule whose commands will not create the target file,
  359. the commands will be executed every time the target comes up for
  360. remaking.  Here is an example:
  361.      clean:
  362.              rm *.o temp
  363. Because the `rm' command does not create a file named `clean', probably
  364. no such file will ever exist.  Therefore, the `rm' command will be
  365. executed every time you say `make clean'.
  366.    The phony target will cease to work if anything ever does create a
  367. file named `clean' in this directory.  Since it has no dependencies, the
  368. file `clean' would inevitably be considered up to date, and its
  369. commands would not be executed.  To avoid this problem, you can
  370. explicitly declare the target to be phony, using the special target
  371. `.PHONY' (*note Special Built-in Target Names: Special Targets.) as
  372. follows:
  373.      .PHONY : clean
  374. Once this is done, `make clean' will run the commands regardless of
  375. whether there is a file named `clean'.
  376.    Since it knows that phony targets do not name actual files that
  377. could be remade from other files, `make' skips the implicit rule search
  378. for phony targets (*note Implicit Rules::.).  This is why declaring a
  379. target phony is good for performance, even if you are not worried about
  380. the actual file existing.
  381.    Thus, you first write the line that states that `clean' is a phony
  382. target, then you write the rule, like this:
  383.      .PHONY: clean
  384.      clean:
  385.              rm *.o temp
  386.    A phony target should not be a dependency of a real target file; if
  387. it is, its commands are run every time `make' goes to update that file.
  388. As long as a phony target is never a dependency of a real target, the
  389. phony target commands will be executed only when the phony target is a
  390. specified goal (*note Arguments to Specify the Goals: Goals.).
  391.    Phony targets can have dependencies.  When one directory contains
  392. multiple programs, it is most convenient to describe all of the
  393. programs in one makefile `./Makefile'.  Since the target remade by
  394. default will be the first one in the makefile, it is common to make
  395. this a phony target named `all' and give it, as dependencies, all the
  396. individual programs.  For example:
  397.      all : prog1 prog2 prog3
  398.      .PHONY : all
  399.      
  400.      prog1 : prog1.o utils.o
  401.              cc -o prog1 prog1.o utils.o
  402.      
  403.      prog2 : prog2.o
  404.              cc -o prog2 prog2.o
  405.      
  406.      prog3 : prog3.o sort.o utils.o
  407.              cc -o prog3 prog3.o sort.o utils.o
  408. Now you can say just `make' to remake all three programs, or specify as
  409. arguments the ones to remake (as in `make prog1 prog3').
  410.    When one phony target is a dependency of another, it serves as a
  411. subroutine of the other.  For example, here `make cleanall' will delete
  412. the object files, the difference files, and the file `program':
  413.      .PHONY: cleanall cleanobj cleandiff
  414.      
  415.      cleanall : cleanobj cleandiff
  416.              rm program
  417.      
  418.      cleanobj :
  419.              rm *.o
  420.      
  421.      cleandiff :
  422.              rm *.diff
  423. File: make.info,  Node: Force Targets,  Next: Empty Targets,  Prev: Phony Targets,  Up: Rules
  424. Rules without Commands or Dependencies
  425. ======================================
  426.    If a rule has no dependencies or commands, and the target of the rule
  427. is a nonexistent file, then `make' imagines this target to have been
  428. updated whenever its rule is run.  This implies that all targets
  429. depending on this one will always have their commands run.
  430.    An example will illustrate this:
  431.      clean: FORCE
  432.              rm $(objects)
  433.      FORCE:
  434.    Here the target `FORCE' satisfies the special conditions, so the
  435. target `clean' that depends on it is forced to run its commands.  There
  436. is nothing special about the name `FORCE', but that is one name
  437. commonly used this way.
  438.    As you can see, using `FORCE' this way has the same results as using
  439. `.PHONY: clean'.
  440.    Using `.PHONY' is more explicit and more efficient.  However, other
  441. versions of `make' do not support `.PHONY'; thus `FORCE' appears in
  442. many makefiles.  *Note Phony Targets::.
  443. File: make.info,  Node: Empty Targets,  Next: Special Targets,  Prev: Force Targets,  Up: Rules
  444. Empty Target Files to Record Events
  445. ===================================
  446.    The "empty target" is a variant of the phony target; it is used to
  447. hold commands for an action that you request explicitly from time to
  448. time.  Unlike a phony target, this target file can really exist; but
  449. the file's contents do not matter, and usually are empty.
  450.    The purpose of the empty target file is to record, with its
  451. last-modification time, when the rule's commands were last executed.  It
  452. does so because one of the commands is a `touch' command to update the
  453. target file.
  454.    The empty target file must have some dependencies.  When you ask to
  455. remake the empty target, the commands are executed if any dependency is
  456. more recent than the target; in other words, if a dependency has
  457. changed since the last time you remade the target.  Here is an example:
  458.      print: foo.c bar.c
  459.              lpr -p $?
  460.              touch print
  461. With this rule, `make print' will execute the `lpr' command if either
  462. source file has changed since the last `make print'.  The automatic
  463. variable `$?' is used to print only those files that have changed
  464. (*note Automatic Variables: Automatic.).
  465. File: make.info,  Node: Special Targets,  Next: Multiple Targets,  Prev: Empty Targets,  Up: Rules
  466. Special Built-in Target Names
  467. =============================
  468.    Certain names have special meanings if they appear as targets.
  469. `.PHONY'
  470.      The dependencies of the special target `.PHONY' are considered to
  471.      be phony targets.  When it is time to consider such a target,
  472.      `make' will run its commands unconditionally, regardless of
  473.      whether a file with that name exists or what its last-modification
  474.      time is.  *Note Phony Targets: Phony Targets.
  475. `.SUFFIXES'
  476.      The dependencies of the special target `.SUFFIXES' are the list of
  477.      suffixes to be used in checking for suffix rules.  *Note
  478.      Old-Fashioned Suffix Rules: Suffix Rules.
  479. `.DEFAULT'
  480.      The commands specified for `.DEFAULT' are used for any target for
  481.      which no rules are found (either explicit rules or implicit rules).
  482.      *Note Last Resort::.  If `.DEFAULT' commands are specified, every
  483.      file mentioned as a dependency, but not as a target in a rule,
  484.      will have these commands executed on its behalf.  *Note Implicit
  485.      Rule Search Algorithm: Search Algorithm.
  486. `.PRECIOUS'
  487.      The targets which `.PRECIOUS' depends on are given the following
  488.      special treatment: if `make' is killed or interrupted during the
  489.      execution of their commands, the target is not deleted.  *Note
  490.      Interrupting or Killing `make': Interrupts.  Also, if the target
  491.      is an intermediate file, it will not be deleted after it is no
  492.      longer needed, as is normally done.  *Note Chains of Implicit
  493.      Rules: Chained Rules.
  494.      You can also list the target pattern of an implicit rule (such as
  495.      `%.o') as a dependency file of the special target `.PRECIOUS' to
  496.      preserve intermediate files created by rules whose target patterns
  497.      match that file's name.
  498. `.IGNORE'
  499.      If you specify dependencies for `.IGNORE', then `make' will ignore
  500.      errors in execution of the commands run for those particular
  501.      files.  The commands for `.IGNORE' are not meaningful.
  502.      If mentioned as a target with no dependencies, `.IGNORE' says to
  503.      ignore errors in execution of commands for all files.  This usage
  504.      of `.IGNORE' is supported only for historical compatibility.  Since
  505.      this affects every command in the makefile, it is not very useful;
  506.      we recommend you use the more selective ways to ignore errors in
  507.      specific commands.  *Note Errors in Commands: Errors.
  508. `.SILENT'
  509.      If you specify dependencies for `.SILENT', then `make' will not
  510.      the print commands to remake those particular files before
  511.      executing them.  The commands for `.SILENT' are not meaningful.
  512.      If mentioned as a target with no dependencies, `.SILENT' says not
  513.      to print any commands before executing them.  This usage of
  514.      `.SILENT' is supported only for historical compatibility.  We
  515.      recommend you use the more selective ways to silence specific
  516.      commands.  *Note Command Echoing: Echoing.  If you want to silence
  517.      all commands for a particular run of `make', use the `-s' or
  518.      `--silent' option (*note Options Summary::.).
  519. `.EXPORT_ALL_VARIABLES'
  520.      Simply by being mentioned as a target, this tells `make' to export
  521.      all variables to child processes by default.  *Note Communicating
  522.      Variables to a Sub-`make': Variables/Recursion.
  523.    Any defined implicit rule suffix also counts as a special target if
  524. it appears as a target, and so does the concatenation of two suffixes,
  525. such as `.c.o'.  These targets are suffix rules, an obsolete way of
  526. defining implicit rules (but a way still widely used).  In principle,
  527. any target name could be special in this way if you break it in two and
  528. add both pieces to the suffix list.  In practice, suffixes normally
  529. begin with `.', so these special target names also begin with `.'.
  530. *Note Old-Fashioned Suffix Rules: Suffix Rules.
  531. File: make.info,  Node: Multiple Targets,  Next: Multiple Rules,  Prev: Special Targets,  Up: Rules
  532. Multiple Targets in a Rule
  533. ==========================
  534.    A rule with multiple targets is equivalent to writing many rules,
  535. each with one target, and all identical aside from that.  The same
  536. commands apply to all the targets, but their effects may vary because
  537. you can substitute the actual target name into the command using `$@'.
  538. The rule contributes the same dependencies to all the targets also.
  539.    This is useful in two cases.
  540.    * You want just dependencies, no commands.  For example:
  541.           kbd.o command.o files.o: command.h
  542.      gives an additional dependency to each of the three object files
  543.      mentioned.
  544.    * Similar commands work for all the targets.  The commands do not
  545.      need to be absolutely identical, since the automatic variable `$@'
  546.      can be used to substitute the particular target to be remade into
  547.      the commands (*note Automatic Variables: Automatic.).  For example:
  548.           bigoutput littleoutput : text.g
  549.                   generate text.g -$(subst output,,$@) > $@
  550.      is equivalent to
  551.           bigoutput : text.g
  552.                   generate text.g -big > bigoutput
  553.           littleoutput : text.g
  554.                   generate text.g -little > littleoutput
  555.      Here we assume the hypothetical program `generate' makes two types
  556.      of output, one if given `-big' and one if given `-little'.  *Note
  557.      Functions for String Substitution and Analysis: Text Functions,
  558.      for an explanation of the `subst' function.
  559.    Suppose you would like to vary the dependencies according to the
  560. target, much as the variable `$@' allows you to vary the commands.  You
  561. cannot do this with multiple targets in an ordinary rule, but you can
  562. do it with a "static pattern rule".  *Note Static Pattern Rules: Static
  563. Pattern.
  564. File: make.info,  Node: Multiple Rules,  Next: Static Pattern,  Prev: Multiple Targets,  Up: Rules
  565. Multiple Rules for One Target
  566. =============================
  567.    One file can be the target of several rules.  All the dependencies
  568. mentioned in all the rules are merged into one list of dependencies for
  569. the target.  If the target is older than any dependency from any rule,
  570. the commands are executed.
  571.    There can only be one set of commands to be executed for a file.  If
  572. more than one rule gives commands for the same file, `make' uses the
  573. last set given and prints an error message.  (As a special case, if the
  574. file's name begins with a dot, no error message is printed.  This odd
  575. behavior is only for compatibility with other implementations of
  576. `make'.) There is no reason to write your makefiles this way; that is
  577. why `make' gives you an error message.
  578.    An extra rule with just dependencies can be used to give a few extra
  579. dependencies to many files at once.  For example, one usually has a
  580. variable named `objects' containing a list of all the compiler output
  581. files in the system being made.  An easy way to say that all of them
  582. must be recompiled if `config.h' changes is to write the following:
  583.      objects = foo.o bar.o
  584.      foo.o : defs.h
  585.      bar.o : defs.h test.h
  586.      $(objects) : config.h
  587.    This could be inserted or taken out without changing the rules that
  588. really specify how to make the object files, making it a convenient
  589. form to use if you wish to add the additional dependency intermittently.
  590.    Another wrinkle is that the additional dependencies could be
  591. specified with a variable that you set with a command argument to `make'
  592. (*note Overriding Variables: Overriding.).  For example,
  593.      extradeps=
  594.      $(objects) : $(extradeps)
  595. means that the command `make extradeps=foo.h' will consider `foo.h' as
  596. a dependency of each object file, but plain `make' will not.
  597.    If none of the explicit rules for a target has commands, then `make'
  598. searches for an applicable implicit rule to find some commands *note
  599. Using Implicit Rules: Implicit Rules.).
  600. File: make.info,  Node: Static Pattern,  Next: Double-Colon,  Prev: Multiple Rules,  Up: Rules
  601. Static Pattern Rules
  602. ====================
  603.    "Static pattern rules" are rules which specify multiple targets and
  604. construct the dependency names for each target based on the target name.
  605. They are more general than ordinary rules with multiple targets because
  606. the targets do not have to have identical dependencies.  Their
  607. dependencies must be *analogous*, but not necessarily *identical*.
  608. * Menu:
  609. * Static Usage::                The syntax of static pattern rules.
  610. * Static versus Implicit::      When are they better than implicit rules?
  611. File: make.info,  Node: Static Usage,  Next: Static versus Implicit,  Up: Static Pattern
  612. Syntax of Static Pattern Rules
  613. ------------------------------
  614.    Here is the syntax of a static pattern rule:
  615.      TARGETS ...: TARGET-PATTERN: DEP-PATTERNS ...
  616.              COMMANDS
  617.              ...
  618. The TARGETS list specifies the targets that the rule applies to.  The
  619. targets can contain wildcard characters, just like the targets of
  620. ordinary rules (*note Using Wildcard Characters in File Names:
  621. Wildcards.).
  622.    The TARGET-PATTERN and DEP-PATTERNS say how to compute the
  623. dependencies of each target.  Each target is matched against the
  624. TARGET-PATTERN to extract a part of the target name, called the "stem".
  625. This stem is substituted into each of the DEP-PATTERNS to make the
  626. dependency names (one from each DEP-PATTERN).
  627.    Each pattern normally contains the character `%' just once.  When the
  628. TARGET-PATTERN matches a target, the `%' can match any part of the
  629. target name; this part is called the "stem".  The rest of the pattern
  630. must match exactly.  For example, the target `foo.o' matches the
  631. pattern `%.o', with `foo' as the stem.  The targets `foo.c' and
  632. `foo.out' do not match that pattern.
  633.    The dependency names for each target are made by substituting the
  634. stem for the `%' in each dependency pattern.  For example, if one
  635. dependency pattern is `%.c', then substitution of the stem `foo' gives
  636. the dependency name `foo.c'.  It is legitimate to write a dependency
  637. pattern that does not contain `%'; then this dependency is the same for
  638. all targets.
  639.    `%' characters in pattern rules can be quoted with preceding
  640. backslashes (`\').  Backslashes that would otherwise quote `%'
  641. characters can be quoted with more backslashes.  Backslashes that quote
  642. `%' characters or other backslashes are removed from the pattern before
  643. it is compared to file names or has a stem substituted into it.
  644. Backslashes that are not in danger of quoting `%' characters go
  645. unmolested.  For example, the pattern `the\%weird\\%pattern\\' has
  646. `the%weird\' preceding the operative `%' character, and `pattern\\'
  647. following it.  The final two backslashes are left alone because they
  648. cannot affect any `%' character.
  649.    Here is an example, which compiles each of `foo.o' and `bar.o' from
  650. the corresponding `.c' file:
  651.      objects = foo.o bar.o
  652.      
  653.      $(objects): %.o: %.c
  654.              $(CC) -c $(CFLAGS) $< -o $@
  655. Here `$<' is the automatic variable that holds the name of the
  656. dependency and `$@' is the automatic variable that holds the name of
  657. the target; see *Note Automatic Variables: Automatic.
  658.    Each target specified must match the target pattern; a warning is
  659. issued for each target that does not.  If you have a list of files,
  660. only some of which will match the pattern, you can use the `filter'
  661. function to remove nonmatching file names (*note Functions for String
  662. Substitution and Analysis: Text Functions.):
  663.      files = foo.elc bar.o lose.o
  664.      
  665.      $(filter %.o,$(files)): %.o: %.c
  666.              $(CC) -c $(CFLAGS) $< -o $@
  667.      $(filter %.elc,$(files)): %.elc: %.el
  668.              emacs -f batch-byte-compile $<
  669. In this example the result of `$(filter %.o,$(files))' is `bar.o
  670. lose.o', and the first static pattern rule causes each of these object
  671. files to be updated by compiling the corresponding C source file.  The
  672. result of `$(filter %.elc,$(files))' is `foo.elc', so that file is made
  673. from `foo.el'.
  674.    Another example shows how to use `$*' in static pattern rules:
  675.      bigoutput littleoutput : %output : text.g
  676.              generate text.g -$* > $@
  677. When the `generate' command is run, `$*' will expand to the stem,
  678. either `big' or `little'.
  679. File: make.info,  Node: Static versus Implicit,  Prev: Static Usage,  Up: Static Pattern
  680. Static Pattern Rules versus Implicit Rules
  681. ------------------------------------------
  682.    A static pattern rule has much in common with an implicit rule
  683. defined as a pattern rule (*note Defining and Redefining Pattern Rules:
  684. Pattern Rules.).  Both have a pattern for the target and patterns for
  685. constructing the names of dependencies.  The difference is in how
  686. `make' decides *when* the rule applies.
  687.    An implicit rule *can* apply to any target that matches its pattern,
  688. but it *does* apply only when the target has no commands otherwise
  689. specified, and only when the dependencies can be found.  If more than
  690. one implicit rule appears applicable, only one applies; the choice
  691. depends on the order of rules.
  692.    By contrast, a static pattern rule applies to the precise list of
  693. targets that you specify in the rule.  It cannot apply to any other
  694. target and it invariably does apply to each of the targets specified.
  695. If two conflicting rules apply, and both have commands, that's an error.
  696.    The static pattern rule can be better than an implicit rule for these
  697. reasons:
  698.    * You may wish to override the usual implicit rule for a few files
  699.      whose names cannot be categorized syntactically but can be given
  700.      in an explicit list.
  701.    * If you cannot be sure of the precise contents of the directories
  702.      you are using, you may not be sure which other irrelevant files
  703.      might lead `make' to use the wrong implicit rule.  The choice
  704.      might depend on the order in which the implicit rule search is
  705.      done.  With static pattern rules, there is no uncertainty: each
  706.      rule applies to precisely the targets specified.
  707. File: make.info,  Node: Double-Colon,  Next: Automatic Dependencies,  Prev: Static Pattern,  Up: Rules
  708. Double-Colon Rules
  709. ==================
  710.    "Double-colon" rules are rules written with `::' instead of `:'
  711. after the target names.  They are handled differently from ordinary
  712. rules when the same target appears in more than one rule.
  713.    When a target appears in multiple rules, all the rules must be the
  714. same type: all ordinary, or all double-colon.  If they are
  715. double-colon, each of them is independent of the others.  Each
  716. double-colon rule's commands are executed if the target is older than
  717. any dependencies of that rule.  This can result in executing none, any,
  718. or all of the double-colon rules.
  719.    Double-colon rules with the same target are in fact completely
  720. separate from one another.  Each double-colon rule is processed
  721. individually, just as rules with different targets are processed.
  722.    The double-colon rules for a target are executed in the order they
  723. appear in the makefile.  However, the cases where double-colon rules
  724. really make sense are those where the order of executing the commands
  725. would not matter.
  726.    Double-colon rules are somewhat obscure and not often very useful;
  727. they provide a mechanism for cases in which the method used to update a
  728. target differs depending on which dependency files caused the update,
  729. and such cases are rare.
  730.    Each double-colon rule should specify commands; if it does not, an
  731. implicit rule will be used if one applies.  *Note Using Implicit Rules:
  732. Implicit Rules.
  733. File: make.info,  Node: Automatic Dependencies,  Prev: Double-Colon,  Up: Rules
  734. Generating Dependencies Automatically
  735. =====================================
  736.    In the makefile for a program, many of the rules you need to write
  737. often say only that some object file depends on some header file.  For
  738. example, if `main.c' uses `defs.h' via an `#include', you would write:
  739.      main.o: defs.h
  740. You need this rule so that `make' knows that it must remake `main.o'
  741. whenever `defs.h' changes.  You can see that for a large program you
  742. would have to write dozens of such rules in your makefile.  And, you
  743. must always be very careful to update the makefile every time you add
  744. or remove an `#include'.
  745.    To avoid this hassle, most modern C compilers can write these rules
  746. for you, by looking at the `#include' lines in the source files.
  747. Usually this is done with the `-M' option to the compiler.  For
  748. example, the command:
  749.      cc -M main.c
  750. generates the output:
  751.      main.o : main.c defs.h
  752. Thus you no longer have to write all those rules yourself.  The
  753. compiler will do it for you.
  754.    Note that such a dependency constitutes mentioning `main.o' in a
  755. makefile, so it can never be considered an intermediate file by implicit
  756. rule search.  This means that `make' won't ever remove the file after
  757. using it; *note Chains of Implicit Rules: Chained Rules..
  758.    With old `make' programs, it was traditional practice to use this
  759. compiler feature to generate dependencies on demand with a command like
  760. `make depend'.  That command would create a file `depend' containing
  761. all the automatically-generated dependencies; then the makefile could
  762. use `include' to read them in (*note Include::.).
  763.    In GNU `make', the feature of remaking makefiles makes this practice
  764. obsolete--you need never tell `make' explicitly to regenerate the
  765. dependencies, because it always regenerates any makefile that is out of
  766. date.  *Note Remaking Makefiles::.
  767.    The practice we recommend for automatic dependency generation is to
  768. have one makefile corresponding to each source file.  For each source
  769. file `NAME.c' there is a makefile `NAME.d' which lists what files the
  770. object file `NAME.o' depends on.  That way only the source files that
  771. have changed need to be rescanned to produce the new dependencies.
  772.    Here is the pattern rule to generate a file of dependencies (i.e., a
  773. makefile) called `NAME.d' from a C source file called `NAME.c':
  774.      %.d: %.c
  775.              $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< \
  776.                            | sed '\''s/$*\\.o[ :]*/& $@/g'\'' > $@'
  777. *Note Pattern Rules::, for information on defining pattern rules.  The
  778. `-e' flag to the shell makes it exit immediately if the `$(CC)' command
  779. fails (exits with a nonzero status).  Normally the shell exits with the
  780. status of the last command in the pipeline (`sed' in this case), so
  781. `make' would not notice a nonzero status from the compiler.
  782.    With the GNU C compiler, you may wish to use the `-MM' flag instead
  783. of `-M'.  This omits dependencies on system header files.  *Note
  784. Options Controlling the Preprocessor: (gcc.info)Preprocessor Options,
  785. for details.
  786.    The purpose of the `sed' command is to translate (for example):
  787.      main.o : main.c defs.h
  788. into:
  789.      main.o main.d : main.c defs.h
  790. This makes each `.d' file depend on all the source and header files
  791. that the corresponding `.o' file depends on.  `make' then knows it must
  792. regenerate the dependencies whenever any of the source or header files
  793. changes.
  794.    Once you've defined the rule to remake the `.d' files, you then use
  795. the `include' directive to read them all in.  *Note Include::.  For
  796. example:
  797.      sources = foo.c bar.c
  798.      
  799.      include $(sources:.c=.d)
  800. (This example uses a substitution variable reference to translate the
  801. list of source files `foo.c bar.c' into a list of dependency makefiles,
  802. `foo.d bar.d'.  *Note Substitution Refs::, for full information on
  803. substitution references.)  Since the `.d' files are makefiles like any
  804. others, `make' will remake them as necessary with no further work from
  805. you.  *Note Remaking Makefiles::.
  806. File: make.info,  Node: Commands,  Next: Using Variables,  Prev: Rules,  Up: Top
  807. Writing the Commands in Rules
  808. *****************************
  809.    The commands of a rule consist of shell command lines to be executed
  810. one by one.  Each command line must start with a tab, except that the
  811. first command line may be attached to the target-and-dependencies line
  812. with a semicolon in between.  Blank lines and lines of just comments
  813. may appear among the command lines; they are ignored.  (But beware, an
  814. apparently "blank" line that begins with a tab is *not* blank!  It is an
  815. empty command; *note Empty Commands::..)
  816.    Users use many different shell programs, but commands in makefiles
  817. are always interpreted by `/bin/sh' unless the makefile specifies
  818. otherwise.  *Note Command Execution: Execution.
  819.    The shell that is in use determines whether comments can be written
  820. on command lines, and what syntax they use.  When the shell is
  821. `/bin/sh', a `#' starts a comment that extends to the end of the line.
  822. The `#' does not have to be at the beginning of a line.  Text on a line
  823. before a `#' is not part of the comment.
  824. * Menu:
  825. * Echoing::                     How to control when commands are echoed.
  826. * Execution::                   How commands are executed.
  827. * Parallel::                    How commands can be executed in parallel.
  828. * Errors::                      What happens after a command execution error.
  829. * Interrupts::                  What happens when a command is interrupted.
  830. * Recursion::                   Invoking `make' from makefiles.
  831. * Sequences::                   Defining canned sequences of commands.
  832. * Empty Commands::              Defining useful, do-nothing commands.
  833. File: make.info,  Node: Echoing,  Next: Execution,  Up: Commands
  834. Command Echoing
  835. ===============
  836.    Normally `make' prints each command line before it is executed.  We
  837. call this "echoing" because it gives the appearance that you are typing
  838. the commands yourself.
  839.    When a line starts with `@', the echoing of that line is suppressed.
  840. The `@' is discarded before the command is passed to the shell.
  841. Typically you would use this for a command whose only effect is to print
  842. something, such as an `echo' command to indicate progress through the
  843. makefile:
  844.      @echo About to make distribution files
  845.    When `make' is given the flag `-n' or `--just-print', echoing is all
  846. that happens, no execution.  *Note Summary of Options: Options Summary.
  847. In this case and only this case, even the commands starting with `@'
  848. are printed.  This flag is useful for finding out which commands `make'
  849. thinks are necessary without actually doing them.
  850.    The `-s' or `--silent' flag to `make' prevents all echoing, as if
  851. all commands started with `@'.  A rule in the makefile for the special
  852. target `.SILENT' without dependencies has the same effect (*note
  853. Special Built-in Target Names: Special Targets.).  `.SILENT' is
  854. essentially obsolete since `@' is more flexible.
  855. File: make.info,  Node: Execution,  Next: Parallel,  Prev: Echoing,  Up: Commands
  856. Command Execution
  857. =================
  858.    When it is time to execute commands to update a target, they are
  859. executed by making a new subshell for each line.  (In practice, `make'
  860. may take shortcuts that do not affect the results.)
  861.    *Please note:* this implies that shell commands such as `cd' that
  862. set variables local to each process will not affect the following
  863. command lines.  If you want to use `cd' to affect the next command, put
  864. the two on a single line with a semicolon between them.  Then `make'
  865. will consider them a single command and pass them, together, to a shell
  866. which will execute them in sequence.  For example:
  867.      foo : bar/lose
  868.              cd bar; gobble lose > ../foo
  869.    If you would like to split a single shell command into multiple
  870. lines of text, you must use a backslash at the end of all but the last
  871. subline.  Such a sequence of lines is combined into a single line, by
  872. deleting the backslash-newline sequences, before passing it to the
  873. shell.  Thus, the following is equivalent to the preceding example:
  874.      foo : bar/lose
  875.              cd bar;  \
  876.              gobble lose > ../foo
  877.    The program used as the shell is taken from the variable `SHELL'.
  878. By default, the program `/bin/sh' is used.
  879.    Unlike most variables, the variable `SHELL' is never set from the
  880. environment.  This is because the `SHELL' environment variable is used
  881. to specify your personal choice of shell program for interactive use.
  882. It would be very bad for personal choices like this to affect the
  883. functioning of makefiles.  *Note Variables from the Environment:
  884. Environment.
  885.