Fix for the problem that SDL applications exited
[AROS-Contrib.git] / gnu / make / news
blob49f4f57fccb95bcfe761865592ef6493d44a78f1
1 GNU make NEWS                                               -*-indented-text-*-
2   History of user-visible changes.
3   06 March 2004
5 Copyright (C) 2002,2003,2004  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.
11 Please send GNU make bug reports to <bug-make@gnu.org>.
12 See the README file and the GNU make manual for details on reporting bugs.
14 Version 3.81beta1
16 * GNU make is ported to OS/2.
17   Port provided by Andreas Buening <andreas.buening@nexgo.de>.
19 * All pattern-specific variables that match a given target are now used
20   (previously only the first match was used).
22 * Target-specific variables can be marked as exportable using the
23   "export" keyword.
25 * In a recursive $(call ...) context, any extra arguments from the outer
26   call are now masked in the context of the inner call.
28 * Implemented a solution for the "thundering herd" problem with "-j -l".
29   This version of GNU make uses an algorithm suggested by Thomas Riedl
30   <thomas.riedl@siemens.com> to track the number of jobs started in the
31   last second and adjust GNU make's view of the system's load average
32   accordingly.
34 * Enhancements for POSIX compatibility:
35    - Only touch targets (under -t) if they have at least one command.
37 * Updated to autoconf 2.59, automake 1.8.2, and gettext 0.14.1.  Users
38   should not be impacted.
41 Version 3.80
43 * A new feature exists: order-only prerequisites.  These prerequisites
44   affect the order in which targets are built, but they do not impact
45   the rebuild/no-rebuild decision of their dependents.  That is to say,
46   they allow you to require target B be built before target A, without
47   requiring that target A will always be rebuilt if target B is updated.
48   Patch for this feature provided by Greg McGary <greg@mcgary.org>.
50 * For compatibility with SysV make, GNU make now supports the peculiar
51   syntax $$@, $$(@D), and $$(@F) in the prerequisites list of a rule.
52   This syntax is only valid within explicit and static pattern rules: it
53   cannot be used in implicit (suffix or pattern) rules.  Edouard G. Parmelan
54   <egp@free.fr> provided a patch implementing this feature; however, I
55   decided to implement it in a different way.
57 * The argument to the "ifdef" conditional is now expanded before it's
58   tested, so it can be a constructed variable name.
60   Similarly, the arguments to "export" (when not used in a variable
61   definition context) and "unexport" are also now expanded.
63 * A new function is defined: $(value ...).  The argument to this
64   function is the _name_ of a variable.  The result of the function is
65   the value of the variable, without having been expanded.
67 * A new function is defined: $(eval ...).  The arguments to this
68   function should expand to makefile commands, which will then be
69   evaluated as if they had appeared in the makefile.  In combination
70   with define/endef multiline variable definitions this is an extremely
71   powerful capability.  The $(value ...) function is also sometimes
72   useful here.
74 * A new built-in variable is defined, $(MAKEFILE_LIST).  It contains a
75   list of each makefile GNU make has read, or started to read, in the
76   order in which they were encountered.  So, the last filename in the
77   list when a makefile is just being read (before any includes) is the
78   name of the current makefile.
80 * A new built-in variable is defined: $(.VARIABLES).  When it is
81   expanded it returns a complete list of variable names defined by all
82   makefiles at that moment.
84 * A new command-line option is defined, -B or --always-make.  If
85   specified GNU make will consider all targets out-of-date even if they
86   would otherwise not be.
88 * The arguments to $(call ...) functions were being stored in $1, $2,
89   etc. as recursive variables, even though they are fully expanded
90   before assignment.  This means that escaped dollar signs ($$ etc.)
91   were not behaving properly.  Now the arguments are stored as simple
92   variables.  This may mean that if you added extra escaping to your
93   $(call ...) function arguments you will need to undo it now.
95 * The variable invoked by $(call ...) can now be recursive: unlike other
96   variables it can reference itself and this will not produce an error
97   when it is used as the first argument to $(call ...) (but only then).
99 * New pseudo-target .LOW_RESOLUTION_TIME, superseding the configure
100   option --disable-nsec-timestamps.  You might need this if your build
101   process depends on tools like "cp -p" preserving time stamps, since
102   "cp -p" (right now) doesn't preserve the subsecond portion of a time
103   stamp.
105 * Updated translations for French, Galician, German, Japanese, Korean,
106   and Russian.  New translations for Croatian, Danish, Hebrew, and
107   Turkish.
109 * Updated internationalization support to Gettext 0.11.5.
110   GNU make now uses Gettext's "external" feature, and does not include
111   any internationalization code itself.  Configure will search your
112   system for an existing implementation of GNU Gettext (only GNU Gettext
113   is acceptable) and use it if it exists.  If not, NLS will be disabled.
114   See ABOUT-NLS for more information.
116 * Updated to autoconf 2.54 and automake 1.7.  Users should not be impacted.
118 Version 3.79.1
120 * .SECONDARY with no prerequisites now prevents any target from being
121   removed because make thinks it's an intermediate file, not just those
122   listed in the makefile.
124 * New configure option --disable-nsec-timestamps, but this was
125   superseded in later versions by the .LOW_RESOLUTION_TIME pseudo-target.
127 Version 3.79
129 * GNU make optionally supports internationalization and locales via the
130   GNU gettext (or local gettext if suitable) package.  See the ABOUT-NLS
131   file for more information on configuring GNU make for NLS.
133 * Previously, GNU make quoted variables such as MAKEFLAGS and
134   MAKEOVERRIDES for proper parsing by the shell.  This allowed them to
135   be used within make build scripts.  However, using them there is not
136   proper behavior: they are meant to be passed to subshells via the
137   environment.  Unfortunately the values were not quoted properly to be
138   passed through the environment.  This meant that make didn't properly
139   pass some types of command line values to submakes.
141   With this version we change that behavior: now these variables are
142   quoted properly for passing through the environment, which is the
143   correct way to do it.  If you previously used these variables
144   explicitly within a make rule you may need to re-examine your use for
145   correctness given this change.
147 * A new pseudo-target .NOTPARALLEL is available.  If defined, the
148   current makefile is run serially regardless of the value of -j.
149   However, submakes are still eligible for parallel execution.
151 * The --debug option has changed: it now allows optional flags
152   controlling the amount and type of debugging output.  By default only
153   a minimal amount information is generated, displaying the names of
154   "normal" targets (not makefiles) that were deemed out of date and in
155   need of being rebuilt.
157   Note that the -d option behaves as before: it takes no arguments and
158   all debugging information is generated.
160 * The `-p' (print database) output now includes filename and linenumber
161   information for variable definitions, to aid debugging.
163 * The wordlist function no longer reverses its arguments if the "start"
164   value is greater than the "end" value.  If that's true, nothing is
165   returned.
167 * Hartmut Becker provided many updates for the VMS port of GNU make.
168   See the readme.vms file for more details.
170 Version 3.78
172 * Two new functions, $(error ...) and $(warning ...) are available.  The
173   former will cause make to fail and exit immediately upon expansion of
174   the function, with the text provided as the error message.  The latter
175   causes the text provided to be printed as a warning message, but make
176   proceeds normally.
178 * A new function $(call ...) is available.  This allows users to create
179   their own parameterized macros and invoke them later.  Original
180   implementation of this function was provided by Han-Wen Nienhuys
181   <hanwen@cs.uu.nl>.
183 * A new function $(if ...) is available.  It provides if-then-else
184   capabilities in a builtin function.  Original implementation of this
185   function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
187 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
188   library dependency expansion (dependencies like ``-lfoo'') is performed.
190 * Make accepts CRLF sequences as well as traditional LF, for
191   compatibility with makefiles created on other operating systems.
193 * Make accepts a new option: -R, or --no-builtin-variables.  This option
194   disables the definition of the rule-specific builtin variables (CC,
195   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
196   as well.
198 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
200   On systems that support POSIX pipe(2) semantics, GNU make can now pass
201   -jN options to submakes rather than forcing them all to use -j1.  The
202   top make and all its sub-make processes use a pipe to communicate with
203   each other to ensure that no more than N jobs are started across all
204   makes.  To get the old behavior of -j back, you can configure make
205   with the --disable-job-server option.
207 * The confusing term "dependency" has been replaced by the more accurate
208   and standard term "prerequisite", both in the manual and in all GNU make
209   output.
211 * GNU make supports the "big archive" library format introduced in AIX 4.3.
213 * GNU make supports large files on AIX, HP-UX, and IRIX.  These changes
214   were provided by Paul Eggert <eggert@twinsun.com>.  (Large file
215   support for Solaris and Linux was introduced in 3.77, but the
216   configuration had issues: these have also been resolved).
218 * The Windows 95/98/NT (W32) version of GNU make now has native support
219   for the Cygnus Cygwin release B20.1 shell (bash).
221 * The GNU make regression test suite, long available separately "under
222   the table", has been integrated into the release.  You can invoke it
223   by running "make check" in the distribution.  Note that it requires
224   Perl (either Perl 4 or Perl 5) to run.
226 Version 3.77
228 * Implement BSD make's "?=" variable assignment operator.  The variable
229   is assigned the specified value only if that variable is not already
230   defined.
232 * Make defines a new variable, "CURDIR", to contain the current working
233   directory (after the -C option, if any, has been processed).
234   Modifying this variable has no effect on the operation of make.
236 * Make defines a new default RCS rule, for new-style master file
237   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
239   Make defines new default rules for DOS-style C++ file naming
240   conventions, with ``.cpp'' suffixes.  All the same rules as for
241   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
242   COMPILE.cpp macros (which default to the same value as LINK.cc and
243   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
244   use CXXFLAGS to change C++ compiler flags.
246 * A new feature, "target-specific variable values", has been added.
247   This is a large change so please see the appropriate sections of the
248   manual for full details.  Briefly, syntax like this:
250     TARGET: VARIABLE = VALUE
252   defines VARIABLE as VALUE within the context of TARGET.  This is
253   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
254   that the assignment may be of any type, not just recursive, and that
255   the override keyword is available.
257   COMPATIBILITY: This new syntax means that if you have any rules where
258   the first or second dependency has an equal sign (=) in its name,
259   you'll have to escape them with a backslash: "foo : bar\=baz".
260   Further, if you have any dependencies which already contain "\=",
261   you'll have to escape both of them: "foo : bar\\\=baz".
263 * A new appendix listing the most common error and warning messages
264   generated by GNU make, with some explanation, has been added to the
265   GNU make User's Manual.
267 * Updates to the GNU make Customs library support (see README.customs).
269 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
270   and to the DOS port from Eli Zaretski (see README.DOS).
272 Version 3.76.1
274 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
276 Version 3.76
278 * GNU make now uses automake to control Makefile.in generation.  This
279   should make it more consistent with the GNU standards.
281 * VPATH functionality has been changed to incorporate the VPATH+ patch,
282   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
283   manual.
285 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
286   were specified on the command line, if any.  Modifying this variable
287   has no effect on the operation of make.
289 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
290   list of words from number S to number E (inclusive) of TEXT.
292 * Instead of an error, detection of future modification times gives a
293   warning and continues.  The warning is repeated just before GNU make
294   exits, so it is less likely to be lost.
296 * Fix the $(basename) and $(suffix) functions so they only operate on
297   the last filename, not the entire string:
299       Command              Old Result             New Result
300       -------              ----------             ----------
301     $(basename a.b)        a                      a
302     $(basename a.b/c)      a                      a.b/c
303     $(suffix a.b)          b                      b
304     $(suffix a.b/c)        b/c                    <empty>
306 * The $(strip) function now removes newlines as well as TABs and spaces.
308 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
309   as newlines (\n).
311 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
313 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
314   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
315   and utilities.  See README.DOS for details, and direct all questions
316   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
317   Delorie <dj@delorie.com>.
319 * John W. Eaton has updated the VMS port to support libraries and VPATH.
321 Version 3.75
323 * The directory messages printed by `-w' and implicitly in sub-makes,
324   are now omitted if Make runs no commands and has no other messages to print.
326 * Make now detects files that for whatever reason have modification times
327   in the future and gives an error.  Files with such impossible timestamps
328   can result from unsynchronized clocks, or archived distributions
329   containing bogus timestamps; they confuse Make's dependency engine
330   thoroughly.
332 * The new directive `sinclude' is now recognized as another name for
333   `-include', for compatibility with some other Makes.
335 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
336   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
338 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
339   See README.W32 for details, and direct all Windows-related questions to
340   <rob_tulloh@tivoli.com>.
342 Version 3.73
344 * Converted to use Autoconf version 2, so `configure' has some new options.
345   See INSTALL for details.
347 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
348   output enabled by -d, at any time during the run.
350 Version 3.72
352 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
353   He is maintaining the DOS port, not the GNU Make maintainer;
354   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
355   MS-DOS binaries are available for FTP from ftp.simtel.net in
356   /pub/simtelnet/gnu/djgpp/.
358 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
359   contain variable definitions itself; these are treated just like
360   command-line variable definitions.  Make will automatically insert any
361   variable definitions from the environment value of `MAKEFLAGS' or from
362   the command line, into the `MAKEFLAGS' value exported to children.  The
363   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
364   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
365   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
366   in the environment when its size is limited.
368 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
369   a rule if it has changed when its commands exit with a nonzero status,
370   just as when the commands get a signal.
372 * The automatic variable `$+' is new.  It lists all the dependencies like
373   `$^', but preserves duplicates listed in the makefile.  This is useful
374   for linking rules, where library files sometimes need to be listed twice
375   in the link order.
377 * You can now specify the `.IGNORE' and `.SILENT' special targets with
378   dependencies to limit their effects to those files.  If a file appears as
379   a dependency of `.IGNORE', then errors will be ignored while running the
380   commands to update that file.  Likewise if a file appears as a dependency
381   of `.SILENT', then the commands to update that file will not be printed
382   before they are run.  (This change was made to conform to POSIX.2.)
384 Version 3.71
386 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
387   `$(^D)' now omit the trailing slash from the directory name.  (This change
388   was made to comply with POSIX.2.)
390 * The source distribution now includes the Info files for the Make manual.
391   There is no longer a separate distribution containing Info and DVI files.
393 * You can now set the variables `binprefix' and/or `manprefix' in
394   Makefile.in (or on the command line when installing) to install GNU make
395   under a name other than `make' (i.e., ``make binprefix=g install''
396   installs GNU make as `gmake').
398 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
399   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
400   Makeinfo program.
402 * The exit status of Make when it runs into errors is now 2 instead of 1.
403   The exit status is 1 only when using -q and some target is not up to date.
404   (This change was made to comply with POSIX.2.)
406 Version 3.70
408 * It is no longer a fatal error to have a NUL character in a makefile.
409   You should never put a NUL in a makefile because it can have strange
410   results, but otherwise empty lines full of NULs (such as produced by
411   the `xmkmf' program) will always work fine.
413 * The error messages for nonexistent included makefiles now refer to the
414   makefile name and line number where the `include' appeared, so Emacs's
415   C-x ` command takes you there (in case it's a typo you need to fix).
417 Version 3.69
419 * Implicit rule search for archive member references is now done in the
420   opposite order from previous versions: the whole target name `LIB(MEM)'
421   first, and just the member name and parentheses `(MEM)' second.
423 * Make now gives an error for an unterminated variable or function reference.
424   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
426 * The new default variable `MAKE_VERSION' gives the version number of
427   Make, and a string describing the remote job support compiled in (if any).
428   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
430 * Commands in an invocation of the `shell' function are no longer run with
431   a modified environment like target commands are.  As in versions before
432   3.68, they now run with the environment that `make' started with.  We
433   have reversed the change made in version 3.68 because it turned out to
434   cause a paradoxical situation in cases like:
436         export variable = $(shell echo value)
438   When Make attempted to put this variable in the environment for a target
439   command, it would try expand the value by running the shell command
440   `echo value'.  In version 3.68, because it constructed an environment
441   for that shell command in the same way, Make would begin to go into an
442   infinite loop and then get a fatal error when it detected the loop.
444 * The commands given for `.DEFAULT' are now used for phony targets with no
445   commands.
447 Version 3.68
449 * You can list several archive member names inside parenthesis:
450   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
452 * You can use wildcards inside archive member references.  For example,
453   `lib(*.o)' expands to all existing members of `lib' whose names end in
454   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
455   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
456   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
458 * A suffix rule `.X.a' now produces two pattern rules:
459         (%.o): %.X      # Previous versions produced only this.
460         %.a: %.X        # Now produces this as well, just like other suffixes.
462 * The new flag `--warn-undefined-variables' says to issue a warning message
463   whenever Make expands a reference to an undefined variable.
465 * The new `-include' directive is just like `include' except that there is
466   no error (not even a warning) for a nonexistent makefile.
468 * Commands in an invocation of the `shell' function are now run with a
469   modified environment like target commands are, so you can use `export' et
470   al to set up variables for them.  They used to run with the environment
471   that `make' started with.
473 Version 3.66
475 * `make --version' (or `make -v') now exits immediately after printing
476   the version number.
478 Version 3.65
480 * Make now supports long-named members in `ar' archive files.
482 Version 3.64
484 * Make now supports the `+=' syntax for a variable definition which appends
485   to the variable's previous value.  See the section `Appending More Text
486   to Variables' in the manual for full details.
488 * The new option `--no-print-directory' inhibits the `-w' or
489   `--print-directory' feature.  Make turns on `--print-directory'
490   automatically if you use `-C' or `--directory', and in sub-makes; some
491   users have found this behavior undesirable.
493 * The built-in implicit rules now support the alternative extension
494   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
496 Version 3.63
498 * Make now uses a standard GNU `configure' script.  See the new file
499   INSTALL for the new (and much simpler) installation procedure.
501 * There is now a shell script to build Make the first time, if you have no
502   other `make' program.  `build.sh' is created by `configure'; see README.
504 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
506 * Elements of the `$^' and `$?' automatic variables that are archive
507   member references now list only the member name, as in Unix and POSIX.2.
509 * You should no longer ever need to specify the `-w' switch, which prints
510   the current directory before and after Make runs.  The `-C' switch to
511   change directory, and recursive use of Make, now set `-w' automatically.
513 * Multiple double-colon rules for the same target will no longer have their
514   commands run simultaneously under -j, as this could result in the two
515   commands trying to change the file at the same time and interfering with
516   one another.
518 * The `SHELL' variable is now never taken from the environment.
519   Each makefile that wants a shell other than the default (/bin/sh) must
520   set SHELL itself.  SHELL is always exported to child processes.
521   This change was made for compatibility with POSIX.2.
523 * Make now accepts long options.  There is now an informative usage message
524   that tells you what all the options are and what they do.  Try `make --help'.
526 * There are two new directives: `export' and `unexport'.  All variables are
527   no longer automatically put into the environments of the commands that
528   Make runs.  Instead, only variables specified on the command line or in
529   the environment are exported by default.  To export others, use:
530         export VARIABLE
531   or you can define variables with:
532         export VARIABLE = VALUE
533   or:
534         export VARIABLE := VALUE
535   You can use just:
536         export
537   or:
538         .EXPORT_ALL_VARIABLES:
539   to get the old behavior.  See the node `Variables/Recursion' in the manual
540   for a full description.
542 * The commands from the `.DEFAULT' special target are only applied to
543   targets which have no rules at all, not all targets with no commands.
544   This change was made for compatibility with Unix make.
546 * All fatal error messages now contain `***', so they are easy to find in
547   compilation logs.
549 * Dependency file names like `-lNAME' are now replaced with the actual file
550   name found, as with files found by normal directory search (VPATH).
551   The library file `libNAME.a' may now be found in the current directory,
552   which is checked before VPATH; the standard set of directories (/lib,
553   /usr/lib, /usr/local/lib) is now checked last.
554   See the node `Libraries/Search' in the manual for full details.
556 * A single `include' directive can now specify more than one makefile to
557   include, like this:
558         include file1 file2
559   You can also use shell file name patterns in an `include' directive:
560         include *.mk
562 * The default directories to search for included makefiles, and for
563   libraries specified with `-lNAME', are now set by configuration.
565 * You can now use blanks as well as colons to separate the directories in a
566   search path for the `vpath' directive or the `VPATH' variable.
568 * You can now use variables and functions in the left hand side of a
569   variable assignment, as in "$(foo)bar = value".
571 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
572   The `MAKE_COMMAND' variable is now defined to the name with which make
573   was invoked.
575 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
576   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
577   problems with shells that cannot have `+' in environment variable names.
579 * The value of a recursively expanded variable is now expanded when putting
580   it into the environment for child processes.  This change was made for
581   compatibility with Unix make.
583 * A rule with no targets before the `:' is now accepted and ignored.
584   This change was made for compatibility with SunOS 4 make.
585   We do not recommend that you write your makefiles to take advantage of this.
587 * The `-I' switch can now be used in MAKEFLAGS, and are put there
588   automatically just like other switches.
590 Version 3.61
592 * Built-in rules for C++ source files with the `.C' suffix.
593   We still recommend that you use `.cc' instead.
595 * If commands are given too many times for a single target,
596   the last set given is used, and a warning message is printed.
598 * Error messages about makefiles are in standard GNU error format,
599   so C-x ` in Emacs works on them.
601 * Dependencies of pattern rules which contain no % need not actually exist
602   if they can be created (just like dependencies which do have a %).
604 Version 3.60
606 * A message is always printed when Make decides there is nothing to be done.
607   It used to be that no message was printed for top-level phony targets
608   (because "`phony' is up to date" isn't quite right).  Now a different
609   message "Nothing to be done for `phony'" is printed in that case.
611 * Archives on AIX now supposedly work.
613 * When the commands specified for .DEFAULT are used to update a target,
614   the $< automatic variable is given the same value as $@ for that target.
615   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
617 Version 3.59
619 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
620   variables while remaking makefiles, so recursive makes done while remaking
621   makefiles will behave properly.
623 * If the special target `.NOEXPORT' is specified in a makefile,
624   only variables that came from the environment and variables
625   defined on the command line are exported.
627 Version 3.58
629 * Suffix rules may have dependencies (which are ignored).
631 Version 3.57
633 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
634   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
636 Version 3.55
638 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
639 for the Texinfo manual, but it documents the basic functionality and the
640 switches.  For full documentation, you should still read the Texinfo manual.
641 Thanks to Dennis Morse of Stanford University for contributing the initial
642 version of this.
644 * Variables which are defined by default (e.g., `CC') will no longer be put
645 into the environment for child processes.  (If these variables are reset by the
646 environment, makefiles, or the command line, they will still go into the
647 environment.)
649 * Makefiles which have commands but no dependencies (and thus are always
650   considered out of date and in need of remaking), will not be remade (if they
651   were being remade only because they were makefiles).  This means that GNU
652   Make will no longer go into an infinite loop when fed the makefiles that
653   `imake' (necessary to build X Windows) produces.
655 * There is no longer a warning for using the `vpath' directive with an explicit
656 pathname (instead of a `%' pattern).
658 Version 3.51
660 * When removing intermediate files, only one `rm' command line is printed,
661 listing all file names.
663 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
664 These are the directory-only and file-only versions of `$^' and `$?'.
666 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
667 directory if it exists.
669 * The automatic variable `$($/)' is no longer defined.
671 * Leading `+' characters on a command line make that line be executed even
672 under -n, -t, or -q (as if the line contained `$(MAKE)').
674 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
675 only those lines are executed, not their entire rules.
676 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
678 Version 3.50
680 * Filenames in rules will now have ~ and ~USER expanded.
682 * The `-p' output has been changed so it can be used as a makefile.
683 (All information that isn't specified by makefiles is prefaced with comment
684 characters.)
686 Version 3.49
688 * The % character can be quoted with backslash in implicit pattern rules,
689 static pattern rules, `vpath' directives, and `patsubst', `filter', and
690 `filter-out' functions.  A warning is issued if a `vpath' directive's
691 pattern contains no %.
693 * The `wildcard' variable expansion function now expands ~ and ~USER.
695 * Messages indicating failed commands now contain the target name:
696         make: *** [target] Error 1
698 * The `-p' output format has been changed somewhat to look more like
699 makefile rules and to give all information that Make has about files.
701 Version 3.48
703 Version 3.47
705 * The `-l' switch with no argument removes any previous load-average limit.
707 * When the `-w' switch is in effect, and Make has updated makefiles,
708 it will write a `Leaving directory' messagfe before re-executing itself.
709 This makes the `directory change tracking' changes to Emacs's compilation
710 commands work properly.
712 Version 3.46
714 * The automatic variable `$*' is now defined for explicit rules,
715 as it is in Unix make.
717 Version 3.45
719 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
720 specified without an argument (indicating infinite jobs).
721 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
723 * Make no longer checks hashed directories after running commands.
724 The behavior implemented in 3.41 caused too much slowdown.
726 Version 3.44
728 * A dependency is NOT considered newer than its dependent if
729 they have the same modification time.  The behavior implemented
730 in 3.43 conflicts with RCS.
732 Version 3.43
734 * Dependency loops are no longer fatal errors.
736 * A dependency is considered newer than its dependent if
737 they have the same modification time.
739 Version 3.42
741 * The variables F77 and F77FLAGS are now set by default to $(FC) and
742 $(FFLAGS).  Makefiles designed for System V make may use these variables in
743 explicit rules and expect them to be set.  Unfortunately, there is no way to
744 make setting these affect the Fortran implicit rules unless FC and FFLAGS
745 are not used (and these are used by BSD make).
747 Version 3.41
749 * Make now checks to see if its hashed directories are changed by commands.
750 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
752 Version 3.39
754 * The `shell' function no longer captures standard error output.
756 Version 3.32
758 * A file beginning with a dot can be the default target if it also contains
759 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
761 Version 3.31
763 * Archive member names are truncated to 15 characters.
765 * Yet more USG stuff.
767 * Minimal support for Microport System V (a 16-bit machine and a
768 brain-damaged compiler).  This has even lower priority than other USG
769 support, so if it gets beyond trivial, I will take it out completely.
771 * Revamped default implicit rules (not much visible change).
773 * The -d and -p options can come from the environment.
775 Version 3.30
777 * Improved support for USG and HPUX (hopefully).
779 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
780 equivalent to `$(patsubst a,b,$(foo))'.
782 * Defining .DEFAULT with no deps or commands clears its commands.
784 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
785 executable).  All default implicit rules that use cpp (even indirectly), use
786 $(CPPFLAGS).
788 Version 3.29
790 * Giving the -j option with no arguments gives you infinite jobs.
792 Version 3.28
794 * New option: "-l LOAD" says not to start any new jobs while others are
795 running if the load average is not below LOAD (a floating-point number).
797 * There is support in place for implementations of remote command execution
798 in Make.  See the file remote.c.
800 Version 3.26
802 * No more than 10 directories will be kept open at once.
803 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
805 Version 3.25
807 * Archive files will have their modification times recorded before doing
808 anything that might change their modification times by updating an archive
809 member.
811 Version 3.20
813 * The `MAKELEVEL' variable is defined for use by makefiles.
815 Version 3.19
817 * The recursion level indications in error messages are much shorter than
818 they were in version 3.14.
820 Version 3.18
822 * Leading spaces before directives are ignored (as documented).
824 * Included makefiles can determine the default goal target.
825 (System V Make does it this way, so we are being compatible).
827 Version 3.14.
829 * Variables that are defaults built into Make will not be put in the
830 environment for children.  This just saves some environment space and,
831 except under -e, will be transparent to sub-makes.
833 * Error messages from sub-makes will indicate the level of recursion.
835 * Hopefully some speed-up for large directories due to a change in the
836 directory hashing scheme.
838 * One child will always get a standard input that is usable.
840 * Default makefiles that don't exist will be remade and read in.
842 Version 3.13.
844 * Count parentheses inside expansion function calls so you can
845 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
847 Version 3.12.
849 * Several bug fixes, including USG and Sun386i support.
851 * `shell' function to expand shell commands a la `
853 * If the `-d' flag is given, version information will be printed.
855 * The `-c' option has been renamed to `-C' for compatibility with tar.
857 * The `-p' option no longer inhibits other normal operation.
859 * Makefiles will be updated and re-read if necessary.
861 * Can now run several commands at once (parallelism), -j option.
863 * Error messages will contain the level of Make recursion, if any.
865 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
866 makefiles are read.
868 * A double-colon rule with no dependencies will always have its commands run.
869 (This is how both the BSD and System V versions of Make do it.)
871 Version 3.05
873 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
875 ----------------------------------------------------------------------
876 Copyright information:
878    Permission is granted to anyone to make or distribute verbatim copies
879    of this document as received, in any medium, provided that the
880    copyright notice and this permission notice are preserved, thus
881    giving the recipient permission to redistribute in turn.
883    Permission is granted to distribute modified versions of this
884    document, or of portions of it, under the above conditions, provided
885    also that they carry prominent notices stating who last changed them.