Implement SysV-style $$@ support. I looked at E.Parmelan's patch but
[make.git] / NEWS
blob724458ba4724c7792eb1b5f502a31c1a745ae50c
1 GNU make NEWS                                               -*-indented-text-*-
2   History of user-visible changes.
3   10 July 2002
5 Copyright (C) 2002  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.80
17 * A new feature exists: order-only prerequisites.  These prerequisites
18   affect the order in which targets are built, but they do not impact
19   the rebuild/no-rebuild decision of their dependents.  That is to say,
20   they allow you to require target B be built before target A, without
21   requiring that target A will always be rebuilt if target B is updated.
22   Patch for this feature provided by Greg McGary <greg@mcgary.org>.
24 * For compatibility with SysV make, GNU make now supports the peculiar
25   syntax $$@, $$(@D), and $$(@F) in the prerequisites list of a rule.
26   This syntax is only valid within explicit and static pattern rules: it
27   cannot be used in implicit (suffix or pattern) rules.  Edouard G. Parmelan
28   <egp@free.fr> provided a patch implementing this feature; however, I
29   decided to implemented it myself in a different way.
31 * A new function is defined: $(quote ...).  The argument to this
32   function is the _name_ of a variable.  The result of the function is
33   the value of the variable, without having been expanded.
35 * A new function is defined: $(eval ...).  The arguments to this
36   function should expand to makefile commands, which will then be
37   evaluated as if they had appeared in the makefile.  In combination
38   with define/endef multiline variable definitions this is an extremely
39   powerful capability.  The $(quote ...) function is also useful here.
41 * A new built-in variable is defined, $(MAKEFILE_LIST).  It contains a
42   list of each makefile GNU make has read, or started to read, in the
43   order in which they were encountered.  So, the last filename in the
44   list when a makefile is just being read (before any includes) is the
45   name of the current makefile.
47 * The arguments to $(call ...) functions were being stored in $1, $2,
48   etc. as recursive variables, even though they are fully expanded
49   before assignment.  This means that escaped dollar signs ($$ etc.)
50   were not behaving properly.  Now the arguments are stored as simple
51   variables.  This may mean that if you added extra escaping to your
52   $(call ...) function arguments you will need to undo it now.
54 * New pseudo-target .LOW_RESOLUTION_TIME, superseding the configure
55   option --disable-nsec-timestamps.  You might need this if your build
56   process depends on tools like "cp -p" preserving time stamps, since
57   "cp -p" (right now) doesn't preserve the subsecond portion of a time
58   stamp.
60 * Updated translations for French, Galician, German, Japanese, Korean,
61   and Russian.  New translations for Croatian, Danish, Hebrew, and
62   Turkish.
64 * Updated internationalization support to Gettext 0.11.1.
65   GNU make now uses Gettext's "external" feature, and does not include
66   any internationalization code itself.  Configure will search your
67   system for an existing implementation of GNU Gettext (only GNU Gettext
68   is acceptable) and use it if it exists.  If not, NLS will be disabled.
69   See ABOUT-NLS for more information.
71 * Updated to autoconf 2.53 and automake 1.6.1.  Users should not be
72   impacted.
74 Version 3.79.1
76 * .SECONDARY with no prerequisites now prevents any target from being
77   removed because make thinks it's an intermediate file, not just those
78   listed in the makefile.
80 * New configure option --disable-nsec-timestamps, but this was
81   superseded in later versions by the .LOW_RESOLUTION_TIME pseudo-target.
83 Version 3.79
85 * GNU make optionally supports internationalization and locales via the
86   GNU gettext (or local gettext if suitable) package.  See the ABOUT-NLS
87   file for more information on configuring GNU make for NLS.
89 * Previously, GNU make quoted variables such as MAKEFLAGS and
90   MAKEOVERRIDES for proper parsing by the shell.  This allowed them to
91   be used within make build scripts.  However, using them there is not
92   proper behavior: they are meant to be passed to subshells via the
93   environment.  Unfortunately the values were not quoted properly to be
94   passed through the environment.  This meant that make didn't properly
95   pass some types of command line values to submakes.
97   With this version we change that behavior: now these variables are
98   quoted properly for passing through the environment, which is the
99   correct way to do it.  If you previously used these variables
100   explicitly within a make rule you may need to re-examine your use for
101   correctness given this change.
103 * A new pseudo-target .NOTPARALLEL is available.  If defined, the
104   current makefile is run serially regardless of the value of -j.
105   However, submakes are still eligible for parallel execution.
107 * The --debug option has changed: it now allows optional flags
108   controlling the amount and type of debugging output.  By default only
109   a minimal amount information is generated, displaying the names of
110   "normal" targets (not makefiles) that were deemed out of date and in
111   need of being rebuilt.
113   Note that the -d option behaves as before: it takes no arguments and
114   all debugging information is generated.
116 * The `-p' (print database) output now includes filename and linenumber
117   information for variable definitions, to aid debugging.
119 * The wordlist function no longer reverses its arguments if the "start"
120   value is greater than the "end" value.  If that's true, nothing is
121   returned.
123 * Hartmut Becker provided many updates for the VMS port of GNU make.
124   See the readme.vms file for more details.
126 Version 3.78
128 * Two new functions, $(error ...) and $(warning ...) are available.  The
129   former will cause make to fail and exit immediately upon expansion of
130   the function, with the text provided as the error message.  The latter
131   causes the text provided to be printed as a warning message, but make
132   proceeds normally.
134 * A new function $(call ...) is available.  This allows users to create
135   their own parameterized macros and invoke them later.  Original
136   implementation of this function was provided by Han-Wen Nienhuys
137   <hanwen@cs.uu.nl>.
139 * A new function $(if ...) is available.  It provides if-then-else
140   capabilities in a builtin function.  Original implementation of this
141   function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
143 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
144   library dependency expansion (dependencies like ``-lfoo'') is performed.
146 * Make accepts CRLF sequences as well as traditional LF, for
147   compatibility with makefiles created on other operating systems.
149 * Make accepts a new option: -R, or --no-builtin-variables.  This option
150   disables the definition of the rule-specific builtin variables (CC,
151   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
152   as well.
154 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
156   On systems that support POSIX pipe(2) semantics, GNU make can now pass
157   -jN options to submakes rather than forcing them all to use -j1.  The
158   top make and all its sub-make processes use a pipe to communicate with
159   each other to ensure that no more than N jobs are started across all
160   makes.  To get the old behavior of -j back, you can configure make
161   with the --disable-job-server option.
163 * The confusing term "dependency" has been replaced by the more accurate
164   and standard term "prerequisite", both in the manual and in all GNU make
165   output.
167 * GNU make supports the "big archive" library format introduced in AIX 4.3.
169 * GNU make supports large files on AIX, HP-UX, and IRIX.  These changes
170   were provided by Paul Eggert <eggert@twinsun.com>.  (Large file
171   support for Solaris and Linux was introduced in 3.77, but the
172   configuration had issues: these have also been resolved).
174 * The Windows 95/98/NT (W32) version of GNU make now has native support
175   for the Cygnus Cygwin release B20.1 shell (bash).
177 * The GNU make regression test suite, long available separately "under
178   the table", has been integrated into the release.  You can invoke it
179   by running "make check" in the distribution.  Note that it requires
180   Perl (either Perl 4 or Perl 5) to run.
182 Version 3.77
184 * Implement BSD make's "?=" variable assignment operator.  The variable
185   is assigned the specified value only if that variable is not already
186   defined.
188 * Make defines a new variable, "CURDIR", to contain the current working
189   directory (after the -C option, if any, has been processed).
190   Modifying this variable has no effect on the operation of make.
192 * Make defines a new default RCS rule, for new-style master file
193   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
195   Make defines new default rules for DOS-style C++ file naming
196   conventions, with ``.cpp'' suffixes.  All the same rules as for
197   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
198   COMPILE.cpp macros (which default to the same value as LINK.cc and
199   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
200   use CXXFLAGS to change C++ compiler flags.
202 * A new feature, "target-specific variable values", has been added.
203   This is a large change so please see the appropriate sections of the
204   manual for full details.  Briefly, syntax like this:
206     TARGET: VARIABLE = VALUE
208   defines VARIABLE as VALUE within the context of TARGET.  This is
209   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
210   that the assignment may be of any type, not just recursive, and that
211   the override keyword is available.
213   COMPATIBILITY: This new syntax means that if you have any rules where
214   the first or second dependency has an equal sign (=) in its name,
215   you'll have to escape them with a backslash: "foo : bar\=baz".
216   Further, if you have any dependencies which already contain "\=",
217   you'll have to escape both of them: "foo : bar\\\=baz".
219 * A new appendix listing the most common error and warning messages
220   generated by GNU make, with some explanation, has been added to the
221   GNU make User's Manual.
223 * Updates to the GNU make Customs library support (see README.customs).
225 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
226   and to the DOS port from Eli Zaretski (see README.DOS).
228 Version 3.76.1
230 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
232 Version 3.76
234 * GNU make now uses automake to control Makefile.in generation.  This
235   should make it more consistent with the GNU standards.
237 * VPATH functionality has been changed to incorporate the VPATH+ patch,
238   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
239   manual.
241 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
242   were specified on the command line, if any.  Modifying this variable
243   has no effect on the operation of make.
245 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
246   list of words from number S to number E (inclusive) of TEXT.
248 * Instead of an error, detection of future modification times gives a
249   warning and continues.  The warning is repeated just before GNU make
250   exits, so it is less likely to be lost.
252 * Fix the $(basename) and $(suffix) functions so they only operate on
253   the last filename, not the entire string:
255       Command              Old Result             New Result
256       -------              ----------             ----------
257     $(basename a.b)        a                      a
258     $(basename a.b/c)      a                      a.b/c
259     $(suffix a.b)          b                      b
260     $(suffix a.b/c)        b/c                    <empty>
262 * The $(strip) function now removes newlines as well as TABs and spaces.
264 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
265   as newlines (\n).
267 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
269 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
270   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
271   and utilities.  See README.DOS for details, and direct all questions
272   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
273   Delorie <dj@delorie.com>.
275 * John W. Eaton has updated the VMS port to support libraries and VPATH.
277 Version 3.75
279 * The directory messages printed by `-w' and implicitly in sub-makes,
280   are now omitted if Make runs no commands and has no other messages to print.
282 * Make now detects files that for whatever reason have modification times
283   in the future and gives an error.  Files with such impossible timestamps
284   can result from unsynchronized clocks, or archived distributions
285   containing bogus timestamps; they confuse Make's dependency engine
286   thoroughly.
288 * The new directive `sinclude' is now recognized as another name for
289   `-include', for compatibility with some other Makes.
291 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
292   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
294 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
295   See README.W32 for details, and direct all Windows-related questions to
296   <rob_tulloh@tivoli.com>.
298 Version 3.73
300 * Converted to use Autoconf version 2, so `configure' has some new options.
301   See INSTALL for details.
303 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
304   output enabled by -d, at any time during the run.
306 Version 3.72
308 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
309   He is maintaining the DOS port, not the GNU Make maintainer;
310   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
311   MS-DOS binaries are available for FTP from ftp.simtel.net in
312   /pub/simtelnet/gnu/djgpp/.
314 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
315   contain variable definitions itself; these are treated just like
316   command-line variable definitions.  Make will automatically insert any
317   variable definitions from the environment value of `MAKEFLAGS' or from
318   the command line, into the `MAKEFLAGS' value exported to children.  The
319   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
320   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
321   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
322   in the environment when its size is limited.
324 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
325   a rule if it has changed when its commands exit with a nonzero status,
326   just as when the commands get a signal.
328 * The automatic variable `$+' is new.  It lists all the dependencies like
329   `$^', but preserves duplicates listed in the makefile.  This is useful
330   for linking rules, where library files sometimes need to be listed twice
331   in the link order.
333 * You can now specify the `.IGNORE' and `.SILENT' special targets with
334   dependencies to limit their effects to those files.  If a file appears as
335   a dependency of `.IGNORE', then errors will be ignored while running the
336   commands to update that file.  Likewise if a file appears as a dependency
337   of `.SILENT', then the commands to update that file will not be printed
338   before they are run.  (This change was made to conform to POSIX.2.)
340 Version 3.71
342 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
343   `$(^D)' now omit the trailing slash from the directory name.  (This change
344   was made to comply with POSIX.2.)
346 * The source distribution now includes the Info files for the Make manual.
347   There is no longer a separate distribution containing Info and DVI files.
349 * You can now set the variables `binprefix' and/or `manprefix' in
350   Makefile.in (or on the command line when installing) to install GNU make
351   under a name other than `make' (i.e., ``make binprefix=g install''
352   installs GNU make as `gmake').
354 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
355   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
356   Makeinfo program.
358 * The exit status of Make when it runs into errors is now 2 instead of 1.
359   The exit status is 1 only when using -q and some target is not up to date.
360   (This change was made to comply with POSIX.2.)
362 Version 3.70
364 * It is no longer a fatal error to have a NUL character in a makefile.
365   You should never put a NUL in a makefile because it can have strange
366   results, but otherwise empty lines full of NULs (such as produced by
367   the `xmkmf' program) will always work fine.
369 * The error messages for nonexistent included makefiles now refer to the
370   makefile name and line number where the `include' appeared, so Emacs's
371   C-x ` command takes you there (in case it's a typo you need to fix).
373 Version 3.69
375 * Implicit rule search for archive member references is now done in the
376   opposite order from previous versions: the whole target name `LIB(MEM)'
377   first, and just the member name and parentheses `(MEM)' second.
379 * Make now gives an error for an unterminated variable or function reference.
380   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
382 * The new default variable `MAKE_VERSION' gives the version number of
383   Make, and a string describing the remote job support compiled in (if any).
384   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
386 * Commands in an invocation of the `shell' function are no longer run with
387   a modified environment like target commands are.  As in versions before
388   3.68, they now run with the environment that `make' started with.  We
389   have reversed the change made in version 3.68 because it turned out to
390   cause a paradoxical situation in cases like:
392         export variable = $(shell echo value)
394   When Make attempted to put this variable in the environment for a target
395   command, it would try expand the value by running the shell command
396   `echo value'.  In version 3.68, because it constructed an environment
397   for that shell command in the same way, Make would begin to go into an
398   infinite loop and then get a fatal error when it detected the loop.
400 * The commands given for `.DEFAULT' are now used for phony targets with no
401   commands.
403 Version 3.68
405 * You can list several archive member names inside parenthesis:
406   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
408 * You can use wildcards inside archive member references.  For example,
409   `lib(*.o)' expands to all existing members of `lib' whose names end in
410   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
411   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
412   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
414 * A suffix rule `.X.a' now produces two pattern rules:
415         (%.o): %.X      # Previous versions produced only this.
416         %.a: %.X        # Now produces this as well, just like other suffixes.
418 * The new flag `--warn-undefined-variables' says to issue a warning message
419   whenever Make expands a reference to an undefined variable.
421 * The new `-include' directive is just like `include' except that there is
422   no error (not even a warning) for a nonexistent makefile.
424 * Commands in an invocation of the `shell' function are now run with a
425   modified environment like target commands are, so you can use `export' et
426   al to set up variables for them.  They used to run with the environment
427   that `make' started with.
429 Version 3.66
431 * `make --version' (or `make -v') now exits immediately after printing
432   the version number.
434 Version 3.65
436 * Make now supports long-named members in `ar' archive files.
438 Version 3.64
440 * Make now supports the `+=' syntax for a variable definition which appends
441   to the variable's previous value.  See the section `Appending More Text
442   to Variables' in the manual for full details.
444 * The new option `--no-print-directory' inhibits the `-w' or
445   `--print-directory' feature.  Make turns on `--print-directory'
446   automatically if you use `-C' or `--directory', and in sub-makes; some
447   users have found this behavior undesirable.
449 * The built-in implicit rules now support the alternative extension
450   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
452 Version 3.63
454 * Make now uses a standard GNU `configure' script.  See the new file
455   INSTALL for the new (and much simpler) installation procedure.
457 * There is now a shell script to build Make the first time, if you have no
458   other `make' program.  `build.sh' is created by `configure'; see README.
460 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
462 * Elements of the `$^' and `$?' automatic variables that are archive
463   member references now list only the member name, as in Unix and POSIX.2.
465 * You should no longer ever need to specify the `-w' switch, which prints
466   the current directory before and after Make runs.  The `-C' switch to
467   change directory, and recursive use of Make, now set `-w' automatically.
469 * Multiple double-colon rules for the same target will no longer have their
470   commands run simultaneously under -j, as this could result in the two
471   commands trying to change the file at the same time and interfering with
472   one another.
474 * The `SHELL' variable is now never taken from the environment.
475   Each makefile that wants a shell other than the default (/bin/sh) must
476   set SHELL itself.  SHELL is always exported to child processes.
477   This change was made for compatibility with POSIX.2.
479 * Make now accepts long options.  There is now an informative usage message
480   that tells you what all the options are and what they do.  Try `make --help'.
482 * There are two new directives: `export' and `unexport'.  All variables are
483   no longer automatically put into the environments of the commands that
484   Make runs.  Instead, only variables specified on the command line or in
485   the environment are exported by default.  To export others, use:
486         export VARIABLE
487   or you can define variables with:
488         export VARIABLE = VALUE
489   or:
490         export VARIABLE := VALUE
491   You can use just:
492         export
493   or:
494         .EXPORT_ALL_VARIABLES:
495   to get the old behavior.  See the node `Variables/Recursion' in the manual
496   for a full description.
498 * The commands from the `.DEFAULT' special target are only applied to
499   targets which have no rules at all, not all targets with no commands.
500   This change was made for compatibility with Unix make.
502 * All fatal error messages now contain `***', so they are easy to find in
503   compilation logs.
505 * Dependency file names like `-lNAME' are now replaced with the actual file
506   name found, as with files found by normal directory search (VPATH).
507   The library file `libNAME.a' may now be found in the current directory,
508   which is checked before VPATH; the standard set of directories (/lib,
509   /usr/lib, /usr/local/lib) is now checked last.
510   See the node `Libraries/Search' in the manual for full details.
512 * A single `include' directive can now specify more than one makefile to
513   include, like this:
514         include file1 file2
515   You can also use shell file name patterns in an `include' directive:
516         include *.mk
518 * The default directories to search for included makefiles, and for
519   libraries specified with `-lNAME', are now set by configuration.
521 * You can now use blanks as well as colons to separate the directories in a
522   search path for the `vpath' directive or the `VPATH' variable.
524 * You can now use variables and functions in the left hand side of a
525   variable assignment, as in "$(foo)bar = value".
527 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
528   The `MAKE_COMMAND' variable is now defined to the name with which make
529   was invoked.
531 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
532   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
533   problems with shells that cannot have `+' in environment variable names.
535 * The value of a recursively expanded variable is now expanded when putting
536   it into the environment for child processes.  This change was made for
537   compatibility with Unix make.
539 * A rule with no targets before the `:' is now accepted and ignored.
540   This change was made for compatibility with SunOS 4 make.
541   We do not recommend that you write your makefiles to take advantage of this.
543 * The `-I' switch can now be used in MAKEFLAGS, and are put there
544   automatically just like other switches.
546 Version 3.61
548 * Built-in rules for C++ source files with the `.C' suffix.
549   We still recommend that you use `.cc' instead.
551 * If commands are given too many times for a single target,
552   the last set given is used, and a warning message is printed.
554 * Error messages about makefiles are in standard GNU error format,
555   so C-x ` in Emacs works on them.
557 * Dependencies of pattern rules which contain no % need not actually exist
558   if they can be created (just like dependencies which do have a %).
560 Version 3.60
562 * A message is always printed when Make decides there is nothing to be done.
563   It used to be that no message was printed for top-level phony targets
564   (because "`phony' is up to date" isn't quite right).  Now a different
565   message "Nothing to be done for `phony'" is printed in that case.
567 * Archives on AIX now supposedly work.
569 * When the commands specified for .DEFAULT are used to update a target,
570   the $< automatic variable is given the same value as $@ for that target.
571   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
573 Version 3.59
575 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
576   variables while remaking makefiles, so recursive makes done while remaking
577   makefiles will behave properly.
579 * If the special target `.NOEXPORT' is specified in a makefile,
580   only variables that came from the environment and variables
581   defined on the command line are exported.
583 Version 3.58
585 * Suffix rules may have dependencies (which are ignored).
587 Version 3.57
589 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
590   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
592 Version 3.55
594 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
595 for the Texinfo manual, but it documents the basic functionality and the
596 switches.  For full documentation, you should still read the Texinfo manual.
597 Thanks to Dennis Morse of Stanford University for contributing the initial
598 version of this.
600 * Variables which are defined by default (e.g., `CC') will no longer be put
601 into the environment for child processes.  (If these variables are reset by the
602 environment, makefiles, or the command line, they will still go into the
603 environment.)
605 * Makefiles which have commands but no dependencies (and thus are always
606   considered out of date and in need of remaking), will not be remade (if they
607   were being remade only because they were makefiles).  This means that GNU
608   Make will no longer go into an infinite loop when fed the makefiles that
609   `imake' (necessary to build X Windows) produces.
611 * There is no longer a warning for using the `vpath' directive with an explicit
612 pathname (instead of a `%' pattern).
614 Version 3.51
616 * When removing intermediate files, only one `rm' command line is printed,
617 listing all file names.
619 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
620 These are the directory-only and file-only versions of `$^' and `$?'.
622 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
623 directory if it exists.
625 * The automatic variable `$($/)' is no longer defined.
627 * Leading `+' characters on a command line make that line be executed even
628 under -n, -t, or -q (as if the line contained `$(MAKE)').
630 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
631 only those lines are executed, not their entire rules.
632 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
634 Version 3.50
636 * Filenames in rules will now have ~ and ~USER expanded.
638 * The `-p' output has been changed so it can be used as a makefile.
639 (All information that isn't specified by makefiles is prefaced with comment
640 characters.)
642 Version 3.49
644 * The % character can be quoted with backslash in implicit pattern rules,
645 static pattern rules, `vpath' directives, and `patsubst', `filter', and
646 `filter-out' functions.  A warning is issued if a `vpath' directive's
647 pattern contains no %.
649 * The `wildcard' variable expansion function now expands ~ and ~USER.
651 * Messages indicating failed commands now contain the target name:
652         make: *** [target] Error 1
654 * The `-p' output format has been changed somewhat to look more like
655 makefile rules and to give all information that Make has about files.
657 Version 3.48
659 Version 3.47
661 * The `-l' switch with no argument removes any previous load-average limit.
663 * When the `-w' switch is in effect, and Make has updated makefiles,
664 it will write a `Leaving directory' messagfe before re-executing itself.
665 This makes the `directory change tracking' changes to Emacs's compilation
666 commands work properly.
668 Version 3.46
670 * The automatic variable `$*' is now defined for explicit rules,
671 as it is in Unix make.
673 Version 3.45
675 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
676 specified without an argument (indicating infinite jobs).
677 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
679 * Make no longer checks hashed directories after running commands.
680 The behavior implemented in 3.41 caused too much slowdown.
682 Version 3.44
684 * A dependency is NOT considered newer than its dependent if
685 they have the same modification time.  The behavior implemented
686 in 3.43 conflicts with RCS.
688 Version 3.43
690 * Dependency loops are no longer fatal errors.
692 * A dependency is considered newer than its dependent if
693 they have the same modification time.
695 Version 3.42
697 * The variables F77 and F77FLAGS are now set by default to $(FC) and
698 $(FFLAGS).  Makefiles designed for System V make may use these variables in
699 explicit rules and expect them to be set.  Unfortunately, there is no way to
700 make setting these affect the Fortran implicit rules unless FC and FFLAGS
701 are not used (and these are used by BSD make).
703 Version 3.41
705 * Make now checks to see if its hashed directories are changed by commands.
706 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
708 Version 3.39
710 * The `shell' function no longer captures standard error output.
712 Version 3.32
714 * A file beginning with a dot can be the default target if it also contains
715 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
717 Version 3.31
719 * Archive member names are truncated to 15 characters.
721 * Yet more USG stuff.
723 * Minimal support for Microport System V (a 16-bit machine and a
724 brain-damaged compiler).  This has even lower priority than other USG
725 support, so if it gets beyond trivial, I will take it out completely.
727 * Revamped default implicit rules (not much visible change).
729 * The -d and -p options can come from the environment.
731 Version 3.30
733 * Improved support for USG and HPUX (hopefully).
735 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
736 equivalent to `$(patsubst a,b,$(foo))'.
738 * Defining .DEFAULT with no deps or commands clears its commands.
740 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
741 executable).  All default implicit rules that use cpp (even indirectly), use
742 $(CPPFLAGS).
744 Version 3.29
746 * Giving the -j option with no arguments gives you infinite jobs.
748 Version 3.28
750 * New option: "-l LOAD" says not to start any new jobs while others are
751 running if the load average is not below LOAD (a floating-point number).
753 * There is support in place for implementations of remote command execution
754 in Make.  See the file remote.c.
756 Version 3.26
758 * No more than 10 directories will be kept open at once.
759 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
761 Version 3.25
763 * Archive files will have their modification times recorded before doing
764 anything that might change their modification times by updating an archive
765 member.
767 Version 3.20
769 * The `MAKELEVEL' variable is defined for use by makefiles.
771 Version 3.19
773 * The recursion level indications in error messages are much shorter than
774 they were in version 3.14.
776 Version 3.18
778 * Leading spaces before directives are ignored (as documented).
780 * Included makefiles can determine the default goal target.
781 (System V Make does it this way, so we are being compatible).
783 Version 3.14.
785 * Variables that are defaults built into Make will not be put in the
786 environment for children.  This just saves some environment space and,
787 except under -e, will be transparent to sub-makes.
789 * Error messages from sub-makes will indicate the level of recursion.
791 * Hopefully some speed-up for large directories due to a change in the
792 directory hashing scheme.
794 * One child will always get a standard input that is usable.
796 * Default makefiles that don't exist will be remade and read in.
798 Version 3.13.
800 * Count parentheses inside expansion function calls so you can
801 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
803 Version 3.12.
805 * Several bug fixes, including USG and Sun386i support.
807 * `shell' function to expand shell commands a la `
809 * If the `-d' flag is given, version information will be printed.
811 * The `-c' option has been renamed to `-C' for compatibility with tar.
813 * The `-p' option no longer inhibits other normal operation.
815 * Makefiles will be updated and re-read if necessary.
817 * Can now run several commands at once (parallelism), -j option.
819 * Error messages will contain the level of Make recursion, if any.
821 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
822 makefiles are read.
824 * A double-colon rule with no dependencies will always have its commands run.
825 (This is how both the BSD and System V versions of Make do it.)
827 Version 3.05
829 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
831 ----------------------------------------------------------------------
832 Copyright information:
834    Permission is granted to anyone to make or distribute verbatim copies
835    of this document as received, in any medium, provided that the
836    copyright notice and this permission notice are preserved, thus
837    giving the recipient permission to redistribute in turn.
839    Permission is granted to distribute modified versions of this
840    document, or of portions of it, under the above conditions, provided
841    also that they carry prominent notices stating who last changed them.