Disallow whitespace in variable names.
[make.git] / NEWS
blob4c50086dc7f94b8d2dbc748d01cdbd9baafedd67
1 GNU make NEWS                                               -*-indented-text-*-
2   History of user-visible changes.
3   15 January 2012
5 See the end of this file for copyrights and conditions.
7 All changes mentioned here are more fully described in the GNU make
8 manual, which is contained in this distribution as the file doc/make.texi.
9 See the README file and the GNU make manual for instructions for
10 reporting bugs.
12 Version 3.82.90
14 A complete list of bugs fixed in this version is available here:
16 http://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=101&set=custom
18 * WARNING: Backward-incompatibility!
19   This version of make adheres to the POSIX backslash/newline handling,
20   introducing the following differences:
21     * Each backslash/newline in a variable value is replaced with a space;
22       multiple consecutive backslash/newlines do not condense into one space.
23     * In recipes, a recipe prefix following a backslash-newlines is removed.
25 * New feature: The "job server" capability is now supported on Windows.
26   Implementation contributed by Troy Runkel <Troy.Runkel@mathworks.com>
28 * New feature: "!=" shell assignment operator as an alternative to the
29   $(shell ...) function.  Implemented for compatibility with BSD makefiles.
30   WARNING: Backward-incompatibility!
31   Variables ending in "!" previously defined as "variable!= value" will now be
32   interpreted as shell assignment.  Change your assignment to add whitespace
33   between the "!" and "=": "variable! = value"
35 * New Feature: GNU Guile integration
36   This version of GNU make can be compiled with GNU Guile integration.
37   GNU Guile serves as an embedded extension language for make.
38   See the "Guile Function" section in the GNU Make manual for details.
40 * New command line option: --trace enables tracing of targets.  When enabled
41   the recipe to be invoked is printed even if it would otherwise be suppressed
42   by .SILENT or a "@" prefix character.  Also before each recipe is run the
43   makefile name and linenumber where it was defined are shown as well as the
44   prerequisites that caused the target to be considered out of date.
46 * On failure, the makefile name and linenumber of the recipe that failed are
47   shown.
49 * A .RECIPEPREFIX setting is remembered per-recipe and variables expanded
50   in that recipe also use that recipe prefix setting.
52 * In -p output, .RECIPEPREFIX settings are shown and all target-specific
53   variables are output as if in a makefile, instead of as comments.
56 Version 3.82
58 A complete list of bugs fixed in this version is available here:
60 http://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=104&set=custom
62 * Compiling GNU make now requires a conforming ISO C 1989 compiler and
63   standard runtime library.
65 * WARNING: Backward-incompatibility!
66   The POSIX standard for make was changed in the 2008 version in a
67   fundamentally incompatible way: make is required to invoke the shell as if
68   the '-e' flag were provided.  Because this would break many makefiles that
69   have been written to conform to the original text of the standard, the
70   default behavior of GNU make remains to invoke the shell with simply '-c'.
71   However, any makefile specifying the .POSIX special target will follow the
72   new POSIX standard and pass '-e' to the shell.  See also .SHELLFLAGS
73   below.
75 * WARNING: Backward-incompatibility!
76   The '$?' variable now contains all prerequisites that caused the target to
77   be considered out of date, even if they do not exist (previously only
78   existing targets were provided in $?).
80 * WARNING: Backward-incompatibility!
81   Wildcards were not documented as returning sorted values, but the results
82   have been sorted up until this release..  If your makefiles require sorted
83   results from wildcard expansions, use the $(sort ...)  function to request
84   it explicitly.
86 * WARNING: Backward-incompatibility!
87   In previous versions of make it was acceptable to list one or more explicit
88   targets followed by one or more pattern targets in the same rule and it
89   worked "as expected".  However, this was not documented as acceptable and if
90   you listed any explicit targets AFTER the pattern targets, the entire rule
91   would be mis-parsed.  This release removes this ability completely: make
92   will generate an error message if you mix explicit and pattern targets in
93   the same rule.
95 * WARNING: Backward-incompatibility!
96   As a result of parser enhancements, three backward-compatibility issues
97   exist: first, a prerequisite containing an "=" cannot be escaped with a
98   backslash any longer.  You must create a variable containing an "=" and
99   use that variable in the prerequisite.  Second, variable names can no
100   longer contain whitespace, unless you put the whitespace in a variable and
101   use the variable.  Third, in previous versions of make it was sometimes
102   not flagged as an error for explicit and pattern targets to appear in the
103   same rule.  Now this is always reported as an error.
105 * WARNING: Backward-incompatibility!
106   The pattern-specific variables and pattern rules are now applied in the
107   shortest stem first order instead of the definition order (variables
108   and rules with the same stem length are still applied in the definition
109   order). This produces the usually-desired behavior where more specific
110   patterns are preferred. To detect this feature search for 'shortest-stem'
111   in the .FEATURES special variable.
113 * WARNING: Backward-incompatibility!
114   The library search behavior has changed to be compatible with the standard
115   linker behavior. Prior to this version for prerequisites specified using
116   the -lfoo syntax make first searched for libfoo.so in the current
117   directory, vpath directories, and system directories. If that didn't yield
118   a match, make then searched for libfoo.a in these directories. Starting
119   with this version make searches first for libfoo.so and then for libfoo.a
120   in each of these directories in order.
122 * New command line option: --eval=STRING causes STRING to be evaluated as
123   makefile syntax (akin to using the $(eval ...) function).  The evaluation
124   is performed after all default rules and variables are defined, but before
125   any makefiles are read.
127 * New special variable: .RECIPEPREFIX allows you to reset the recipe
128   introduction character from the default (TAB) to something else.  The
129   first character of this variable value is the new recipe introduction
130   character.  If the variable is set to the empty string, TAB is used again.
131   It can be set and reset at will; recipes will use the value active when
132   they were first parsed.  To detect this feature check the value of
133   $(.RECIPEPREFIX).
135 * New special variable: .SHELLFLAGS allows you to change the options passed
136   to the shell when it invokes recipes.  By default the value will be "-c"
137   (or "-ec" if .POSIX is set).
139 * New special target: .ONESHELL instructs make to invoke a single instance
140   of the shell and provide it with the entire recipe, regardless of how many
141   lines it contains.  As a special feature to allow more straightforward
142   conversion of makefiles to use .ONESHELL, any recipe line control
143   characters ('@', '+', or '-') will be removed from the second and
144   subsequent recipe lines.  This happens _only_ if the SHELL value is deemed
145   to be a standard POSIX-style shell.  If not, then no interior line control
146   characters are removed (as they may be part of the scripting language used
147   with the alternate SHELL).
149 * New variable modifier 'private': prefixing a variable assignment with the
150   modifier 'private' suppresses inheritance of that variable by
151   prerequisites.  This is most useful for target- and pattern-specific
152   variables.
154 * New make directive: 'undefine' allows you to undefine a variable so that
155   it appears as if it was never set. Both $(flavor) and $(origin) functions
156   will return 'undefined' for such a variable. To detect this feature search
157   for 'undefine' in the .FEATURES special variable.
159 * The parser for variable assignments has been enhanced to allow multiple
160   modifiers ('export', 'override', 'private') on the same line as variables,
161   including define/endef variables, and in any order.  Also, it is possible
162   to create variables and targets named as these modifiers.
164 * The 'define' make directive now allows a variable assignment operator
165   after the variable name, to allow for simple, conditional, or appending
166   multi-line variable assignment.
169 Version 3.81
171 * GNU make is ported to OS/2.
173 * GNU make is ported to MinGW.  The MinGW build is only supported by
174   the build_w32.bat batch file; see the file README.W32 for more
175   details.
177 * WARNING: Future backward-incompatibility!
178   Up to and including this release, the '$?' variable does not contain
179   any prerequisite that does not exist, even though that prerequisite
180   might have caused the target to rebuild.  Starting with the _next_
181   release of GNU make, '$?' will contain all prerequisites that caused
182   the target to be considered out of date.  See this Savannah bug:
183   http://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=16051
185 * WARNING: Backward-incompatibility!
186   GNU make now implements a generic "second expansion" feature on the
187   prerequisites of both explicit and implicit (pattern) rules.  In order
188   to enable this feature, the special target '.SECONDEXPANSION' must be
189   defined before the first target which takes advantage of it.  If this
190   feature is enabled then after all rules have been parsed the
191   prerequisites are expanded again, this time with all the automatic
192   variables in scope.  This means that in addition to using standard
193   SysV $$@ in prerequisites lists, you can also use complex functions
194   such as $$(notdir $$@) etc.  This behavior applies to implicit rules,
195   as well, where the second expansion occurs when the rule is matched.
196   However, this means that when '.SECONDEXPANSION' is enabled you must
197   double-quote any "$" in your filenames; instead of "foo: boo$$bar" you
198   now must write "foo: foo$$$$bar".  Note that the SysV $$@ etc. feature,
199   which used to be available by default, is now ONLY available when the
200   .SECONDEXPANSION target is defined.  If your makefiles take advantage
201   of this SysV feature you will need to update them.
203 * WARNING: Backward-incompatibility!
204   In order to comply with POSIX, the way in which GNU make processes
205   backslash-newline sequences in recipes has changed.  If your makefiles
206   use backslash-newline sequences inside of single-quoted strings in
207   recipes you will be impacted by this change.  See the GNU make manual
208   subsection "Splitting Recipe Lines" (node "Splitting Lines"), in
209   section "Recipe Syntax", chapter "Writing Recipe in Rules", for
210   details.
212 * WARNING: Backward-incompatibility!
213   Some previous versions of GNU make had a bug where "#" in a function
214   invocation such as $(shell ...) was treated as a make comment.  A
215   workaround was to escape these with backslashes.  This bug has been
216   fixed: if your makefile uses "\#" in a function invocation the
217   backslash is now preserved, so you'll need to remove it.
219 * New command line option: -L (--check-symlink-times).  On systems that
220   support symbolic links, if this option is given then GNU make will
221   use the most recent modification time of any symbolic links that are
222   used to resolve target files.  The default behavior remains as it
223   always has: use the modification time of the actual target file only.
225 * The "else" conditional line can now be followed by any other valid
226   conditional on the same line: this does not increase the depth of the
227   conditional nesting, so only one "endif" is required to close the
228   conditional.
230 * All pattern-specific variables that match a given target are now used
231   (previously only the first match was used).
233 * Target-specific variables can be marked as exportable using the
234   "export" keyword.
236 * In a recursive $(call ...) context, any extra arguments from the outer
237   call are now masked in the context of the inner call.
239 * Implemented a solution for the "thundering herd" problem with "-j -l".
240   This version of GNU make uses an algorithm suggested by Thomas Riedl
241   <thomas.riedl@siemens.com> to track the number of jobs started in the
242   last second and artificially adjust GNU make's view of the system's
243   load average accordingly.
245 * New special variables available in this release:
246    - .INCLUDE_DIRS: Expands to a list of directories that make searches
247      for included makefiles.
248    - .FEATURES: Contains a list of special features available in this
249      version of GNU make.
250    - .DEFAULT_GOAL: Set the name of the default goal make will
251      use if no goals are provided on the command line.
252    - MAKE_RESTARTS: If set, then this is the number of times this
253      instance of make has been restarted (see "How Makefiles Are Remade"
254      in the manual).
255    - New automatic variable: $| (added in 3.80, actually): contains all
256      the order-only prerequisites defined for the target.
258 * New functions available in this release:
259    - $(lastword ...) returns the last word in the list.  This gives
260      identical results as $(word $(words ...) ...), but is much faster.
261    - $(abspath ...) returns the absolute path (all "." and ".."
262      directories resolved, and any duplicate "/" characters removed) for
263      each path provided.
264    - $(realpath ...) returns the canonical pathname for each path
265      provided.  The canonical pathname is the absolute pathname, with
266      all symbolic links resolved as well.
267    - $(info ...) prints its arguments to stdout.  No makefile name or
268      line number info, etc. is printed.
269    - $(flavor ...) returns the flavor of a variable.
270    - $(or ...) provides a short-circuiting OR conditional: each argument
271      is expanded.  The first true (non-empty) argument is returned; no
272      further arguments are expanded.  Expands to empty if there are no
273      true arguments.
274    - $(and ...) provides a short-circuiting AND conditional: each
275      argument is expanded.  The first false (empty) argument is
276      returned; no further arguments are expanded.  Expands to the last
277      argument if all arguments are true.
279 * Changes made for POSIX compatibility:
280    - Only touch targets (under -t) if they have a recipe.
281    - Setting the SHELL make variable does NOT change the value of the
282      SHELL environment variable given to programs invoked by make.  As
283      an enhancement to POSIX, if you export the make variable SHELL then
284      it will be set in the environment, just as before.
286 * On MS Windows systems, explicitly setting SHELL to a pathname ending
287   in "cmd" or "cmd.exe" (case-insensitive) will force GNU make to use
288   the DOS command interpreter in batch mode even if a UNIX-like shell
289   could be found on the system.
291 * On VMS there is now support for case-sensitive filesystems such as ODS5.
292   See the readme.vms file for information.
294 * Parallel builds (-jN) no longer require a working Bourne shell on
295   Windows platforms.  They work even with the stock Windows shells, such
296   as cmd.exe and command.com.
298 * Updated to autoconf 2.59, automake 1.9.5, and gettext 0.14.1.  Users
299   should not be impacted.
301 * New translations for Swedish, Chinese (simplified), Ukrainian,
302   Belarusian, Finnish, Kinyarwandan, and Irish.  Many updated
303   translations.
305 A complete list of bugs fixed in this version is available here:
307   http://savannah.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=103
310 Version 3.80
312 * A new feature exists: order-only prerequisites.  These prerequisites
313   affect the order in which targets are built, but they do not impact
314   the rebuild/no-rebuild decision of their dependents.  That is to say,
315   they allow you to require target B be built before target A, without
316   requiring that target A will always be rebuilt if target B is updated.
317   Patch for this feature provided by Greg McGary <greg@mcgary.org>.
319 * For compatibility with SysV make, GNU make now supports the peculiar
320   syntax $$@, $$(@D), and $$(@F) in the prerequisites list of a rule.
321   This syntax is only valid within explicit and static pattern rules: it
322   cannot be used in implicit (suffix or pattern) rules.  Edouard G. Parmelan
323   <egp@free.fr> provided a patch implementing this feature; however, I
324   decided to implement it in a different way.
326 * The argument to the "ifdef" conditional is now expanded before it's
327   tested, so it can be a constructed variable name.
329   Similarly, the arguments to "export" (when not used in a variable
330   definition context) and "unexport" are also now expanded.
332 * A new function is defined: $(value ...).  The argument to this
333   function is the _name_ of a variable.  The result of the function is
334   the value of the variable, without having been expanded.
336 * A new function is defined: $(eval ...).  The arguments to this
337   function should expand to makefile commands, which will then be
338   evaluated as if they had appeared in the makefile.  In combination
339   with define/endef multiline variable definitions this is an extremely
340   powerful capability.  The $(value ...) function is also sometimes
341   useful here.
343 * A new built-in variable is defined, $(MAKEFILE_LIST).  It contains a
344   list of each makefile GNU make has read, or started to read, in the
345   order in which they were encountered.  So, the last filename in the
346   list when a makefile is just being read (before any includes) is the
347   name of the current makefile.
349 * A new built-in variable is defined: $(.VARIABLES).  When it is
350   expanded it returns a complete list of variable names defined by all
351   makefiles at that moment.
353 * A new command line option is defined, -B or --always-make.  If
354   specified GNU make will consider all targets out-of-date even if they
355   would otherwise not be.
357 * The arguments to $(call ...) functions were being stored in $1, $2,
358   etc. as recursive variables, even though they are fully expanded
359   before assignment.  This means that escaped dollar signs ($$ etc.)
360   were not behaving properly.  Now the arguments are stored as simple
361   variables.  This may mean that if you added extra escaping to your
362   $(call ...) function arguments you will need to undo it now.
364 * The variable invoked by $(call ...) can now be recursive: unlike other
365   variables it can reference itself and this will not produce an error
366   when it is used as the first argument to $(call ...) (but only then).
368 * New pseudo-target .LOW_RESOLUTION_TIME, superseding the configure
369   option --disable-nsec-timestamps.  You might need this if your build
370   process depends on tools like "cp -p" preserving time stamps, since
371   "cp -p" (right now) doesn't preserve the subsecond portion of a time
372   stamp.
374 * Updated translations for French, Galician, German, Japanese, Korean,
375   and Russian.  New translations for Croatian, Danish, Hebrew, and
376   Turkish.
378 * Updated internationalization support to Gettext 0.11.5.
379   GNU make now uses Gettext's "external" feature, and does not include
380   any internationalization code itself.  Configure will search your
381   system for an existing implementation of GNU Gettext (only GNU Gettext
382   is acceptable) and use it if it exists.  If not, NLS will be disabled.
383   See ABOUT-NLS for more information.
385 * Updated to autoconf 2.54 and automake 1.7.  Users should not be impacted.
387 A complete list of bugs fixed in this version is available here:
389   http://savannah.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=102
392 Version 3.79.1
394 * .SECONDARY with no prerequisites now prevents any target from being
395   removed because make thinks it's an intermediate file, not just those
396   listed in the makefile.
398 * New configure option --disable-nsec-timestamps, but this was
399   superseded in later versions by the .LOW_RESOLUTION_TIME pseudo-target.
401 Version 3.79
403 * GNU make optionally supports internationalization and locales via the
404   GNU gettext (or local gettext if suitable) package.  See the ABOUT-NLS
405   file for more information on configuring GNU make for NLS.
407 * Previously, GNU make quoted variables such as MAKEFLAGS and
408   MAKEOVERRIDES for proper parsing by the shell.  This allowed them to
409   be used within make build scripts.  However, using them there is not
410   proper behavior: they are meant to be passed to subshells via the
411   environment.  Unfortunately the values were not quoted properly to be
412   passed through the environment.  This meant that make didn't properly
413   pass some types of command line values to submakes.
415   With this version we change that behavior: now these variables are
416   quoted properly for passing through the environment, which is the
417   correct way to do it.  If you previously used these variables
418   explicitly within a make rule you may need to re-examine your use for
419   correctness given this change.
421 * A new pseudo-target .NOTPARALLEL is available.  If defined, the
422   current makefile is run serially regardless of the value of -j.
423   However, submakes are still eligible for parallel execution.
425 * The --debug option has changed: it now allows optional flags
426   controlling the amount and type of debugging output.  By default only
427   a minimal amount information is generated, displaying the names of
428   "normal" targets (not makefiles) that were deemed out of date and in
429   need of being rebuilt.
431   Note that the -d option behaves as before: it takes no arguments and
432   all debugging information is generated.
434 * The `-p' (print database) output now includes filename and linenumber
435   information for variable definitions, to aid debugging.
437 * The wordlist function no longer reverses its arguments if the "start"
438   value is greater than the "end" value.  If that's true, nothing is
439   returned.
441 * Hartmut Becker provided many updates for the VMS port of GNU make.
442   See the readme.vms file for more details.
444 Version 3.78
446 * Two new functions, $(error ...) and $(warning ...) are available.  The
447   former will cause make to fail and exit immediately upon expansion of
448   the function, with the text provided as the error message.  The latter
449   causes the text provided to be printed as a warning message, but make
450   proceeds normally.
452 * A new function $(call ...) is available.  This allows users to create
453   their own parameterized macros and invoke them later.  Original
454   implementation of this function was provided by Han-Wen Nienhuys
455   <hanwen@cs.uu.nl>.
457 * A new function $(if ...) is available.  It provides if-then-else
458   capabilities in a builtin function.  Original implementation of this
459   function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
461 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
462   library dependency expansion (dependencies like ``-lfoo'') is performed.
464 * Make accepts CRLF sequences as well as traditional LF, for
465   compatibility with makefiles created on other operating systems.
467 * Make accepts a new option: -R, or --no-builtin-variables.  This option
468   disables the definition of the rule-specific builtin variables (CC,
469   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
470   as well.
472 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
474   On systems that support POSIX pipe(2) semantics, GNU make can now pass
475   -jN options to submakes rather than forcing them all to use -j1.  The
476   top make and all its sub-make processes use a pipe to communicate with
477   each other to ensure that no more than N jobs are started across all
478   makes.  To get the old behavior of -j back, you can configure make
479   with the --disable-job-server option.
481 * The confusing term "dependency" has been replaced by the more accurate
482   and standard term "prerequisite", both in the manual and in all GNU make
483   output.
485 * GNU make supports the "big archive" library format introduced in AIX 4.3.
487 * GNU make supports large files on AIX, HP-UX, and IRIX.  These changes
488   were provided by Paul Eggert <eggert@twinsun.com>.  (Large file
489   support for Solaris and Linux was introduced in 3.77, but the
490   configuration had issues: these have also been resolved).
492 * The Windows 95/98/NT (W32) version of GNU make now has native support
493   for the Cygnus Cygwin release B20.1 shell (bash).
495 * The GNU make regression test suite, long available separately "under
496   the table", has been integrated into the release.  You can invoke it
497   by running "make check" in the distribution.  Note that it requires
498   Perl (either Perl 4 or Perl 5) to run.
500 Version 3.77
502 * Implement BSD make's "?=" variable assignment operator.  The variable
503   is assigned the specified value only if that variable is not already
504   defined.
506 * Make defines a new variable, "CURDIR", to contain the current working
507   directory (after the -C option, if any, has been processed).
508   Modifying this variable has no effect on the operation of make.
510 * Make defines a new default RCS rule, for new-style master file
511   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
513   Make defines new default rules for DOS-style C++ file naming
514   conventions, with ``.cpp'' suffixes.  All the same rules as for
515   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
516   COMPILE.cpp macros (which default to the same value as LINK.cc and
517   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
518   use CXXFLAGS to change C++ compiler flags.
520 * A new feature, "target-specific variable values", has been added.
521   This is a large change so please see the appropriate sections of the
522   manual for full details.  Briefly, syntax like this:
524     TARGET: VARIABLE = VALUE
526   defines VARIABLE as VALUE within the context of TARGET.  This is
527   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
528   that the assignment may be of any type, not just recursive, and that
529   the override keyword is available.
531   COMPATIBILITY: This new syntax means that if you have any rules where
532   the first or second dependency has an equal sign (=) in its name,
533   you'll have to escape them with a backslash: "foo : bar\=baz".
534   Further, if you have any dependencies which already contain "\=",
535   you'll have to escape both of them: "foo : bar\\\=baz".
537 * A new appendix listing the most common error and warning messages
538   generated by GNU make, with some explanation, has been added to the
539   GNU make User's Manual.
541 * Updates to the GNU make Customs library support (see README.customs).
543 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
544   and to the DOS port from Eli Zaretski (see README.DOS).
546 Version 3.76.1
548 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
550 Version 3.76
552 * GNU make now uses automake to control Makefile.in generation.  This
553   should make it more consistent with the GNU standards.
555 * VPATH functionality has been changed to incorporate the VPATH+ patch,
556   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
557   manual.
559 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
560   were specified on the command line, if any.  Modifying this variable
561   has no effect on the operation of make.
563 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
564   list of words from number S to number E (inclusive) of TEXT.
566 * Instead of an error, detection of future modification times gives a
567   warning and continues.  The warning is repeated just before GNU make
568   exits, so it is less likely to be lost.
570 * Fix the $(basename) and $(suffix) functions so they only operate on
571   the last filename, not the entire string:
573       Command              Old Result             New Result
574       -------              ----------             ----------
575     $(basename a.b)        a                      a
576     $(basename a.b/c)      a                      a.b/c
577     $(suffix a.b)          b                      b
578     $(suffix a.b/c)        b/c                    <empty>
580 * The $(strip) function now removes newlines as well as TABs and spaces.
582 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
583   as newlines (\n).
585 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
587 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
588   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
589   and utilities.  See README.DOS for details, and direct all questions
590   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
591   Delorie <dj@delorie.com>.
593 * John W. Eaton has updated the VMS port to support libraries and VPATH.
595 Version 3.75
597 * The directory messages printed by `-w' and implicitly in sub-makes,
598   are now omitted if Make runs no commands and has no other messages to print.
600 * Make now detects files that for whatever reason have modification times
601   in the future and gives an error.  Files with such impossible timestamps
602   can result from unsynchronized clocks, or archived distributions
603   containing bogus timestamps; they confuse Make's dependency engine
604   thoroughly.
606 * The new directive `sinclude' is now recognized as another name for
607   `-include', for compatibility with some other Makes.
609 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
610   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
612 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
613   See README.W32 for details, and direct all Windows-related questions to
614   <rob_tulloh@tivoli.com>.
616 Version 3.73
618 * Converted to use Autoconf version 2, so `configure' has some new options.
619   See INSTALL for details.
621 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
622   output enabled by -d, at any time during the run.
624 Version 3.72
626 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
627   He is maintaining the DOS port, not the GNU Make maintainer;
628   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
629   MS-DOS binaries are available for FTP from ftp.simtel.net in
630   /pub/simtelnet/gnu/djgpp/.
632 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
633   contain variable definitions itself; these are treated just like
634   command line variable definitions.  Make will automatically insert any
635   variable definitions from the environment value of `MAKEFLAGS' or from
636   the command line, into the `MAKEFLAGS' value exported to children.  The
637   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
638   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
639   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
640   in the environment when its size is limited.
642 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
643   a rule if it has changed when its recipe exits with a nonzero status,
644   just as when the recipe gets a signal.
646 * The automatic variable `$+' is new.  It lists all the dependencies like
647   `$^', but preserves duplicates listed in the makefile.  This is useful
648   for linking rules, where library files sometimes need to be listed twice
649   in the link order.
651 * You can now specify the `.IGNORE' and `.SILENT' special targets with
652   dependencies to limit their effects to those files.  If a file appears as
653   a dependency of `.IGNORE', then errors will be ignored while running the
654   recipe to update that file.  Likewise if a file appears as a dependency
655   of `.SILENT', then the recipe to update that file will not be printed
656   before it is run.  (This change was made to conform to POSIX.2.)
658 Version 3.71
660 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
661   `$(^D)' now omit the trailing slash from the directory name.  (This change
662   was made to comply with POSIX.2.)
664 * The source distribution now includes the Info files for the Make manual.
665   There is no longer a separate distribution containing Info and DVI files.
667 * You can now set the variables `binprefix' and/or `manprefix' in
668   Makefile.in (or on the command line when installing) to install GNU make
669   under a name other than `make' (i.e., ``make binprefix=g install''
670   installs GNU make as `gmake').
672 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
673   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
674   Makeinfo program.
676 * The exit status of Make when it runs into errors is now 2 instead of 1.
677   The exit status is 1 only when using -q and some target is not up to date.
678   (This change was made to comply with POSIX.2.)
680 Version 3.70
682 * It is no longer a fatal error to have a NUL character in a makefile.
683   You should never put a NUL in a makefile because it can have strange
684   results, but otherwise empty lines full of NULs (such as produced by
685   the `xmkmf' program) will always work fine.
687 * The error messages for nonexistent included makefiles now refer to the
688   makefile name and line number where the `include' appeared, so Emacs's
689   C-x ` command takes you there (in case it's a typo you need to fix).
691 Version 3.69
693 * Implicit rule search for archive member references is now done in the
694   opposite order from previous versions: the whole target name `LIB(MEM)'
695   first, and just the member name and parentheses `(MEM)' second.
697 * Make now gives an error for an unterminated variable or function reference.
698   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
700 * The new default variable `MAKE_VERSION' gives the version number of
701   Make, and a string describing the remote job support compiled in (if any).
702   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
704 * Commands in an invocation of the `shell' function are no longer run
705   with a modified environment like recipes are.  As in versions before
706   3.68, they now run with the environment that `make' started with.  We
707   have reversed the change made in version 3.68 because it turned out to
708   cause a paradoxical situation in cases like:
710         export variable = $(shell echo value)
712   When Make attempted to put this variable in the environment for a
713   recipe, it would try expand the value by running the shell command
714   `echo value'.  In version 3.68, because it constructed an environment
715   for that shell command in the same way, Make would begin to go into an
716   infinite loop and then get a fatal error when it detected the loop.
718 * The recipe given for `.DEFAULT' is now used for phony targets with no
719   recipe.
721 Version 3.68
723 * You can list several archive member names inside parenthesis:
724   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
726 * You can use wildcards inside archive member references.  For example,
727   `lib(*.o)' expands to all existing members of `lib' whose names end in
728   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
729   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
730   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
732 * A suffix rule `.X.a' now produces two pattern rules:
733         (%.o): %.X      # Previous versions produced only this.
734         %.a: %.X        # Now produces this as well, just like other suffixes.
736 * The new flag `--warn-undefined-variables' says to issue a warning message
737   whenever Make expands a reference to an undefined variable.
739 * The new `-include' directive is just like `include' except that there is
740   no error (not even a warning) for a nonexistent makefile.
742 * Commands in an invocation of the `shell' function are now run with a
743   modified environment like recipes are, so you can use `export' et al
744   to set up variables for them.  They used to run with the environment
745   that `make' started with.
747 Version 3.66
749 * `make --version' (or `make -v') now exits immediately after printing
750   the version number.
752 Version 3.65
754 * Make now supports long-named members in `ar' archive files.
756 Version 3.64
758 * Make now supports the `+=' syntax for a variable definition which appends
759   to the variable's previous value.  See the section `Appending More Text
760   to Variables' in the manual for full details.
762 * The new option `--no-print-directory' inhibits the `-w' or
763   `--print-directory' feature.  Make turns on `--print-directory'
764   automatically if you use `-C' or `--directory', and in sub-makes; some
765   users have found this behavior undesirable.
767 * The built-in implicit rules now support the alternative extension
768   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
770 Version 3.63
772 * Make now uses a standard GNU `configure' script.  See the new file
773   INSTALL for the new (and much simpler) installation procedure.
775 * There is now a shell script to build Make the first time, if you have no
776   other `make' program.  `build.sh' is created by `configure'; see README.
778 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
780 * Elements of the `$^' and `$?' automatic variables that are archive
781   member references now list only the member name, as in Unix and POSIX.2.
783 * You should no longer ever need to specify the `-w' switch, which prints
784   the current directory before and after Make runs.  The `-C' switch to
785   change directory, and recursive use of Make, now set `-w' automatically.
787 * Multiple double-colon rules for the same target will no longer have their
788   recipes run simultaneously under -j, as this could result in the two
789   recipes trying to change the file at the same time and interfering with
790   one another.
792 * The `SHELL' variable is now never taken from the environment.
793   Each makefile that wants a shell other than the default (/bin/sh) must
794   set SHELL itself.  SHELL is always exported to child processes.
795   This change was made for compatibility with POSIX.2.
797 * Make now accepts long options.  There is now an informative usage message
798   that tells you what all the options are and what they do.  Try `make --help'.
800 * There are two new directives: `export' and `unexport'.  All variables are
801   no longer automatically put into the environments of the recipe lines that
802   Make runs.  Instead, only variables specified on the command line or in
803   the environment are exported by default.  To export others, use:
804         export VARIABLE
805   or you can define variables with:
806         export VARIABLE = VALUE
807   or:
808         export VARIABLE := VALUE
809   You can use just:
810         export
811   or:
812         .EXPORT_ALL_VARIABLES:
813   to get the old behavior.  See the node `Variables/Recursion' in the manual
814   for a full description.
816 * The recipe from the `.DEFAULT' special target is only applied to
817   targets which have no rules at all, not all targets with no recipe.
818   This change was made for compatibility with Unix make.
820 * All fatal error messages now contain `***', so they are easy to find in
821   compilation logs.
823 * Dependency file names like `-lNAME' are now replaced with the actual file
824   name found, as with files found by normal directory search (VPATH).
825   The library file `libNAME.a' may now be found in the current directory,
826   which is checked before VPATH; the standard set of directories (/lib,
827   /usr/lib, /usr/local/lib) is now checked last.
828   See the node `Libraries/Search' in the manual for full details.
830 * A single `include' directive can now specify more than one makefile to
831   include, like this:
832         include file1 file2
833   You can also use shell file name patterns in an `include' directive:
834         include *.mk
836 * The default directories to search for included makefiles, and for
837   libraries specified with `-lNAME', are now set by configuration.
839 * You can now use blanks as well as colons to separate the directories in a
840   search path for the `vpath' directive or the `VPATH' variable.
842 * You can now use variables and functions in the left hand side of a
843   variable assignment, as in "$(foo)bar = value".
845 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
846   The `MAKE_COMMAND' variable is now defined to the name with which make
847   was invoked.
849 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
850   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
851   problems with shells that cannot have `+' in environment variable names.
853 * The value of a recursively expanded variable is now expanded when putting
854   it into the environment for child processes.  This change was made for
855   compatibility with Unix make.
857 * A rule with no targets before the `:' is now accepted and ignored.
858   This change was made for compatibility with SunOS 4 make.
859   We do not recommend that you write your makefiles to take advantage of this.
861 * The `-I' switch can now be used in MAKEFLAGS, and are put there
862   automatically just like other switches.
864 Version 3.61
866 * Built-in rules for C++ source files with the `.C' suffix.
867   We still recommend that you use `.cc' instead.
869 * If a recipe is given too many times for a single target, the last one
870   given is used, and a warning message is printed.
872 * Error messages about makefiles are in standard GNU error format,
873   so C-x ` in Emacs works on them.
875 * Dependencies of pattern rules which contain no % need not actually exist
876   if they can be created (just like dependencies which do have a %).
878 Version 3.60
880 * A message is always printed when Make decides there is nothing to be done.
881   It used to be that no message was printed for top-level phony targets
882   (because "`phony' is up to date" isn't quite right).  Now a different
883   message "Nothing to be done for `phony'" is printed in that case.
885 * Archives on AIX now supposedly work.
887 * When the recipes specified for .DEFAULT are used to update a target,
888   the $< automatic variable is given the same value as $@ for that target.
889   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
891 Version 3.59
893 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
894   variables while remaking makefiles, so recursive makes done while remaking
895   makefiles will behave properly.
897 * If the special target `.NOEXPORT' is specified in a makefile,
898   only variables that came from the environment and variables
899   defined on the command line are exported.
901 Version 3.58
903 * Suffix rules may have dependencies (which are ignored).
905 Version 3.57
907 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
908   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
910 Version 3.55
912 * There is now a Unix man page for GNU Make.  It is certainly not a
913   replacement for the Texinfo manual, but it documents the basic
914   functionality and the switches.  For full documentation, you should
915   still read the Texinfo manual.  Thanks to Dennis Morse of Stanford
916   University for contributing the initial version of this.
918 * Variables which are defined by default (e.g., `CC') will no longer be
919   put into the environment for child processes.  (If these variables are
920   reset by the environment, makefiles, or the command line, they will
921   still go into the environment.)
923 * Makefiles which have recipes but no dependencies (and thus are always
924   considered out of date and in need of remaking), will not be remade (if they
925   were being remade only because they were makefiles).  This means that GNU
926   Make will no longer go into an infinite loop when fed the makefiles that
927   `imake' (necessary to build X Windows) produces.
929 * There is no longer a warning for using the `vpath' directive with an explicit
930 pathname (instead of a `%' pattern).
932 Version 3.51
934 * When removing intermediate files, only one `rm' command line is printed,
935   listing all file names.
937 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
938   These are the directory-only and file-only versions of `$^' and `$?'.
940 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
941   directory if it exists.
943 * The automatic variable `$($/)' is no longer defined.
945 * Leading `+' characters on a recipe line make that line be executed even
946   under -n, -t, or -q (as if the line contained `$(MAKE)').
948 * For recipe lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
949   only those lines are executed, not the entire recipe.
950   (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
952 Version 3.50
954 * Filenames in rules will now have ~ and ~USER expanded.
956 * The `-p' output has been changed so it can be used as a makefile.
957   (All information that isn't specified by makefiles is prefaced with comment
958   characters.)
960 Version 3.49
962 * The % character can be quoted with backslash in implicit pattern rules,
963   static pattern rules, `vpath' directives, and `patsubst', `filter', and
964   `filter-out' functions.  A warning is issued if a `vpath' directive's
965   pattern contains no %.
967 * The `wildcard' variable expansion function now expands ~ and ~USER.
969 * Messages indicating failed recipe lines now contain the target name:
970         make: *** [target] Error 1
972 * The `-p' output format has been changed somewhat to look more like
973   makefile rules and to give all information that Make has about files.
975 Version 3.48
977 Version 3.47
979 * The `-l' switch with no argument removes any previous load-average limit.
981 * When the `-w' switch is in effect, and Make has updated makefiles,
982   it will write a `Leaving directory' message before re-executing itself.
983   This makes the `directory change tracking' changes to Emacs's compilation
984   commands work properly.
986 Version 3.46
988 * The automatic variable `$*' is now defined for explicit rules,
989   as it is in Unix make.
991 Version 3.45
993 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
994   specified without an argument (indicating infinite jobs).
995   The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
997 * Make no longer checks hashed directories after running recipes.
998   The behavior implemented in 3.41 caused too much slowdown.
1000 Version 3.44
1002 * A dependency is NOT considered newer than its dependent if
1003   they have the same modification time.  The behavior implemented
1004   in 3.43 conflicts with RCS.
1006 Version 3.43
1008 * Dependency loops are no longer fatal errors.
1010 * A dependency is considered newer than its dependent if
1011   they have the same modification time.
1013 Version 3.42
1015 * The variables F77 and F77FLAGS are now set by default to $(FC) and
1016   $(FFLAGS).  Makefiles designed for System V make may use these variables in
1017   explicit rules and expect them to be set.  Unfortunately, there is no way to
1018   make setting these affect the Fortran implicit rules unless FC and FFLAGS
1019   are not used (and these are used by BSD make).
1021 Version 3.41
1023 * Make now checks to see if its hashed directories are changed by recipes.
1024   Other makes that hash directories (Sun, 4.3 BSD) don't do this.
1026 Version 3.39
1028 * The `shell' function no longer captures standard error output.
1030 Version 3.32
1032 * A file beginning with a dot can be the default target if it also contains
1033   a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
1035 Version 3.31
1037 * Archive member names are truncated to 15 characters.
1039 * Yet more USG stuff.
1041 * Minimal support for Microport System V (a 16-bit machine and a
1042   brain-damaged compiler).  This has even lower priority than other USG
1043   support, so if it gets beyond trivial, I will take it out completely.
1045 * Revamped default implicit rules (not much visible change).
1047 * The -d and -p options can come from the environment.
1049 Version 3.30
1051 * Improved support for USG and HPUX (hopefully).
1053 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
1054   equivalent to `$(patsubst a,b,$(foo))'.
1056 * Defining .DEFAULT with no deps or recipe clears its recipe.
1058 * New default implicit rules for .S (cpp, then as), and .sh (copy and
1059   make executable).  All default implicit rules that use cpp (even
1060   indirectly), use $(CPPFLAGS).
1062 Version 3.29
1064 * Giving the -j option with no arguments gives you infinite jobs.
1066 Version 3.28
1068 * New option: "-l LOAD" says not to start any new jobs while others are
1069   running if the load average is not below LOAD (a floating-point number).
1071 * There is support in place for implementations of remote command execution
1072   in Make.  See the file remote.c.
1074 Version 3.26
1076 * No more than 10 directories will be kept open at once.
1077   (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
1079 Version 3.25
1081 * Archive files will have their modification times recorded before doing
1082   anything that might change their modification times by updating an archive
1083   member.
1085 Version 3.20
1087 * The `MAKELEVEL' variable is defined for use by makefiles.
1089 Version 3.19
1091 * The recursion level indications in error messages are much shorter than
1092   they were in version 3.14.
1094 Version 3.18
1096 * Leading spaces before directives are ignored (as documented).
1098 * Included makefiles can determine the default goal target.
1099   (System V Make does it this way, so we are being compatible).
1101 Version 3.14.
1103 * Variables that are defaults built into Make will not be put in the
1104   environment for children.  This just saves some environment space and,
1105   except under -e, will be transparent to sub-makes.
1107 * Error messages from sub-makes will indicate the level of recursion.
1109 * Hopefully some speed-up for large directories due to a change in the
1110   directory hashing scheme.
1112 * One child will always get a standard input that is usable.
1114 * Default makefiles that don't exist will be remade and read in.
1116 Version 3.13.
1118 * Count parentheses inside expansion function calls so you can
1119   have nested calls: `$(sort $(foreach x,a b,$(x)))'.
1121 Version 3.12.
1123 * Several bug fixes, including USG and Sun386i support.
1125 * `shell' function to expand shell commands a la `
1127 * If the `-d' flag is given, version information will be printed.
1129 * The `-c' option has been renamed to `-C' for compatibility with tar.
1131 * The `-p' option no longer inhibits other normal operation.
1133 * Makefiles will be updated and re-read if necessary.
1135 * Can now run several recipes at once (parallelism), -j option.
1137 * Error messages will contain the level of Make recursion, if any.
1139 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
1140   makefiles are read.
1142 * A double-colon rule with no dependencies will always have its recipe run.
1143   (This is how both the BSD and System V versions of Make do it.)
1145 Version 3.05
1147 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
1149 -------------------------------------------------------------------------------
1150 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1151 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
1152 2012 Free Software Foundation, Inc.
1153 This file is part of GNU Make.
1155 GNU Make is free software; you can redistribute it and/or modify it under the
1156 terms of the GNU General Public License as published by the Free Software
1157 Foundation; either version 3 of the License, or (at your option) any later
1158 version.
1160 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
1161 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
1162 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
1164 You should have received a copy of the GNU General Public License along with
1165 this program.  If not, see <http://www.gnu.org/licenses/>.