* Update the manual.
[make.git] / NEWS
blob8f048690fac25f45faf36a723e3b8cd77da98bf9
1 GNU make NEWS                                               -*-indented-text-*-
2   History of user-visible changes.
3   21 Jul 1999
5 Copyright (C) 1992,93,94,95,96,97,98,1999 Free Software Foundation, Inc.
6 See the end for copying conditions.
8 All changes mentioned here are more fully described in the GNU make
9 manual, which is contained in this distribution as the file make.texinfo.
11 Please send GNU make bug reports to bug-make@gnu.org.
13 Version 3.78
15 * Two new functions, $(error ...) and $(warning ...) are provided.  The
16   former will cause make to fail and exit immediately upon expansion of
17   the function, with the text provided as the error message.  The latter
18   causes the text provided to be printed as a warning message, but make
19   proceeds normally.
21 * A new function, $(call ...) is provided.  This allows users to create
22   their own parameterized macros and invoke them later.  Original
23   implementation of this feature was provided by Han-Wen Nienhuys
24   <hanwen@cs.uu.nl>.
26 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
27   library dependency expansion (dependencies like ``-lfoo'') is performed.
29 * Make accepts CRLF sequences as well as traditional LF, for
30   compatibility with makefiles created on other operating systems.
32 * Make accepts a new option: -R, or --no-builtin-variables.  This option
33   disables the definition of the rule-specific builtin variables (CC,
34   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
35   as well.
37 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
39   On systems that support POSIX pipe(2) semantics, GNU make can now pass
40   -jN options to submakes rather than forcing them all to use -j1.  The
41   top make and all its sub-make processes use a pipe to communicate with
42   each other to ensure that no more than N jobs are started across all
43   makes.  To get the old behavior of -j back, you can configure make
44   with the --disable-job-server option.
46 Version 3.77
48 * Implement BSD make's "?=" variable assignment operator.  The variable
49   is assigned the specified value only if that variable is not already
50   defined.
52 * Make defines a new variable, "CURDIR", to contain the current working
53   directory (after the -C option, if any, has been processed).
54   Modifying this variable has no effect on the operation of make.
56 * Make defines a new default RCS rule, for new-style master file
57   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
59   Make defines new default rules for DOS-style C++ file naming
60   conventions, with ``.cpp'' suffixes.  All the same rules as for
61   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
62   COMPILE.cpp macros (which default to the same value as LINK.cc and
63   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
64   use CXXFLAGS to change C++ compiler flags.
66 * A new feature, "target-specific variable values", has been added.
67   This is a large change so please see the appropriate sections of the
68   manual for full details.  Briefly, syntax like this:
70     TARGET: VARIABLE = VALUE
72   defines VARIABLE as VALUE within the context of TARGET.  This is
73   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
74   that the assignment may be of any type, not just recursive, and that
75   the override keyword is available.
77   COMPATIBILITY: This new syntax means that if you have any rules where
78   the first or second dependency has an equal sign (=) in its name,
79   you'll have to escape them with a backslash: "foo : bar\=baz".
80   Further, if you have any dependencies which already contain "\=",
81   you'll have to escape both of them: "foo : bar\\\=baz".
83 * A new appendix listing the most common error and warning messages
84   generated by GNU make, with some explanation, has been added to the
85   GNU make User's Manual.
87 * Updates to the GNU make Customs library support (see README.customs).
89 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
90   and to the DOS port from Eli Zaretski (see README.DOS).
92 Version 3.76.1
94 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
96 Version 3.76
98 * GNU make now uses automake to control Makefile.in generation.  This
99   should make it more consistent with the GNU standards.
101 * VPATH functionality has been changed to incorporate the VPATH+ patch,
102   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
103   manual.
105 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
106   were specified on the command line, if any.  Modifying this variable
107   has no effect on the operation of make.
109 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
110   list of words from number S to number E (inclusive) of TEXT.
112 * Instead of an error, detection of future modification times gives a
113   warning and continues.  The warning is repeated just before GNU make
114   exits, so it is less likely to be lost.
116 * Fix the $(basename) and $(suffix) functions so they only operate on
117   the last filename, not the entire string:
119       Command              Old Result             New Result
120       -------              ----------             ----------
121     $(basename a.b)        a                      a
122     $(basename a.b/c)      a                      a.b/c
123     $(suffix a.b)          b                      b
124     $(suffix a.b/c)        b/c                    <empty>
126 * The $(strip) function now removes newlines as well as TABs and spaces.
128 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
129   as newlines (\n).
131 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
133 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
134   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
135   and utilities.  See README.DOS for details, and direct all questions
136   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
137   Delorie <dj@delorie.com>.
139 * John W. Eaton has updated the VMS port to support libraries and VPATH.
141 Version 3.75
143 * The directory messages printed by `-w' and implicitly in sub-makes,
144   are now omitted if Make runs no commands and has no other messages to print.
146 * Make now detects files that for whatever reason have modification times
147   in the future and gives an error.  Files with such impossible timestamps
148   can result from unsynchronized clocks, or archived distributions
149   containing bogus timestamps; they confuse Make's dependency engine
150   thoroughly.
152 * The new directive `sinclude' is now recognized as another name for
153   `-include', for compatibility with some other Makes.
155 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
156   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
158 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
159   See README.W32 for details, and direct all Windows-related questions to
160   <rob_tulloh@tivoli.com>.
162 Version 3.73
164 * Converted to use Autoconf version 2, so `configure' has some new options.
165   See INSTALL for details.
167 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
168   output enabled by -d, at any time during the run.
170 Version 3.72
172 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
173   He is maintaining the DOS port, not the GNU Make maintainer;
174   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
175   MS-DOS binaries are available for FTP from ftp.simtel.net in
176   /pub/simtelnet/gnu/djgpp/.
178 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
179   contain variable definitions itself; these are treated just like
180   command-line variable definitions.  Make will automatically insert any
181   variable definitions from the environment value of `MAKEFLAGS' or from
182   the command line, into the `MAKEFLAGS' value exported to children.  The
183   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
184   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
185   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
186   in the environment when its size is limited.
188 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
189   a rule if it has changed when its commands exit with a nonzero status,
190   just as when the commands get a signal.
192 * The automatic variable `$+' is new.  It lists all the dependencies like
193   `$^', but preserves duplicates listed in the makefile.  This is useful
194   for linking rules, where library files sometimes need to be listed twice
195   in the link order.
197 * You can now specify the `.IGNORE' and `.SILENT' special targets with
198   dependencies to limit their effects to those files.  If a file appears as
199   a dependency of `.IGNORE', then errors will be ignored while running the
200   commands to update that file.  Likewise if a file appears as a dependency
201   of `.SILENT', then the commands to update that file will not be printed
202   before they are run.  (This change was made to conform to POSIX.2.)
204 Version 3.71
206 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
207   `$(^D)' now omit the trailing slash from the directory name.  (This change
208   was made to comply with POSIX.2.)
210 * The source distribution now includes the Info files for the Make manual.
211   There is no longer a separate distribution containing Info and DVI files.
213 * You can now set the variables `binprefix' and/or `manprefix' in
214   Makefile.in (or on the command line when installing) to install GNU make
215   under a name other than `make' (i.e., ``make binprefix=g install''
216   installs GNU make as `gmake').
218 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
219   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
220   Makeinfo program.
222 * The exit status of Make when it runs into errors is now 2 instead of 1.
223   The exit status is 1 only when using -q and some target is not up to date.
224   (This change was made to comply with POSIX.2.)
226 Version 3.70
228 * It is no longer a fatal error to have a NUL character in a makefile.
229   You should never put a NUL in a makefile because it can have strange
230   results, but otherwise empty lines full of NULs (such as produced by
231   the `xmkmf' program) will always work fine.
233 * The error messages for nonexistent included makefiles now refer to the
234   makefile name and line number where the `include' appeared, so Emacs's
235   C-x ` command takes you there (in case it's a typo you need to fix).
237 Version 3.69
239 * Implicit rule search for archive member references is now done in the
240   opposite order from previous versions: the whole target name `LIB(MEM)'
241   first, and just the member name and parentheses `(MEM)' second.
243 * Make now gives an error for an unterminated variable or function reference.
244   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
246 * The new default variable `MAKE_VERSION' gives the version number of
247   Make, and a string describing the remote job support compiled in (if any).
248   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
250 * Commands in an invocation of the `shell' function are no longer run with
251   a modified environment like target commands are.  As in versions before
252   3.68, they now run with the environment that `make' started with.  We
253   have reversed the change made in version 3.68 because it turned out to
254   cause a paradoxical situation in cases like:
256         export variable = $(shell echo value)
258   When Make attempted to put this variable in the environment for a target
259   command, it would try expand the value by running the shell command
260   `echo value'.  In version 3.68, because it constructed an environment
261   for that shell command in the same way, Make would begin to go into an
262   infinite loop and then get a fatal error when it detected the loop.
264 * The commands given for `.DEFAULT' are now used for phony targets with no
265   commands.
267 Version 3.68
269 * You can list several archive member names inside parenthesis:
270   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
272 * You can use wildcards inside archive member references.  For example,
273   `lib(*.o)' expands to all existing members of `lib' whose names end in
274   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
275   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
276   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
278 * A suffix rule `.X.a' now produces two pattern rules:
279         (%.o): %.X      # Previous versions produced only this.
280         %.a: %.X        # Now produces this as well, just like other suffixes.
282 * The new flag `--warn-undefined-variables' says to issue a warning message
283   whenever Make expands a reference to an undefined variable.
285 * The new `-include' directive is just like `include' except that there is
286   no error (not even a warning) for a nonexistent makefile.
288 * Commands in an invocation of the `shell' function are now run with a
289   modified environment like target commands are, so you can use `export' et
290   al to set up variables for them.  They used to run with the environment
291   that `make' started with.
293 Version 3.66
295 * `make --version' (or `make -v') now exits immediately after printing
296   the version number.
298 Version 3.65
300 * Make now supports long-named members in `ar' archive files.
302 Version 3.64
304 * Make now supports the `+=' syntax for a variable definition which appends
305   to the variable's previous value.  See the section `Appending More Text
306   to Variables' in the manual for full details.
308 * The new option `--no-print-directory' inhibits the `-w' or
309   `--print-directory' feature.  Make turns on `--print-directory'
310   automatically if you use `-C' or `--directory', and in sub-makes; some
311   users have found this behavior undesirable.
313 * The built-in implicit rules now support the alternative extension
314   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
316 Version 3.63
318 * Make now uses a standard GNU `configure' script.  See the new file
319   INSTALL for the new (and much simpler) installation procedure.
321 * There is now a shell script to build Make the first time, if you have no
322   other `make' program.  `build.sh' is created by `configure'; see README.
324 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
326 * Elements of the `$^' and `$?' automatic variables that are archive
327   member references now list only the member name, as in Unix and POSIX.2.
329 * You should no longer ever need to specify the `-w' switch, which prints
330   the current directory before and after Make runs.  The `-C' switch to
331   change directory, and recursive use of Make, now set `-w' automatically.
333 * Multiple double-colon rules for the same target will no longer have their
334   commands run simultaneously under -j, as this could result in the two
335   commands trying to change the file at the same time and interfering with
336   one another.
338 * The `SHELL' variable is now never taken from the environment.
339   Each makefile that wants a shell other than the default (/bin/sh) must
340   set SHELL itself.  SHELL is always exported to child processes.
341   This change was made for compatibility with POSIX.2.
343 * Make now accepts long options.  There is now an informative usage message
344   that tells you what all the options are and what they do.  Try `make --help'.
346 * There are two new directives: `export' and `unexport'.  All variables are
347   no longer automatically put into the environments of the commands that
348   Make runs.  Instead, only variables specified on the command line or in
349   the environment are exported by default.  To export others, use:
350         export VARIABLE
351   or you can define variables with:
352         export VARIABLE = VALUE
353   or:
354         export VARIABLE := VALUE
355   You can use just:
356         export
357   or:
358         .EXPORT_ALL_VARIABLES:
359   to get the old behavior.  See the node `Variables/Recursion' in the manual
360   for a full description.
362 * The commands from the `.DEFAULT' special target are only applied to
363   targets which have no rules at all, not all targets with no commands.
364   This change was made for compatibility with Unix make.
366 * All fatal error messages now contain `***', so they are easy to find in
367   compilation logs.
369 * Dependency file names like `-lNAME' are now replaced with the actual file
370   name found, as with files found by normal directory search (VPATH).
371   The library file `libNAME.a' may now be found in the current directory,
372   which is checked before VPATH; the standard set of directories (/lib,
373   /usr/lib, /usr/local/lib) is now checked last.
374   See the node `Libraries/Search' in the manual for full details.
376 * A single `include' directive can now specify more than one makefile to
377   include, like this:
378         include file1 file2
379   You can also use shell file name patterns in an `include' directive:
380         include *.mk
382 * The default directories to search for included makefiles, and for
383   libraries specified with `-lNAME', are now set by configuration.
385 * You can now use blanks as well as colons to separate the directories in a
386   search path for the `vpath' directive or the `VPATH' variable.
388 * You can now use variables and functions in the left hand side of a
389   variable assignment, as in "$(foo)bar = value".
391 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
392   The `MAKE_COMMAND' variable is now defined to the name with which make
393   was invoked.
395 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
396   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
397   problems with shells that cannot have `+' in environment variable names.
399 * The value of a recursively expanded variable is now expanded when putting
400   it into the environment for child processes.  This change was made for
401   compatibility with Unix make.
403 * A rule with no targets before the `:' is now accepted and ignored.
404   This change was made for compatibility with SunOS 4 make.
405   We do not recommend that you write your makefiles to take advantage of this.
407 * The `-I' switch can now be used in MAKEFLAGS, and are put there
408   automatically just like other switches.
410 Version 3.61
412 * Built-in rules for C++ source files with the `.C' suffix.
413   We still recommend that you use `.cc' instead.
415 * If commands are given too many times for a single target,
416   the last set given is used, and a warning message is printed.
418 * Error messages about makefiles are in standard GNU error format,
419   so C-x ` in Emacs works on them.
421 * Dependencies of pattern rules which contain no % need not actually exist
422   if they can be created (just like dependencies which do have a %).
424 Version 3.60
426 * A message is always printed when Make decides there is nothing to be done.
427   It used to be that no message was printed for top-level phony targets
428   (because "`phony' is up to date" isn't quite right).  Now a different
429   message "Nothing to be done for `phony'" is printed in that case.
431 * Archives on AIX now supposedly work.
433 * When the commands specified for .DEFAULT are used to update a target,
434   the $< automatic variable is given the same value as $@ for that target.
435   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
437 Version 3.59
439 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
440   variables while remaking makefiles, so recursive makes done while remaking
441   makefiles will behave properly.
443 * If the special target `.NOEXPORT' is specified in a makefile,
444   only variables that came from the environment and variables
445   defined on the command line are exported.
447 Version 3.58
449 * Suffix rules may have dependencies (which are ignored).
451 Version 3.57
453 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
454   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
456 Version 3.55
458 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
459 for the Texinfo manual, but it documents the basic functionality and the
460 switches.  For full documentation, you should still read the Texinfo manual.
461 Thanks to Dennis Morse of Stanford University for contributing the initial
462 version of this.
464 * Variables which are defined by default (e.g., `CC') will no longer be put
465 into the environment for child processes.  (If these variables are reset by the
466 environment, makefiles, or the command line, they will still go into the
467 environment.)
469 * Makefiles which have commands but no dependencies (and thus are always
470   considered out of date and in need of remaking), will not be remade (if they
471   were being remade only because they were makefiles).  This means that GNU
472   Make will no longer go into an infinite loop when fed the makefiles that
473   `imake' (necessary to build X Windows) produces.
475 * There is no longer a warning for using the `vpath' directive with an explicit
476 pathname (instead of a `%' pattern).
478 Version 3.51
480 * When removing intermediate files, only one `rm' command line is printed,
481 listing all file names.
483 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
484 These are the directory-only and file-only versions of `$^' and `$?'.
486 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
487 directory if it exists.
489 * The automatic variable `$($/)' is no longer defined.
491 * Leading `+' characters on a command line make that line be executed even
492 under -n, -t, or -q (as if the line contained `$(MAKE)').
494 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
495 only those lines are executed, not their entire rules.
496 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
498 Version 3.50
500 * Filenames in rules will now have ~ and ~USER expanded.
502 * The `-p' output has been changed so it can be used as a makefile.
503 (All information that isn't specified by makefiles is prefaced with comment
504 characters.)
506 Version 3.49
508 * The % character can be quoted with backslash in implicit pattern rules,
509 static pattern rules, `vpath' directives, and `patsubst', `filter', and
510 `filter-out' functions.  A warning is issued if a `vpath' directive's
511 pattern contains no %.
513 * The `wildcard' variable expansion function now expands ~ and ~USER.
515 * Messages indicating failed commands now contain the target name:
516         make: *** [target] Error 1
518 * The `-p' output format has been changed somewhat to look more like
519 makefile rules and to give all information that Make has about files.
521 Version 3.48
523 Version 3.47
525 * The `-l' switch with no argument removes any previous load-average limit.
527 * When the `-w' switch is in effect, and Make has updated makefiles,
528 it will write a `Leaving directory' messagfe before re-executing itself.
529 This makes the `directory change tracking' changes to Emacs's compilation
530 commands work properly.
532 Version 3.46
534 * The automatic variable `$*' is now defined for explicit rules,
535 as it is in Unix make.
537 Version 3.45
539 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
540 specified without an argument (indicating infinite jobs).
541 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
543 * Make no longer checks hashed directories after running commands.
544 The behavior implemented in 3.41 caused too much slowdown.
546 Version 3.44
548 * A dependency is NOT considered newer than its dependent if
549 they have the same modification time.  The behavior implemented
550 in 3.43 conflicts with RCS.
552 Version 3.43
554 * Dependency loops are no longer fatal errors.
556 * A dependency is considered newer than its dependent if
557 they have the same modification time.
559 Version 3.42
561 * The variables F77 and F77FLAGS are now set by default to $(FC) and
562 $(FFLAGS).  Makefiles designed for System V make may use these variables in
563 explicit rules and expect them to be set.  Unfortunately, there is no way to
564 make setting these affect the Fortran implicit rules unless FC and FFLAGS
565 are not used (and these are used by BSD make).
567 Version 3.41
569 * Make now checks to see if its hashed directories are changed by commands.
570 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
572 Version 3.39
574 * The `shell' function no longer captures standard error output.
576 Version 3.32
578 * A file beginning with a dot can be the default target if it also contains
579 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
581 Version 3.31
583 * Archive member names are truncated to 15 characters.
585 * Yet more USG stuff.
587 * Minimal support for Microport System V (a 16-bit machine and a
588 brain-damaged compiler).  This has even lower priority than other USG
589 support, so if it gets beyond trivial, I will take it out completely.
591 * Revamped default implicit rules (not much visible change).
593 * The -d and -p options can come from the environment.
595 Version 3.30
597 * Improved support for USG and HPUX (hopefully).
599 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
600 equivalent to `$(patsubst a,b,$(foo))'.
602 * Defining .DEFAULT with no deps or commands clears its commands.
604 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
605 executable).  All default implicit rules that use cpp (even indirectly), use
606 $(CPPFLAGS).
608 Version 3.29
610 * Giving the -j option with no arguments gives you infinite jobs.
612 Version 3.28
614 * New option: "-l LOAD" says not to start any new jobs while others are
615 running if the load average is not below LOAD (a floating-point number).
617 * There is support in place for implementations of remote command execution
618 in Make.  See the file remote.c.
620 Version 3.26
622 * No more than 10 directories will be kept open at once.
623 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
625 Version 3.25
627 * Archive files will have their modification times recorded before doing
628 anything that might change their modification times by updating an archive
629 member.
631 Version 3.20
633 * The `MAKELEVEL' variable is defined for use by makefiles.
635 Version 3.19
637 * The recursion level indications in error messages are much shorter than
638 they were in version 3.14.
640 Version 3.18
642 * Leading spaces before directives are ignored (as documented).
644 * Included makefiles can determine the default goal target.
645 (System V Make does it this way, so we are being compatible).
647 Version 3.14.
649 * Variables that are defaults built into Make will not be put in the
650 environment for children.  This just saves some environment space and,
651 except under -e, will be transparent to sub-makes.
653 * Error messages from sub-makes will indicate the level of recursion.
655 * Hopefully some speed-up for large directories due to a change in the
656 directory hashing scheme.
658 * One child will always get a standard input that is usable.
660 * Default makefiles that don't exist will be remade and read in.
662 Version 3.13.
664 * Count parentheses inside expansion function calls so you can
665 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
667 Version 3.12.
669 * Several bug fixes, including USG and Sun386i support.
671 * `shell' function to expand shell commands a la `
673 * If the `-d' flag is given, version information will be printed.
675 * The `-c' option has been renamed to `-C' for compatibility with tar.
677 * The `-p' option no longer inhibits other normal operation.
679 * Makefiles will be updated and re-read if necessary.
681 * Can now run several commands at once (parallelism), -j option.
683 * Error messages will contain the level of Make recursion, if any.
685 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
686 makefiles are read.
688 * A double-colon rule with no dependencies will always have its commands run.
689 (This is how both the BSD and System V versions of Make do it.)
691 Version 3.05
693 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
695 ----------------------------------------------------------------------
696 Copyright information:
698    Permission is granted to anyone to make or distribute verbatim copies
699    of this document as received, in any medium, provided that the
700    copyright notice and this permission notice are preserved, thus
701    giving the recipient permission to redistribute in turn.
703    Permission is granted to distribute modified versions of this
704    document, or of portions of it, under the above conditions, provided
705    also that they carry prominent notices stating who last changed them.