* Added the test suite to the main distribution.
[make.git] / NEWS
blob513af7906d4dc800f9f185a31a40d5a2293035d8
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 available.  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 available.  This allows users to create
22   their own parameterized macros and invoke them later.  Original
23   implementation of this function was provided by Han-Wen Nienhuys
24   <hanwen@cs.uu.nl>.
26 * A new function $(if ...) is available.  It provides if-then-else
27   capabilities in a builtin function.  Original implementation of this
28   function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
30 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
31   library dependency expansion (dependencies like ``-lfoo'') is performed.
33 * Make accepts CRLF sequences as well as traditional LF, for
34   compatibility with makefiles created on other operating systems.
36 * Make accepts a new option: -R, or --no-builtin-variables.  This option
37   disables the definition of the rule-specific builtin variables (CC,
38   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
39   as well.
41 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
43   On systems that support POSIX pipe(2) semantics, GNU make can now pass
44   -jN options to submakes rather than forcing them all to use -j1.  The
45   top make and all its sub-make processes use a pipe to communicate with
46   each other to ensure that no more than N jobs are started across all
47   makes.  To get the old behavior of -j back, you can configure make
48   with the --disable-job-server option.
50 * The confusing term "dependency" has been replaced by the more accurate
51   and standard term "prerequisite", both in the manual and in all GNU make
52   output.
54 * GNU make supports the "big archive" library format introduced in AIX 4.3.
56 * GNU make supports large files on AIX, HP-UX, and IRIX.  These changes
57   were provided by Paul Eggert <eggert@twinsun.com>.  (Large file
58   support for Solaris and Linux was introduced in 3.77, but the
59   configuration had issues: these have also been resolved).
61 * The Windows 95/98/NT (W32) version of GNU make now has native support
62   for the Cygnus Cygwin release B20.1 shell (bash).
64 Version 3.77
66 * Implement BSD make's "?=" variable assignment operator.  The variable
67   is assigned the specified value only if that variable is not already
68   defined.
70 * Make defines a new variable, "CURDIR", to contain the current working
71   directory (after the -C option, if any, has been processed).
72   Modifying this variable has no effect on the operation of make.
74 * Make defines a new default RCS rule, for new-style master file
75   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
77   Make defines new default rules for DOS-style C++ file naming
78   conventions, with ``.cpp'' suffixes.  All the same rules as for
79   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
80   COMPILE.cpp macros (which default to the same value as LINK.cc and
81   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
82   use CXXFLAGS to change C++ compiler flags.
84 * A new feature, "target-specific variable values", has been added.
85   This is a large change so please see the appropriate sections of the
86   manual for full details.  Briefly, syntax like this:
88     TARGET: VARIABLE = VALUE
90   defines VARIABLE as VALUE within the context of TARGET.  This is
91   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
92   that the assignment may be of any type, not just recursive, and that
93   the override keyword is available.
95   COMPATIBILITY: This new syntax means that if you have any rules where
96   the first or second dependency has an equal sign (=) in its name,
97   you'll have to escape them with a backslash: "foo : bar\=baz".
98   Further, if you have any dependencies which already contain "\=",
99   you'll have to escape both of them: "foo : bar\\\=baz".
101 * A new appendix listing the most common error and warning messages
102   generated by GNU make, with some explanation, has been added to the
103   GNU make User's Manual.
105 * Updates to the GNU make Customs library support (see README.customs).
107 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
108   and to the DOS port from Eli Zaretski (see README.DOS).
110 Version 3.76.1
112 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
114 Version 3.76
116 * GNU make now uses automake to control Makefile.in generation.  This
117   should make it more consistent with the GNU standards.
119 * VPATH functionality has been changed to incorporate the VPATH+ patch,
120   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
121   manual.
123 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
124   were specified on the command line, if any.  Modifying this variable
125   has no effect on the operation of make.
127 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
128   list of words from number S to number E (inclusive) of TEXT.
130 * Instead of an error, detection of future modification times gives a
131   warning and continues.  The warning is repeated just before GNU make
132   exits, so it is less likely to be lost.
134 * Fix the $(basename) and $(suffix) functions so they only operate on
135   the last filename, not the entire string:
137       Command              Old Result             New Result
138       -------              ----------             ----------
139     $(basename a.b)        a                      a
140     $(basename a.b/c)      a                      a.b/c
141     $(suffix a.b)          b                      b
142     $(suffix a.b/c)        b/c                    <empty>
144 * The $(strip) function now removes newlines as well as TABs and spaces.
146 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
147   as newlines (\n).
149 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
151 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
152   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
153   and utilities.  See README.DOS for details, and direct all questions
154   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
155   Delorie <dj@delorie.com>.
157 * John W. Eaton has updated the VMS port to support libraries and VPATH.
159 Version 3.75
161 * The directory messages printed by `-w' and implicitly in sub-makes,
162   are now omitted if Make runs no commands and has no other messages to print.
164 * Make now detects files that for whatever reason have modification times
165   in the future and gives an error.  Files with such impossible timestamps
166   can result from unsynchronized clocks, or archived distributions
167   containing bogus timestamps; they confuse Make's dependency engine
168   thoroughly.
170 * The new directive `sinclude' is now recognized as another name for
171   `-include', for compatibility with some other Makes.
173 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
174   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
176 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
177   See README.W32 for details, and direct all Windows-related questions to
178   <rob_tulloh@tivoli.com>.
180 Version 3.73
182 * Converted to use Autoconf version 2, so `configure' has some new options.
183   See INSTALL for details.
185 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
186   output enabled by -d, at any time during the run.
188 Version 3.72
190 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
191   He is maintaining the DOS port, not the GNU Make maintainer;
192   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
193   MS-DOS binaries are available for FTP from ftp.simtel.net in
194   /pub/simtelnet/gnu/djgpp/.
196 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
197   contain variable definitions itself; these are treated just like
198   command-line variable definitions.  Make will automatically insert any
199   variable definitions from the environment value of `MAKEFLAGS' or from
200   the command line, into the `MAKEFLAGS' value exported to children.  The
201   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
202   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
203   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
204   in the environment when its size is limited.
206 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
207   a rule if it has changed when its commands exit with a nonzero status,
208   just as when the commands get a signal.
210 * The automatic variable `$+' is new.  It lists all the dependencies like
211   `$^', but preserves duplicates listed in the makefile.  This is useful
212   for linking rules, where library files sometimes need to be listed twice
213   in the link order.
215 * You can now specify the `.IGNORE' and `.SILENT' special targets with
216   dependencies to limit their effects to those files.  If a file appears as
217   a dependency of `.IGNORE', then errors will be ignored while running the
218   commands to update that file.  Likewise if a file appears as a dependency
219   of `.SILENT', then the commands to update that file will not be printed
220   before they are run.  (This change was made to conform to POSIX.2.)
222 Version 3.71
224 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
225   `$(^D)' now omit the trailing slash from the directory name.  (This change
226   was made to comply with POSIX.2.)
228 * The source distribution now includes the Info files for the Make manual.
229   There is no longer a separate distribution containing Info and DVI files.
231 * You can now set the variables `binprefix' and/or `manprefix' in
232   Makefile.in (or on the command line when installing) to install GNU make
233   under a name other than `make' (i.e., ``make binprefix=g install''
234   installs GNU make as `gmake').
236 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
237   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
238   Makeinfo program.
240 * The exit status of Make when it runs into errors is now 2 instead of 1.
241   The exit status is 1 only when using -q and some target is not up to date.
242   (This change was made to comply with POSIX.2.)
244 Version 3.70
246 * It is no longer a fatal error to have a NUL character in a makefile.
247   You should never put a NUL in a makefile because it can have strange
248   results, but otherwise empty lines full of NULs (such as produced by
249   the `xmkmf' program) will always work fine.
251 * The error messages for nonexistent included makefiles now refer to the
252   makefile name and line number where the `include' appeared, so Emacs's
253   C-x ` command takes you there (in case it's a typo you need to fix).
255 Version 3.69
257 * Implicit rule search for archive member references is now done in the
258   opposite order from previous versions: the whole target name `LIB(MEM)'
259   first, and just the member name and parentheses `(MEM)' second.
261 * Make now gives an error for an unterminated variable or function reference.
262   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
264 * The new default variable `MAKE_VERSION' gives the version number of
265   Make, and a string describing the remote job support compiled in (if any).
266   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
268 * Commands in an invocation of the `shell' function are no longer run with
269   a modified environment like target commands are.  As in versions before
270   3.68, they now run with the environment that `make' started with.  We
271   have reversed the change made in version 3.68 because it turned out to
272   cause a paradoxical situation in cases like:
274         export variable = $(shell echo value)
276   When Make attempted to put this variable in the environment for a target
277   command, it would try expand the value by running the shell command
278   `echo value'.  In version 3.68, because it constructed an environment
279   for that shell command in the same way, Make would begin to go into an
280   infinite loop and then get a fatal error when it detected the loop.
282 * The commands given for `.DEFAULT' are now used for phony targets with no
283   commands.
285 Version 3.68
287 * You can list several archive member names inside parenthesis:
288   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
290 * You can use wildcards inside archive member references.  For example,
291   `lib(*.o)' expands to all existing members of `lib' whose names end in
292   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
293   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
294   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
296 * A suffix rule `.X.a' now produces two pattern rules:
297         (%.o): %.X      # Previous versions produced only this.
298         %.a: %.X        # Now produces this as well, just like other suffixes.
300 * The new flag `--warn-undefined-variables' says to issue a warning message
301   whenever Make expands a reference to an undefined variable.
303 * The new `-include' directive is just like `include' except that there is
304   no error (not even a warning) for a nonexistent makefile.
306 * Commands in an invocation of the `shell' function are now run with a
307   modified environment like target commands are, so you can use `export' et
308   al to set up variables for them.  They used to run with the environment
309   that `make' started with.
311 Version 3.66
313 * `make --version' (or `make -v') now exits immediately after printing
314   the version number.
316 Version 3.65
318 * Make now supports long-named members in `ar' archive files.
320 Version 3.64
322 * Make now supports the `+=' syntax for a variable definition which appends
323   to the variable's previous value.  See the section `Appending More Text
324   to Variables' in the manual for full details.
326 * The new option `--no-print-directory' inhibits the `-w' or
327   `--print-directory' feature.  Make turns on `--print-directory'
328   automatically if you use `-C' or `--directory', and in sub-makes; some
329   users have found this behavior undesirable.
331 * The built-in implicit rules now support the alternative extension
332   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
334 Version 3.63
336 * Make now uses a standard GNU `configure' script.  See the new file
337   INSTALL for the new (and much simpler) installation procedure.
339 * There is now a shell script to build Make the first time, if you have no
340   other `make' program.  `build.sh' is created by `configure'; see README.
342 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
344 * Elements of the `$^' and `$?' automatic variables that are archive
345   member references now list only the member name, as in Unix and POSIX.2.
347 * You should no longer ever need to specify the `-w' switch, which prints
348   the current directory before and after Make runs.  The `-C' switch to
349   change directory, and recursive use of Make, now set `-w' automatically.
351 * Multiple double-colon rules for the same target will no longer have their
352   commands run simultaneously under -j, as this could result in the two
353   commands trying to change the file at the same time and interfering with
354   one another.
356 * The `SHELL' variable is now never taken from the environment.
357   Each makefile that wants a shell other than the default (/bin/sh) must
358   set SHELL itself.  SHELL is always exported to child processes.
359   This change was made for compatibility with POSIX.2.
361 * Make now accepts long options.  There is now an informative usage message
362   that tells you what all the options are and what they do.  Try `make --help'.
364 * There are two new directives: `export' and `unexport'.  All variables are
365   no longer automatically put into the environments of the commands that
366   Make runs.  Instead, only variables specified on the command line or in
367   the environment are exported by default.  To export others, use:
368         export VARIABLE
369   or you can define variables with:
370         export VARIABLE = VALUE
371   or:
372         export VARIABLE := VALUE
373   You can use just:
374         export
375   or:
376         .EXPORT_ALL_VARIABLES:
377   to get the old behavior.  See the node `Variables/Recursion' in the manual
378   for a full description.
380 * The commands from the `.DEFAULT' special target are only applied to
381   targets which have no rules at all, not all targets with no commands.
382   This change was made for compatibility with Unix make.
384 * All fatal error messages now contain `***', so they are easy to find in
385   compilation logs.
387 * Dependency file names like `-lNAME' are now replaced with the actual file
388   name found, as with files found by normal directory search (VPATH).
389   The library file `libNAME.a' may now be found in the current directory,
390   which is checked before VPATH; the standard set of directories (/lib,
391   /usr/lib, /usr/local/lib) is now checked last.
392   See the node `Libraries/Search' in the manual for full details.
394 * A single `include' directive can now specify more than one makefile to
395   include, like this:
396         include file1 file2
397   You can also use shell file name patterns in an `include' directive:
398         include *.mk
400 * The default directories to search for included makefiles, and for
401   libraries specified with `-lNAME', are now set by configuration.
403 * You can now use blanks as well as colons to separate the directories in a
404   search path for the `vpath' directive or the `VPATH' variable.
406 * You can now use variables and functions in the left hand side of a
407   variable assignment, as in "$(foo)bar = value".
409 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
410   The `MAKE_COMMAND' variable is now defined to the name with which make
411   was invoked.
413 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
414   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
415   problems with shells that cannot have `+' in environment variable names.
417 * The value of a recursively expanded variable is now expanded when putting
418   it into the environment for child processes.  This change was made for
419   compatibility with Unix make.
421 * A rule with no targets before the `:' is now accepted and ignored.
422   This change was made for compatibility with SunOS 4 make.
423   We do not recommend that you write your makefiles to take advantage of this.
425 * The `-I' switch can now be used in MAKEFLAGS, and are put there
426   automatically just like other switches.
428 Version 3.61
430 * Built-in rules for C++ source files with the `.C' suffix.
431   We still recommend that you use `.cc' instead.
433 * If commands are given too many times for a single target,
434   the last set given is used, and a warning message is printed.
436 * Error messages about makefiles are in standard GNU error format,
437   so C-x ` in Emacs works on them.
439 * Dependencies of pattern rules which contain no % need not actually exist
440   if they can be created (just like dependencies which do have a %).
442 Version 3.60
444 * A message is always printed when Make decides there is nothing to be done.
445   It used to be that no message was printed for top-level phony targets
446   (because "`phony' is up to date" isn't quite right).  Now a different
447   message "Nothing to be done for `phony'" is printed in that case.
449 * Archives on AIX now supposedly work.
451 * When the commands specified for .DEFAULT are used to update a target,
452   the $< automatic variable is given the same value as $@ for that target.
453   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
455 Version 3.59
457 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
458   variables while remaking makefiles, so recursive makes done while remaking
459   makefiles will behave properly.
461 * If the special target `.NOEXPORT' is specified in a makefile,
462   only variables that came from the environment and variables
463   defined on the command line are exported.
465 Version 3.58
467 * Suffix rules may have dependencies (which are ignored).
469 Version 3.57
471 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
472   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
474 Version 3.55
476 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
477 for the Texinfo manual, but it documents the basic functionality and the
478 switches.  For full documentation, you should still read the Texinfo manual.
479 Thanks to Dennis Morse of Stanford University for contributing the initial
480 version of this.
482 * Variables which are defined by default (e.g., `CC') will no longer be put
483 into the environment for child processes.  (If these variables are reset by the
484 environment, makefiles, or the command line, they will still go into the
485 environment.)
487 * Makefiles which have commands but no dependencies (and thus are always
488   considered out of date and in need of remaking), will not be remade (if they
489   were being remade only because they were makefiles).  This means that GNU
490   Make will no longer go into an infinite loop when fed the makefiles that
491   `imake' (necessary to build X Windows) produces.
493 * There is no longer a warning for using the `vpath' directive with an explicit
494 pathname (instead of a `%' pattern).
496 Version 3.51
498 * When removing intermediate files, only one `rm' command line is printed,
499 listing all file names.
501 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
502 These are the directory-only and file-only versions of `$^' and `$?'.
504 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
505 directory if it exists.
507 * The automatic variable `$($/)' is no longer defined.
509 * Leading `+' characters on a command line make that line be executed even
510 under -n, -t, or -q (as if the line contained `$(MAKE)').
512 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
513 only those lines are executed, not their entire rules.
514 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
516 Version 3.50
518 * Filenames in rules will now have ~ and ~USER expanded.
520 * The `-p' output has been changed so it can be used as a makefile.
521 (All information that isn't specified by makefiles is prefaced with comment
522 characters.)
524 Version 3.49
526 * The % character can be quoted with backslash in implicit pattern rules,
527 static pattern rules, `vpath' directives, and `patsubst', `filter', and
528 `filter-out' functions.  A warning is issued if a `vpath' directive's
529 pattern contains no %.
531 * The `wildcard' variable expansion function now expands ~ and ~USER.
533 * Messages indicating failed commands now contain the target name:
534         make: *** [target] Error 1
536 * The `-p' output format has been changed somewhat to look more like
537 makefile rules and to give all information that Make has about files.
539 Version 3.48
541 Version 3.47
543 * The `-l' switch with no argument removes any previous load-average limit.
545 * When the `-w' switch is in effect, and Make has updated makefiles,
546 it will write a `Leaving directory' messagfe before re-executing itself.
547 This makes the `directory change tracking' changes to Emacs's compilation
548 commands work properly.
550 Version 3.46
552 * The automatic variable `$*' is now defined for explicit rules,
553 as it is in Unix make.
555 Version 3.45
557 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
558 specified without an argument (indicating infinite jobs).
559 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
561 * Make no longer checks hashed directories after running commands.
562 The behavior implemented in 3.41 caused too much slowdown.
564 Version 3.44
566 * A dependency is NOT considered newer than its dependent if
567 they have the same modification time.  The behavior implemented
568 in 3.43 conflicts with RCS.
570 Version 3.43
572 * Dependency loops are no longer fatal errors.
574 * A dependency is considered newer than its dependent if
575 they have the same modification time.
577 Version 3.42
579 * The variables F77 and F77FLAGS are now set by default to $(FC) and
580 $(FFLAGS).  Makefiles designed for System V make may use these variables in
581 explicit rules and expect them to be set.  Unfortunately, there is no way to
582 make setting these affect the Fortran implicit rules unless FC and FFLAGS
583 are not used (and these are used by BSD make).
585 Version 3.41
587 * Make now checks to see if its hashed directories are changed by commands.
588 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
590 Version 3.39
592 * The `shell' function no longer captures standard error output.
594 Version 3.32
596 * A file beginning with a dot can be the default target if it also contains
597 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
599 Version 3.31
601 * Archive member names are truncated to 15 characters.
603 * Yet more USG stuff.
605 * Minimal support for Microport System V (a 16-bit machine and a
606 brain-damaged compiler).  This has even lower priority than other USG
607 support, so if it gets beyond trivial, I will take it out completely.
609 * Revamped default implicit rules (not much visible change).
611 * The -d and -p options can come from the environment.
613 Version 3.30
615 * Improved support for USG and HPUX (hopefully).
617 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
618 equivalent to `$(patsubst a,b,$(foo))'.
620 * Defining .DEFAULT with no deps or commands clears its commands.
622 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
623 executable).  All default implicit rules that use cpp (even indirectly), use
624 $(CPPFLAGS).
626 Version 3.29
628 * Giving the -j option with no arguments gives you infinite jobs.
630 Version 3.28
632 * New option: "-l LOAD" says not to start any new jobs while others are
633 running if the load average is not below LOAD (a floating-point number).
635 * There is support in place for implementations of remote command execution
636 in Make.  See the file remote.c.
638 Version 3.26
640 * No more than 10 directories will be kept open at once.
641 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
643 Version 3.25
645 * Archive files will have their modification times recorded before doing
646 anything that might change their modification times by updating an archive
647 member.
649 Version 3.20
651 * The `MAKELEVEL' variable is defined for use by makefiles.
653 Version 3.19
655 * The recursion level indications in error messages are much shorter than
656 they were in version 3.14.
658 Version 3.18
660 * Leading spaces before directives are ignored (as documented).
662 * Included makefiles can determine the default goal target.
663 (System V Make does it this way, so we are being compatible).
665 Version 3.14.
667 * Variables that are defaults built into Make will not be put in the
668 environment for children.  This just saves some environment space and,
669 except under -e, will be transparent to sub-makes.
671 * Error messages from sub-makes will indicate the level of recursion.
673 * Hopefully some speed-up for large directories due to a change in the
674 directory hashing scheme.
676 * One child will always get a standard input that is usable.
678 * Default makefiles that don't exist will be remade and read in.
680 Version 3.13.
682 * Count parentheses inside expansion function calls so you can
683 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
685 Version 3.12.
687 * Several bug fixes, including USG and Sun386i support.
689 * `shell' function to expand shell commands a la `
691 * If the `-d' flag is given, version information will be printed.
693 * The `-c' option has been renamed to `-C' for compatibility with tar.
695 * The `-p' option no longer inhibits other normal operation.
697 * Makefiles will be updated and re-read if necessary.
699 * Can now run several commands at once (parallelism), -j option.
701 * Error messages will contain the level of Make recursion, if any.
703 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
704 makefiles are read.
706 * A double-colon rule with no dependencies will always have its commands run.
707 (This is how both the BSD and System V versions of Make do it.)
709 Version 3.05
711 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
713 ----------------------------------------------------------------------
714 Copyright information:
716    Permission is granted to anyone to make or distribute verbatim copies
717    of this document as received, in any medium, provided that the
718    copyright notice and this permission notice are preserved, thus
719    giving the recipient permission to redistribute in turn.
721    Permission is granted to distribute modified versions of this
722    document, or of portions of it, under the above conditions, provided
723    also that they carry prominent notices stating who last changed them.