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