Fix Savannah bug # 13478. If -L is given, take the latest mtime for a
[make/kirr.git] / NEWS
blobb39114d6530fafdf1b857a542401d074dabaee07
1 GNU make NEWS                                               -*-indented-text-*-
2   History of user-visible changes.
3   13 May 2005
5 Copyright (C) 2002,2003,2004,2005  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 doc/make.texi.
10 See the README file and the GNU make manual for instructions for
11 reporting bugs.
13 Version 3.81beta3
15 * GNU make is ported to OS/2.
17 * GNU make is ported to MinGW.
19 * WARNING: Backward-incompatibility!
20   GNU make now implements a generic "second expansion" feature on the
21   prerequisites of both explicit and implicit (pattern) rules.  After
22   all rules have been parsed the prerequisites are expanded again, this
23   time with all the automatic variables in scope.  This means that in
24   addition to using standard SysV $$@ in prerequisites lists, you can
25   also use complex functions such as $$(notdir $$@) etc.  This behavior
26   applies to implicit rules, as well, where the second expansion occurs
27   after the rule is matched.  However, this means that you need to
28   double-quote any "$" in your filenames; instead of "foo: boo$$bar" you
29   now must write "foo: foo$$$$bar".
31 * New command-line option: -L (--check-symlink-times).  On systems that
32   support symbolic links, if this option is given then GNU make will
33   use the most recent modification time of any symbolic links that are
34   used to resolve target files.  The default behavior remains as it
35   always has: use the modification time of the actual target file only.
37 * The "else" conditional line can now be followed by any other legal
38   conditional on the same line: this does not increase the depth of the
39   conditional nesting, so only one "endif" is required to close the
40   conditional.
42 * All pattern-specific variables that match a given target are now used
43   (previously only the first match was used).
45 * Target-specific variables can be marked as exportable using the
46   "export" keyword.
48 * In a recursive $(call ...) context, any extra arguments from the outer
49   call are now masked in the context of the inner call.
51 * Implemented a solution for the "thundering herd" problem with "-j -l".
52   This version of GNU make uses an algorithm suggested by Thomas Riedl
53   <thomas.riedl@siemens.com> to track the number of jobs started in the
54   last second and artificially adjust GNU make's view of the system's
55   load average accordingly.
57 * New special variables available in this release:
58    - .FEATURES: Contains a list of special features available in this
59      version of GNU make.
60    - .DEFAULT_GOAL: Set the name of the default goal make will
61      use if no goals are provided on the command line.
62    - MAKE_RESTARTS: If set, then this is the number of times this
63      instance of make has been restarted (see "How Makefiles Are Remade"
64      in the manual).
65    - New automatic variable: $| (added in 3.80, actually): contains all
66      the order-only prerequisites defined for the target.
68 * New functions available in this release:
69    - $(lastword ...) returns the last word in the list.  This gives
70      identical results as $(word $(words ...) ...), but is much faster.
71    - $(abspath ...) returns the absolute path (all "." and ".."
72      directories resolved, and any duplicate "/" characters removed) for
73      each path provided.
74    - $(realpath ...) returns the canonical pathname for each path
75      provided.  The canonical pathname is the absolute pathname, with
76      all symbolic links resolved as well.
77    - $(info ...) prints informative messages to stdout.  No makefile
78      name or line number info, etc. is printed, just the message.
80 * Changes made for POSIX compatibility:
81    - Only touch targets (under -t) if they have at least one command.
82    - Setting the SHELL make variable does NOT change the value of the
83      SHELL environment variable given to programs invoked by make.  As
84      an enhancement to POSIX, if you export the make variable SHELL then
85      it will be set in the environment, just as before.
87 * On DOS and MS Windows systems, explicitly setting SHELL to a pathname
88   ending in "cmd" or "cmd.exe" (case-insensitive) will force GNU make to
89   use the DOS command interpreter in batch mode even if a UNIX-like
90   shell could be found on the system.
92 * Updated to autoconf 2.59, automake 1.8.2, and gettext 0.14.1.  Users
93   should not be impacted.
95 * New translations for Swedish, Chinese (simplified), Ukrainian,
96   Belarusian, Finnish, Kinyarwandan, and Irish.  Many updated
97   translations.
100 Version 3.80
102 * A new feature exists: order-only prerequisites.  These prerequisites
103   affect the order in which targets are built, but they do not impact
104   the rebuild/no-rebuild decision of their dependents.  That is to say,
105   they allow you to require target B be built before target A, without
106   requiring that target A will always be rebuilt if target B is updated.
107   Patch for this feature provided by Greg McGary <greg@mcgary.org>.
109 * For compatibility with SysV make, GNU make now supports the peculiar
110   syntax $$@, $$(@D), and $$(@F) in the prerequisites list of a rule.
111   This syntax is only valid within explicit and static pattern rules: it
112   cannot be used in implicit (suffix or pattern) rules.  Edouard G. Parmelan
113   <egp@free.fr> provided a patch implementing this feature; however, I
114   decided to implement it in a different way.
116 * The argument to the "ifdef" conditional is now expanded before it's
117   tested, so it can be a constructed variable name.
119   Similarly, the arguments to "export" (when not used in a variable
120   definition context) and "unexport" are also now expanded.
122 * A new function is defined: $(value ...).  The argument to this
123   function is the _name_ of a variable.  The result of the function is
124   the value of the variable, without having been expanded.
126 * A new function is defined: $(eval ...).  The arguments to this
127   function should expand to makefile commands, which will then be
128   evaluated as if they had appeared in the makefile.  In combination
129   with define/endef multiline variable definitions this is an extremely
130   powerful capability.  The $(value ...) function is also sometimes
131   useful here.
133 * A new built-in variable is defined, $(MAKEFILE_LIST).  It contains a
134   list of each makefile GNU make has read, or started to read, in the
135   order in which they were encountered.  So, the last filename in the
136   list when a makefile is just being read (before any includes) is the
137   name of the current makefile.
139 * A new built-in variable is defined: $(.VARIABLES).  When it is
140   expanded it returns a complete list of variable names defined by all
141   makefiles at that moment.
143 * A new command-line option is defined, -B or --always-make.  If
144   specified GNU make will consider all targets out-of-date even if they
145   would otherwise not be.
147 * The arguments to $(call ...) functions were being stored in $1, $2,
148   etc. as recursive variables, even though they are fully expanded
149   before assignment.  This means that escaped dollar signs ($$ etc.)
150   were not behaving properly.  Now the arguments are stored as simple
151   variables.  This may mean that if you added extra escaping to your
152   $(call ...) function arguments you will need to undo it now.
154 * The variable invoked by $(call ...) can now be recursive: unlike other
155   variables it can reference itself and this will not produce an error
156   when it is used as the first argument to $(call ...) (but only then).
158 * New pseudo-target .LOW_RESOLUTION_TIME, superseding the configure
159   option --disable-nsec-timestamps.  You might need this if your build
160   process depends on tools like "cp -p" preserving time stamps, since
161   "cp -p" (right now) doesn't preserve the subsecond portion of a time
162   stamp.
164 * Updated translations for French, Galician, German, Japanese, Korean,
165   and Russian.  New translations for Croatian, Danish, Hebrew, and
166   Turkish.
168 * Updated internationalization support to Gettext 0.11.5.
169   GNU make now uses Gettext's "external" feature, and does not include
170   any internationalization code itself.  Configure will search your
171   system for an existing implementation of GNU Gettext (only GNU Gettext
172   is acceptable) and use it if it exists.  If not, NLS will be disabled.
173   See ABOUT-NLS for more information.
175 * Updated to autoconf 2.54 and automake 1.7.  Users should not be impacted.
177 Version 3.79.1
179 * .SECONDARY with no prerequisites now prevents any target from being
180   removed because make thinks it's an intermediate file, not just those
181   listed in the makefile.
183 * New configure option --disable-nsec-timestamps, but this was
184   superseded in later versions by the .LOW_RESOLUTION_TIME pseudo-target.
186 Version 3.79
188 * GNU make optionally supports internationalization and locales via the
189   GNU gettext (or local gettext if suitable) package.  See the ABOUT-NLS
190   file for more information on configuring GNU make for NLS.
192 * Previously, GNU make quoted variables such as MAKEFLAGS and
193   MAKEOVERRIDES for proper parsing by the shell.  This allowed them to
194   be used within make build scripts.  However, using them there is not
195   proper behavior: they are meant to be passed to subshells via the
196   environment.  Unfortunately the values were not quoted properly to be
197   passed through the environment.  This meant that make didn't properly
198   pass some types of command line values to submakes.
200   With this version we change that behavior: now these variables are
201   quoted properly for passing through the environment, which is the
202   correct way to do it.  If you previously used these variables
203   explicitly within a make rule you may need to re-examine your use for
204   correctness given this change.
206 * A new pseudo-target .NOTPARALLEL is available.  If defined, the
207   current makefile is run serially regardless of the value of -j.
208   However, submakes are still eligible for parallel execution.
210 * The --debug option has changed: it now allows optional flags
211   controlling the amount and type of debugging output.  By default only
212   a minimal amount information is generated, displaying the names of
213   "normal" targets (not makefiles) that were deemed out of date and in
214   need of being rebuilt.
216   Note that the -d option behaves as before: it takes no arguments and
217   all debugging information is generated.
219 * The `-p' (print database) output now includes filename and linenumber
220   information for variable definitions, to aid debugging.
222 * The wordlist function no longer reverses its arguments if the "start"
223   value is greater than the "end" value.  If that's true, nothing is
224   returned.
226 * Hartmut Becker provided many updates for the VMS port of GNU make.
227   See the readme.vms file for more details.
229 Version 3.78
231 * Two new functions, $(error ...) and $(warning ...) are available.  The
232   former will cause make to fail and exit immediately upon expansion of
233   the function, with the text provided as the error message.  The latter
234   causes the text provided to be printed as a warning message, but make
235   proceeds normally.
237 * A new function $(call ...) is available.  This allows users to create
238   their own parameterized macros and invoke them later.  Original
239   implementation of this function was provided by Han-Wen Nienhuys
240   <hanwen@cs.uu.nl>.
242 * A new function $(if ...) is available.  It provides if-then-else
243   capabilities in a builtin function.  Original implementation of this
244   function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
246 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
247   library dependency expansion (dependencies like ``-lfoo'') is performed.
249 * Make accepts CRLF sequences as well as traditional LF, for
250   compatibility with makefiles created on other operating systems.
252 * Make accepts a new option: -R, or --no-builtin-variables.  This option
253   disables the definition of the rule-specific builtin variables (CC,
254   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
255   as well.
257 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
259   On systems that support POSIX pipe(2) semantics, GNU make can now pass
260   -jN options to submakes rather than forcing them all to use -j1.  The
261   top make and all its sub-make processes use a pipe to communicate with
262   each other to ensure that no more than N jobs are started across all
263   makes.  To get the old behavior of -j back, you can configure make
264   with the --disable-job-server option.
266 * The confusing term "dependency" has been replaced by the more accurate
267   and standard term "prerequisite", both in the manual and in all GNU make
268   output.
270 * GNU make supports the "big archive" library format introduced in AIX 4.3.
272 * GNU make supports large files on AIX, HP-UX, and IRIX.  These changes
273   were provided by Paul Eggert <eggert@twinsun.com>.  (Large file
274   support for Solaris and Linux was introduced in 3.77, but the
275   configuration had issues: these have also been resolved).
277 * The Windows 95/98/NT (W32) version of GNU make now has native support
278   for the Cygnus Cygwin release B20.1 shell (bash).
280 * The GNU make regression test suite, long available separately "under
281   the table", has been integrated into the release.  You can invoke it
282   by running "make check" in the distribution.  Note that it requires
283   Perl (either Perl 4 or Perl 5) to run.
285 Version 3.77
287 * Implement BSD make's "?=" variable assignment operator.  The variable
288   is assigned the specified value only if that variable is not already
289   defined.
291 * Make defines a new variable, "CURDIR", to contain the current working
292   directory (after the -C option, if any, has been processed).
293   Modifying this variable has no effect on the operation of make.
295 * Make defines a new default RCS rule, for new-style master file
296   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
298   Make defines new default rules for DOS-style C++ file naming
299   conventions, with ``.cpp'' suffixes.  All the same rules as for
300   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
301   COMPILE.cpp macros (which default to the same value as LINK.cc and
302   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
303   use CXXFLAGS to change C++ compiler flags.
305 * A new feature, "target-specific variable values", has been added.
306   This is a large change so please see the appropriate sections of the
307   manual for full details.  Briefly, syntax like this:
309     TARGET: VARIABLE = VALUE
311   defines VARIABLE as VALUE within the context of TARGET.  This is
312   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
313   that the assignment may be of any type, not just recursive, and that
314   the override keyword is available.
316   COMPATIBILITY: This new syntax means that if you have any rules where
317   the first or second dependency has an equal sign (=) in its name,
318   you'll have to escape them with a backslash: "foo : bar\=baz".
319   Further, if you have any dependencies which already contain "\=",
320   you'll have to escape both of them: "foo : bar\\\=baz".
322 * A new appendix listing the most common error and warning messages
323   generated by GNU make, with some explanation, has been added to the
324   GNU make User's Manual.
326 * Updates to the GNU make Customs library support (see README.customs).
328 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
329   and to the DOS port from Eli Zaretski (see README.DOS).
331 Version 3.76.1
333 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
335 Version 3.76
337 * GNU make now uses automake to control Makefile.in generation.  This
338   should make it more consistent with the GNU standards.
340 * VPATH functionality has been changed to incorporate the VPATH+ patch,
341   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
342   manual.
344 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
345   were specified on the command line, if any.  Modifying this variable
346   has no effect on the operation of make.
348 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
349   list of words from number S to number E (inclusive) of TEXT.
351 * Instead of an error, detection of future modification times gives a
352   warning and continues.  The warning is repeated just before GNU make
353   exits, so it is less likely to be lost.
355 * Fix the $(basename) and $(suffix) functions so they only operate on
356   the last filename, not the entire string:
358       Command              Old Result             New Result
359       -------              ----------             ----------
360     $(basename a.b)        a                      a
361     $(basename a.b/c)      a                      a.b/c
362     $(suffix a.b)          b                      b
363     $(suffix a.b/c)        b/c                    <empty>
365 * The $(strip) function now removes newlines as well as TABs and spaces.
367 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
368   as newlines (\n).
370 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
372 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
373   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
374   and utilities.  See README.DOS for details, and direct all questions
375   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
376   Delorie <dj@delorie.com>.
378 * John W. Eaton has updated the VMS port to support libraries and VPATH.
380 Version 3.75
382 * The directory messages printed by `-w' and implicitly in sub-makes,
383   are now omitted if Make runs no commands and has no other messages to print.
385 * Make now detects files that for whatever reason have modification times
386   in the future and gives an error.  Files with such impossible timestamps
387   can result from unsynchronized clocks, or archived distributions
388   containing bogus timestamps; they confuse Make's dependency engine
389   thoroughly.
391 * The new directive `sinclude' is now recognized as another name for
392   `-include', for compatibility with some other Makes.
394 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
395   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
397 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
398   See README.W32 for details, and direct all Windows-related questions to
399   <rob_tulloh@tivoli.com>.
401 Version 3.73
403 * Converted to use Autoconf version 2, so `configure' has some new options.
404   See INSTALL for details.
406 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
407   output enabled by -d, at any time during the run.
409 Version 3.72
411 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
412   He is maintaining the DOS port, not the GNU Make maintainer;
413   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
414   MS-DOS binaries are available for FTP from ftp.simtel.net in
415   /pub/simtelnet/gnu/djgpp/.
417 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
418   contain variable definitions itself; these are treated just like
419   command-line variable definitions.  Make will automatically insert any
420   variable definitions from the environment value of `MAKEFLAGS' or from
421   the command line, into the `MAKEFLAGS' value exported to children.  The
422   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
423   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
424   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
425   in the environment when its size is limited.
427 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
428   a rule if it has changed when its commands exit with a nonzero status,
429   just as when the commands get a signal.
431 * The automatic variable `$+' is new.  It lists all the dependencies like
432   `$^', but preserves duplicates listed in the makefile.  This is useful
433   for linking rules, where library files sometimes need to be listed twice
434   in the link order.
436 * You can now specify the `.IGNORE' and `.SILENT' special targets with
437   dependencies to limit their effects to those files.  If a file appears as
438   a dependency of `.IGNORE', then errors will be ignored while running the
439   commands to update that file.  Likewise if a file appears as a dependency
440   of `.SILENT', then the commands to update that file will not be printed
441   before they are run.  (This change was made to conform to POSIX.2.)
443 Version 3.71
445 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
446   `$(^D)' now omit the trailing slash from the directory name.  (This change
447   was made to comply with POSIX.2.)
449 * The source distribution now includes the Info files for the Make manual.
450   There is no longer a separate distribution containing Info and DVI files.
452 * You can now set the variables `binprefix' and/or `manprefix' in
453   Makefile.in (or on the command line when installing) to install GNU make
454   under a name other than `make' (i.e., ``make binprefix=g install''
455   installs GNU make as `gmake').
457 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
458   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
459   Makeinfo program.
461 * The exit status of Make when it runs into errors is now 2 instead of 1.
462   The exit status is 1 only when using -q and some target is not up to date.
463   (This change was made to comply with POSIX.2.)
465 Version 3.70
467 * It is no longer a fatal error to have a NUL character in a makefile.
468   You should never put a NUL in a makefile because it can have strange
469   results, but otherwise empty lines full of NULs (such as produced by
470   the `xmkmf' program) will always work fine.
472 * The error messages for nonexistent included makefiles now refer to the
473   makefile name and line number where the `include' appeared, so Emacs's
474   C-x ` command takes you there (in case it's a typo you need to fix).
476 Version 3.69
478 * Implicit rule search for archive member references is now done in the
479   opposite order from previous versions: the whole target name `LIB(MEM)'
480   first, and just the member name and parentheses `(MEM)' second.
482 * Make now gives an error for an unterminated variable or function reference.
483   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
485 * The new default variable `MAKE_VERSION' gives the version number of
486   Make, and a string describing the remote job support compiled in (if any).
487   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
489 * Commands in an invocation of the `shell' function are no longer run with
490   a modified environment like target commands are.  As in versions before
491   3.68, they now run with the environment that `make' started with.  We
492   have reversed the change made in version 3.68 because it turned out to
493   cause a paradoxical situation in cases like:
495         export variable = $(shell echo value)
497   When Make attempted to put this variable in the environment for a target
498   command, it would try expand the value by running the shell command
499   `echo value'.  In version 3.68, because it constructed an environment
500   for that shell command in the same way, Make would begin to go into an
501   infinite loop and then get a fatal error when it detected the loop.
503 * The commands given for `.DEFAULT' are now used for phony targets with no
504   commands.
506 Version 3.68
508 * You can list several archive member names inside parenthesis:
509   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
511 * You can use wildcards inside archive member references.  For example,
512   `lib(*.o)' expands to all existing members of `lib' whose names end in
513   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
514   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
515   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
517 * A suffix rule `.X.a' now produces two pattern rules:
518         (%.o): %.X      # Previous versions produced only this.
519         %.a: %.X        # Now produces this as well, just like other suffixes.
521 * The new flag `--warn-undefined-variables' says to issue a warning message
522   whenever Make expands a reference to an undefined variable.
524 * The new `-include' directive is just like `include' except that there is
525   no error (not even a warning) for a nonexistent makefile.
527 * Commands in an invocation of the `shell' function are now run with a
528   modified environment like target commands are, so you can use `export' et
529   al to set up variables for them.  They used to run with the environment
530   that `make' started with.
532 Version 3.66
534 * `make --version' (or `make -v') now exits immediately after printing
535   the version number.
537 Version 3.65
539 * Make now supports long-named members in `ar' archive files.
541 Version 3.64
543 * Make now supports the `+=' syntax for a variable definition which appends
544   to the variable's previous value.  See the section `Appending More Text
545   to Variables' in the manual for full details.
547 * The new option `--no-print-directory' inhibits the `-w' or
548   `--print-directory' feature.  Make turns on `--print-directory'
549   automatically if you use `-C' or `--directory', and in sub-makes; some
550   users have found this behavior undesirable.
552 * The built-in implicit rules now support the alternative extension
553   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
555 Version 3.63
557 * Make now uses a standard GNU `configure' script.  See the new file
558   INSTALL for the new (and much simpler) installation procedure.
560 * There is now a shell script to build Make the first time, if you have no
561   other `make' program.  `build.sh' is created by `configure'; see README.
563 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
565 * Elements of the `$^' and `$?' automatic variables that are archive
566   member references now list only the member name, as in Unix and POSIX.2.
568 * You should no longer ever need to specify the `-w' switch, which prints
569   the current directory before and after Make runs.  The `-C' switch to
570   change directory, and recursive use of Make, now set `-w' automatically.
572 * Multiple double-colon rules for the same target will no longer have their
573   commands run simultaneously under -j, as this could result in the two
574   commands trying to change the file at the same time and interfering with
575   one another.
577 * The `SHELL' variable is now never taken from the environment.
578   Each makefile that wants a shell other than the default (/bin/sh) must
579   set SHELL itself.  SHELL is always exported to child processes.
580   This change was made for compatibility with POSIX.2.
582 * Make now accepts long options.  There is now an informative usage message
583   that tells you what all the options are and what they do.  Try `make --help'.
585 * There are two new directives: `export' and `unexport'.  All variables are
586   no longer automatically put into the environments of the commands that
587   Make runs.  Instead, only variables specified on the command line or in
588   the environment are exported by default.  To export others, use:
589         export VARIABLE
590   or you can define variables with:
591         export VARIABLE = VALUE
592   or:
593         export VARIABLE := VALUE
594   You can use just:
595         export
596   or:
597         .EXPORT_ALL_VARIABLES:
598   to get the old behavior.  See the node `Variables/Recursion' in the manual
599   for a full description.
601 * The commands from the `.DEFAULT' special target are only applied to
602   targets which have no rules at all, not all targets with no commands.
603   This change was made for compatibility with Unix make.
605 * All fatal error messages now contain `***', so they are easy to find in
606   compilation logs.
608 * Dependency file names like `-lNAME' are now replaced with the actual file
609   name found, as with files found by normal directory search (VPATH).
610   The library file `libNAME.a' may now be found in the current directory,
611   which is checked before VPATH; the standard set of directories (/lib,
612   /usr/lib, /usr/local/lib) is now checked last.
613   See the node `Libraries/Search' in the manual for full details.
615 * A single `include' directive can now specify more than one makefile to
616   include, like this:
617         include file1 file2
618   You can also use shell file name patterns in an `include' directive:
619         include *.mk
621 * The default directories to search for included makefiles, and for
622   libraries specified with `-lNAME', are now set by configuration.
624 * You can now use blanks as well as colons to separate the directories in a
625   search path for the `vpath' directive or the `VPATH' variable.
627 * You can now use variables and functions in the left hand side of a
628   variable assignment, as in "$(foo)bar = value".
630 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
631   The `MAKE_COMMAND' variable is now defined to the name with which make
632   was invoked.
634 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
635   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
636   problems with shells that cannot have `+' in environment variable names.
638 * The value of a recursively expanded variable is now expanded when putting
639   it into the environment for child processes.  This change was made for
640   compatibility with Unix make.
642 * A rule with no targets before the `:' is now accepted and ignored.
643   This change was made for compatibility with SunOS 4 make.
644   We do not recommend that you write your makefiles to take advantage of this.
646 * The `-I' switch can now be used in MAKEFLAGS, and are put there
647   automatically just like other switches.
649 Version 3.61
651 * Built-in rules for C++ source files with the `.C' suffix.
652   We still recommend that you use `.cc' instead.
654 * If commands are given too many times for a single target,
655   the last set given is used, and a warning message is printed.
657 * Error messages about makefiles are in standard GNU error format,
658   so C-x ` in Emacs works on them.
660 * Dependencies of pattern rules which contain no % need not actually exist
661   if they can be created (just like dependencies which do have a %).
663 Version 3.60
665 * A message is always printed when Make decides there is nothing to be done.
666   It used to be that no message was printed for top-level phony targets
667   (because "`phony' is up to date" isn't quite right).  Now a different
668   message "Nothing to be done for `phony'" is printed in that case.
670 * Archives on AIX now supposedly work.
672 * When the commands specified for .DEFAULT are used to update a target,
673   the $< automatic variable is given the same value as $@ for that target.
674   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
676 Version 3.59
678 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
679   variables while remaking makefiles, so recursive makes done while remaking
680   makefiles will behave properly.
682 * If the special target `.NOEXPORT' is specified in a makefile,
683   only variables that came from the environment and variables
684   defined on the command line are exported.
686 Version 3.58
688 * Suffix rules may have dependencies (which are ignored).
690 Version 3.57
692 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
693   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
695 Version 3.55
697 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
698 for the Texinfo manual, but it documents the basic functionality and the
699 switches.  For full documentation, you should still read the Texinfo manual.
700 Thanks to Dennis Morse of Stanford University for contributing the initial
701 version of this.
703 * Variables which are defined by default (e.g., `CC') will no longer be put
704 into the environment for child processes.  (If these variables are reset by the
705 environment, makefiles, or the command line, they will still go into the
706 environment.)
708 * Makefiles which have commands but no dependencies (and thus are always
709   considered out of date and in need of remaking), will not be remade (if they
710   were being remade only because they were makefiles).  This means that GNU
711   Make will no longer go into an infinite loop when fed the makefiles that
712   `imake' (necessary to build X Windows) produces.
714 * There is no longer a warning for using the `vpath' directive with an explicit
715 pathname (instead of a `%' pattern).
717 Version 3.51
719 * When removing intermediate files, only one `rm' command line is printed,
720 listing all file names.
722 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
723 These are the directory-only and file-only versions of `$^' and `$?'.
725 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
726 directory if it exists.
728 * The automatic variable `$($/)' is no longer defined.
730 * Leading `+' characters on a command line make that line be executed even
731 under -n, -t, or -q (as if the line contained `$(MAKE)').
733 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
734 only those lines are executed, not their entire rules.
735 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
737 Version 3.50
739 * Filenames in rules will now have ~ and ~USER expanded.
741 * The `-p' output has been changed so it can be used as a makefile.
742 (All information that isn't specified by makefiles is prefaced with comment
743 characters.)
745 Version 3.49
747 * The % character can be quoted with backslash in implicit pattern rules,
748 static pattern rules, `vpath' directives, and `patsubst', `filter', and
749 `filter-out' functions.  A warning is issued if a `vpath' directive's
750 pattern contains no %.
752 * The `wildcard' variable expansion function now expands ~ and ~USER.
754 * Messages indicating failed commands now contain the target name:
755         make: *** [target] Error 1
757 * The `-p' output format has been changed somewhat to look more like
758 makefile rules and to give all information that Make has about files.
760 Version 3.48
762 Version 3.47
764 * The `-l' switch with no argument removes any previous load-average limit.
766 * When the `-w' switch is in effect, and Make has updated makefiles,
767 it will write a `Leaving directory' messagfe before re-executing itself.
768 This makes the `directory change tracking' changes to Emacs's compilation
769 commands work properly.
771 Version 3.46
773 * The automatic variable `$*' is now defined for explicit rules,
774 as it is in Unix make.
776 Version 3.45
778 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
779 specified without an argument (indicating infinite jobs).
780 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
782 * Make no longer checks hashed directories after running commands.
783 The behavior implemented in 3.41 caused too much slowdown.
785 Version 3.44
787 * A dependency is NOT considered newer than its dependent if
788 they have the same modification time.  The behavior implemented
789 in 3.43 conflicts with RCS.
791 Version 3.43
793 * Dependency loops are no longer fatal errors.
795 * A dependency is considered newer than its dependent if
796 they have the same modification time.
798 Version 3.42
800 * The variables F77 and F77FLAGS are now set by default to $(FC) and
801 $(FFLAGS).  Makefiles designed for System V make may use these variables in
802 explicit rules and expect them to be set.  Unfortunately, there is no way to
803 make setting these affect the Fortran implicit rules unless FC and FFLAGS
804 are not used (and these are used by BSD make).
806 Version 3.41
808 * Make now checks to see if its hashed directories are changed by commands.
809 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
811 Version 3.39
813 * The `shell' function no longer captures standard error output.
815 Version 3.32
817 * A file beginning with a dot can be the default target if it also contains
818 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
820 Version 3.31
822 * Archive member names are truncated to 15 characters.
824 * Yet more USG stuff.
826 * Minimal support for Microport System V (a 16-bit machine and a
827 brain-damaged compiler).  This has even lower priority than other USG
828 support, so if it gets beyond trivial, I will take it out completely.
830 * Revamped default implicit rules (not much visible change).
832 * The -d and -p options can come from the environment.
834 Version 3.30
836 * Improved support for USG and HPUX (hopefully).
838 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
839 equivalent to `$(patsubst a,b,$(foo))'.
841 * Defining .DEFAULT with no deps or commands clears its commands.
843 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
844 executable).  All default implicit rules that use cpp (even indirectly), use
845 $(CPPFLAGS).
847 Version 3.29
849 * Giving the -j option with no arguments gives you infinite jobs.
851 Version 3.28
853 * New option: "-l LOAD" says not to start any new jobs while others are
854 running if the load average is not below LOAD (a floating-point number).
856 * There is support in place for implementations of remote command execution
857 in Make.  See the file remote.c.
859 Version 3.26
861 * No more than 10 directories will be kept open at once.
862 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
864 Version 3.25
866 * Archive files will have their modification times recorded before doing
867 anything that might change their modification times by updating an archive
868 member.
870 Version 3.20
872 * The `MAKELEVEL' variable is defined for use by makefiles.
874 Version 3.19
876 * The recursion level indications in error messages are much shorter than
877 they were in version 3.14.
879 Version 3.18
881 * Leading spaces before directives are ignored (as documented).
883 * Included makefiles can determine the default goal target.
884 (System V Make does it this way, so we are being compatible).
886 Version 3.14.
888 * Variables that are defaults built into Make will not be put in the
889 environment for children.  This just saves some environment space and,
890 except under -e, will be transparent to sub-makes.
892 * Error messages from sub-makes will indicate the level of recursion.
894 * Hopefully some speed-up for large directories due to a change in the
895 directory hashing scheme.
897 * One child will always get a standard input that is usable.
899 * Default makefiles that don't exist will be remade and read in.
901 Version 3.13.
903 * Count parentheses inside expansion function calls so you can
904 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
906 Version 3.12.
908 * Several bug fixes, including USG and Sun386i support.
910 * `shell' function to expand shell commands a la `
912 * If the `-d' flag is given, version information will be printed.
914 * The `-c' option has been renamed to `-C' for compatibility with tar.
916 * The `-p' option no longer inhibits other normal operation.
918 * Makefiles will be updated and re-read if necessary.
920 * Can now run several commands at once (parallelism), -j option.
922 * Error messages will contain the level of Make recursion, if any.
924 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
925 makefiles are read.
927 * A double-colon rule with no dependencies will always have its commands run.
928 (This is how both the BSD and System V versions of Make do it.)
930 Version 3.05
932 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
934 ----------------------------------------------------------------------
935 Copyright information:
937    Permission is granted to anyone to make or distribute verbatim copies
938    of this document as received, in any medium, provided that the
939    copyright notice and this permission notice are preserved, thus
940    giving the recipient permission to redistribute in turn.
942    Permission is granted to distribute modified versions of this
943    document, or of portions of it, under the above conditions, provided
944    also that they carry prominent notices stating who last changed them.