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