Installed the da.po (Danish) translation file.
[make.git] / NEWS
blob0c2dd69b26a7665ba7cf58b8793d1376e596852c
1 GNU make NEWS                                               -*-indented-text-*-
2   History of user-visible changes.
3   30 May 2001
5 Copyright (C) 1992,93,94,95,96,97,98,99,2000,2001 Free Software Foundation, Inc.
6 See the end for copying conditions.
8 All changes mentioned here are more fully described in the GNU make
9 manual, which is contained in this distribution as the file make.texinfo.
11 Please send GNU make bug reports to <bug-make@gnu.org>.
12 See the README file and the GNU make manual for details on sending bug
13 reports.
15 Version 3.79.2
17 * New pseudo-target .LOW_RESOLUTION_TIME, superseding the configure
18   option --disable-nsec-timestamps.  You might need this if your build
19   process depends on tools like "cp -p" preserving time stamps, since
20   "cp -p" (right now) doesn't preserve the subsecond portion of a time
21   stamp.
23 * Updated translations for French, Galician, Japanese, Korean, and Russian.
24   New translations for Danish and Turkish.
26 Version 3.79.1
28 * .SECONDARY with no prerequisites now prevents any target from being
29   removed because make thinks it's an intermediate file, not just those
30   listed in the makefile.
32 * New configure option --disable-nsec-timestamps, but this was
33   superseded in later versions by the .LOW_RESOLUTION_TIME pseudo-target.
35 Version 3.79
37 * GNU make optionally supports internationalization and locales via the
38   GNU gettext (or local gettext if suitable) package.  See the ABOUT-NLS
39   file for more information on configuring GNU make for NLS.
41 * Previously, GNU make quoted variables such as MAKEFLAGS and
42   MAKEOVERRIDES for proper parsing by the shell.  This allowed them to
43   be used within make build scripts.  However, using them there is not
44   proper behavior: they are meant to be passed to subshells via the
45   environment.  Unfortunately the values were not quoted properly to be
46   passed through the environment.  This meant that make didn't properly
47   pass some types of command line values to submakes.
49   With this version we change that behavior: now these variables are
50   quoted properly for passing through the environment, which is the
51   correct way to do it.  If you previously used these variables
52   explicitly within a make rule you may need to re-examine your use for
53   correctness given this change.
55 * A new pseudo-target .NOTPARALLEL is available.  If defined, the
56   current makefile is run serially regardless of the value of -j.
57   However, submakes are still eligible for parallel execution.
59 * The --debug option has changed: it now allows optional flags
60   controlling the amount and type of debugging output.  By default only
61   a minimal amount information is generated, displaying the names of
62   "normal" targets (not makefiles) that were deemed out of date and in
63   need of being rebuilt.
65   Note that the -d option behaves as before: it takes no arguments and
66   all debugging information is generated.
68 * The `-p' (print database) output now includes filename and linenumber
69   information for variable definitions, to aid debugging.
71 * The wordlist function no longer reverses its arguments if the "start"
72   value is greater than the "end" value.  If that's true, nothing is
73   returned.
75 * Hartmut Becker provided many updates for the VMS port of GNU make.
76   See the readme.vms file for more details.
78 Version 3.78
80 * Two new functions, $(error ...) and $(warning ...) are available.  The
81   former will cause make to fail and exit immediately upon expansion of
82   the function, with the text provided as the error message.  The latter
83   causes the text provided to be printed as a warning message, but make
84   proceeds normally.
86 * A new function $(call ...) is available.  This allows users to create
87   their own parameterized macros and invoke them later.  Original
88   implementation of this function was provided by Han-Wen Nienhuys
89   <hanwen@cs.uu.nl>.
91 * A new function $(if ...) is available.  It provides if-then-else
92   capabilities in a builtin function.  Original implementation of this
93   function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
95 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
96   library dependency expansion (dependencies like ``-lfoo'') is performed.
98 * Make accepts CRLF sequences as well as traditional LF, for
99   compatibility with makefiles created on other operating systems.
101 * Make accepts a new option: -R, or --no-builtin-variables.  This option
102   disables the definition of the rule-specific builtin variables (CC,
103   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
104   as well.
106 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
108   On systems that support POSIX pipe(2) semantics, GNU make can now pass
109   -jN options to submakes rather than forcing them all to use -j1.  The
110   top make and all its sub-make processes use a pipe to communicate with
111   each other to ensure that no more than N jobs are started across all
112   makes.  To get the old behavior of -j back, you can configure make
113   with the --disable-job-server option.
115 * The confusing term "dependency" has been replaced by the more accurate
116   and standard term "prerequisite", both in the manual and in all GNU make
117   output.
119 * GNU make supports the "big archive" library format introduced in AIX 4.3.
121 * GNU make supports large files on AIX, HP-UX, and IRIX.  These changes
122   were provided by Paul Eggert <eggert@twinsun.com>.  (Large file
123   support for Solaris and Linux was introduced in 3.77, but the
124   configuration had issues: these have also been resolved).
126 * The Windows 95/98/NT (W32) version of GNU make now has native support
127   for the Cygnus Cygwin release B20.1 shell (bash).
129 * The GNU make regression test suite, long available separately "under
130   the table", has been integrated into the release.  You can invoke it
131   by running "make check" in the distribution.  Note that it requires
132   Perl (either Perl 4 or Perl 5) to run.
134 Version 3.77
136 * Implement BSD make's "?=" variable assignment operator.  The variable
137   is assigned the specified value only if that variable is not already
138   defined.
140 * Make defines a new variable, "CURDIR", to contain the current working
141   directory (after the -C option, if any, has been processed).
142   Modifying this variable has no effect on the operation of make.
144 * Make defines a new default RCS rule, for new-style master file
145   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
147   Make defines new default rules for DOS-style C++ file naming
148   conventions, with ``.cpp'' suffixes.  All the same rules as for
149   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
150   COMPILE.cpp macros (which default to the same value as LINK.cc and
151   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
152   use CXXFLAGS to change C++ compiler flags.
154 * A new feature, "target-specific variable values", has been added.
155   This is a large change so please see the appropriate sections of the
156   manual for full details.  Briefly, syntax like this:
158     TARGET: VARIABLE = VALUE
160   defines VARIABLE as VALUE within the context of TARGET.  This is
161   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
162   that the assignment may be of any type, not just recursive, and that
163   the override keyword is available.
165   COMPATIBILITY: This new syntax means that if you have any rules where
166   the first or second dependency has an equal sign (=) in its name,
167   you'll have to escape them with a backslash: "foo : bar\=baz".
168   Further, if you have any dependencies which already contain "\=",
169   you'll have to escape both of them: "foo : bar\\\=baz".
171 * A new appendix listing the most common error and warning messages
172   generated by GNU make, with some explanation, has been added to the
173   GNU make User's Manual.
175 * Updates to the GNU make Customs library support (see README.customs).
177 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
178   and to the DOS port from Eli Zaretski (see README.DOS).
180 Version 3.76.1
182 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
184 Version 3.76
186 * GNU make now uses automake to control Makefile.in generation.  This
187   should make it more consistent with the GNU standards.
189 * VPATH functionality has been changed to incorporate the VPATH+ patch,
190   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
191   manual.
193 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
194   were specified on the command line, if any.  Modifying this variable
195   has no effect on the operation of make.
197 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
198   list of words from number S to number E (inclusive) of TEXT.
200 * Instead of an error, detection of future modification times gives a
201   warning and continues.  The warning is repeated just before GNU make
202   exits, so it is less likely to be lost.
204 * Fix the $(basename) and $(suffix) functions so they only operate on
205   the last filename, not the entire string:
207       Command              Old Result             New Result
208       -------              ----------             ----------
209     $(basename a.b)        a                      a
210     $(basename a.b/c)      a                      a.b/c
211     $(suffix a.b)          b                      b
212     $(suffix a.b/c)        b/c                    <empty>
214 * The $(strip) function now removes newlines as well as TABs and spaces.
216 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
217   as newlines (\n).
219 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
221 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
222   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
223   and utilities.  See README.DOS for details, and direct all questions
224   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
225   Delorie <dj@delorie.com>.
227 * John W. Eaton has updated the VMS port to support libraries and VPATH.
229 Version 3.75
231 * The directory messages printed by `-w' and implicitly in sub-makes,
232   are now omitted if Make runs no commands and has no other messages to print.
234 * Make now detects files that for whatever reason have modification times
235   in the future and gives an error.  Files with such impossible timestamps
236   can result from unsynchronized clocks, or archived distributions
237   containing bogus timestamps; they confuse Make's dependency engine
238   thoroughly.
240 * The new directive `sinclude' is now recognized as another name for
241   `-include', for compatibility with some other Makes.
243 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
244   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
246 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
247   See README.W32 for details, and direct all Windows-related questions to
248   <rob_tulloh@tivoli.com>.
250 Version 3.73
252 * Converted to use Autoconf version 2, so `configure' has some new options.
253   See INSTALL for details.
255 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
256   output enabled by -d, at any time during the run.
258 Version 3.72
260 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
261   He is maintaining the DOS port, not the GNU Make maintainer;
262   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
263   MS-DOS binaries are available for FTP from ftp.simtel.net in
264   /pub/simtelnet/gnu/djgpp/.
266 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
267   contain variable definitions itself; these are treated just like
268   command-line variable definitions.  Make will automatically insert any
269   variable definitions from the environment value of `MAKEFLAGS' or from
270   the command line, into the `MAKEFLAGS' value exported to children.  The
271   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
272   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
273   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
274   in the environment when its size is limited.
276 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
277   a rule if it has changed when its commands exit with a nonzero status,
278   just as when the commands get a signal.
280 * The automatic variable `$+' is new.  It lists all the dependencies like
281   `$^', but preserves duplicates listed in the makefile.  This is useful
282   for linking rules, where library files sometimes need to be listed twice
283   in the link order.
285 * You can now specify the `.IGNORE' and `.SILENT' special targets with
286   dependencies to limit their effects to those files.  If a file appears as
287   a dependency of `.IGNORE', then errors will be ignored while running the
288   commands to update that file.  Likewise if a file appears as a dependency
289   of `.SILENT', then the commands to update that file will not be printed
290   before they are run.  (This change was made to conform to POSIX.2.)
292 Version 3.71
294 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
295   `$(^D)' now omit the trailing slash from the directory name.  (This change
296   was made to comply with POSIX.2.)
298 * The source distribution now includes the Info files for the Make manual.
299   There is no longer a separate distribution containing Info and DVI files.
301 * You can now set the variables `binprefix' and/or `manprefix' in
302   Makefile.in (or on the command line when installing) to install GNU make
303   under a name other than `make' (i.e., ``make binprefix=g install''
304   installs GNU make as `gmake').
306 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
307   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
308   Makeinfo program.
310 * The exit status of Make when it runs into errors is now 2 instead of 1.
311   The exit status is 1 only when using -q and some target is not up to date.
312   (This change was made to comply with POSIX.2.)
314 Version 3.70
316 * It is no longer a fatal error to have a NUL character in a makefile.
317   You should never put a NUL in a makefile because it can have strange
318   results, but otherwise empty lines full of NULs (such as produced by
319   the `xmkmf' program) will always work fine.
321 * The error messages for nonexistent included makefiles now refer to the
322   makefile name and line number where the `include' appeared, so Emacs's
323   C-x ` command takes you there (in case it's a typo you need to fix).
325 Version 3.69
327 * Implicit rule search for archive member references is now done in the
328   opposite order from previous versions: the whole target name `LIB(MEM)'
329   first, and just the member name and parentheses `(MEM)' second.
331 * Make now gives an error for an unterminated variable or function reference.
332   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
334 * The new default variable `MAKE_VERSION' gives the version number of
335   Make, and a string describing the remote job support compiled in (if any).
336   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
338 * Commands in an invocation of the `shell' function are no longer run with
339   a modified environment like target commands are.  As in versions before
340   3.68, they now run with the environment that `make' started with.  We
341   have reversed the change made in version 3.68 because it turned out to
342   cause a paradoxical situation in cases like:
344         export variable = $(shell echo value)
346   When Make attempted to put this variable in the environment for a target
347   command, it would try expand the value by running the shell command
348   `echo value'.  In version 3.68, because it constructed an environment
349   for that shell command in the same way, Make would begin to go into an
350   infinite loop and then get a fatal error when it detected the loop.
352 * The commands given for `.DEFAULT' are now used for phony targets with no
353   commands.
355 Version 3.68
357 * You can list several archive member names inside parenthesis:
358   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
360 * You can use wildcards inside archive member references.  For example,
361   `lib(*.o)' expands to all existing members of `lib' whose names end in
362   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
363   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
364   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
366 * A suffix rule `.X.a' now produces two pattern rules:
367         (%.o): %.X      # Previous versions produced only this.
368         %.a: %.X        # Now produces this as well, just like other suffixes.
370 * The new flag `--warn-undefined-variables' says to issue a warning message
371   whenever Make expands a reference to an undefined variable.
373 * The new `-include' directive is just like `include' except that there is
374   no error (not even a warning) for a nonexistent makefile.
376 * Commands in an invocation of the `shell' function are now run with a
377   modified environment like target commands are, so you can use `export' et
378   al to set up variables for them.  They used to run with the environment
379   that `make' started with.
381 Version 3.66
383 * `make --version' (or `make -v') now exits immediately after printing
384   the version number.
386 Version 3.65
388 * Make now supports long-named members in `ar' archive files.
390 Version 3.64
392 * Make now supports the `+=' syntax for a variable definition which appends
393   to the variable's previous value.  See the section `Appending More Text
394   to Variables' in the manual for full details.
396 * The new option `--no-print-directory' inhibits the `-w' or
397   `--print-directory' feature.  Make turns on `--print-directory'
398   automatically if you use `-C' or `--directory', and in sub-makes; some
399   users have found this behavior undesirable.
401 * The built-in implicit rules now support the alternative extension
402   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
404 Version 3.63
406 * Make now uses a standard GNU `configure' script.  See the new file
407   INSTALL for the new (and much simpler) installation procedure.
409 * There is now a shell script to build Make the first time, if you have no
410   other `make' program.  `build.sh' is created by `configure'; see README.
412 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
414 * Elements of the `$^' and `$?' automatic variables that are archive
415   member references now list only the member name, as in Unix and POSIX.2.
417 * You should no longer ever need to specify the `-w' switch, which prints
418   the current directory before and after Make runs.  The `-C' switch to
419   change directory, and recursive use of Make, now set `-w' automatically.
421 * Multiple double-colon rules for the same target will no longer have their
422   commands run simultaneously under -j, as this could result in the two
423   commands trying to change the file at the same time and interfering with
424   one another.
426 * The `SHELL' variable is now never taken from the environment.
427   Each makefile that wants a shell other than the default (/bin/sh) must
428   set SHELL itself.  SHELL is always exported to child processes.
429   This change was made for compatibility with POSIX.2.
431 * Make now accepts long options.  There is now an informative usage message
432   that tells you what all the options are and what they do.  Try `make --help'.
434 * There are two new directives: `export' and `unexport'.  All variables are
435   no longer automatically put into the environments of the commands that
436   Make runs.  Instead, only variables specified on the command line or in
437   the environment are exported by default.  To export others, use:
438         export VARIABLE
439   or you can define variables with:
440         export VARIABLE = VALUE
441   or:
442         export VARIABLE := VALUE
443   You can use just:
444         export
445   or:
446         .EXPORT_ALL_VARIABLES:
447   to get the old behavior.  See the node `Variables/Recursion' in the manual
448   for a full description.
450 * The commands from the `.DEFAULT' special target are only applied to
451   targets which have no rules at all, not all targets with no commands.
452   This change was made for compatibility with Unix make.
454 * All fatal error messages now contain `***', so they are easy to find in
455   compilation logs.
457 * Dependency file names like `-lNAME' are now replaced with the actual file
458   name found, as with files found by normal directory search (VPATH).
459   The library file `libNAME.a' may now be found in the current directory,
460   which is checked before VPATH; the standard set of directories (/lib,
461   /usr/lib, /usr/local/lib) is now checked last.
462   See the node `Libraries/Search' in the manual for full details.
464 * A single `include' directive can now specify more than one makefile to
465   include, like this:
466         include file1 file2
467   You can also use shell file name patterns in an `include' directive:
468         include *.mk
470 * The default directories to search for included makefiles, and for
471   libraries specified with `-lNAME', are now set by configuration.
473 * You can now use blanks as well as colons to separate the directories in a
474   search path for the `vpath' directive or the `VPATH' variable.
476 * You can now use variables and functions in the left hand side of a
477   variable assignment, as in "$(foo)bar = value".
479 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
480   The `MAKE_COMMAND' variable is now defined to the name with which make
481   was invoked.
483 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
484   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
485   problems with shells that cannot have `+' in environment variable names.
487 * The value of a recursively expanded variable is now expanded when putting
488   it into the environment for child processes.  This change was made for
489   compatibility with Unix make.
491 * A rule with no targets before the `:' is now accepted and ignored.
492   This change was made for compatibility with SunOS 4 make.
493   We do not recommend that you write your makefiles to take advantage of this.
495 * The `-I' switch can now be used in MAKEFLAGS, and are put there
496   automatically just like other switches.
498 Version 3.61
500 * Built-in rules for C++ source files with the `.C' suffix.
501   We still recommend that you use `.cc' instead.
503 * If commands are given too many times for a single target,
504   the last set given is used, and a warning message is printed.
506 * Error messages about makefiles are in standard GNU error format,
507   so C-x ` in Emacs works on them.
509 * Dependencies of pattern rules which contain no % need not actually exist
510   if they can be created (just like dependencies which do have a %).
512 Version 3.60
514 * A message is always printed when Make decides there is nothing to be done.
515   It used to be that no message was printed for top-level phony targets
516   (because "`phony' is up to date" isn't quite right).  Now a different
517   message "Nothing to be done for `phony'" is printed in that case.
519 * Archives on AIX now supposedly work.
521 * When the commands specified for .DEFAULT are used to update a target,
522   the $< automatic variable is given the same value as $@ for that target.
523   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
525 Version 3.59
527 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
528   variables while remaking makefiles, so recursive makes done while remaking
529   makefiles will behave properly.
531 * If the special target `.NOEXPORT' is specified in a makefile,
532   only variables that came from the environment and variables
533   defined on the command line are exported.
535 Version 3.58
537 * Suffix rules may have dependencies (which are ignored).
539 Version 3.57
541 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
542   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
544 Version 3.55
546 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
547 for the Texinfo manual, but it documents the basic functionality and the
548 switches.  For full documentation, you should still read the Texinfo manual.
549 Thanks to Dennis Morse of Stanford University for contributing the initial
550 version of this.
552 * Variables which are defined by default (e.g., `CC') will no longer be put
553 into the environment for child processes.  (If these variables are reset by the
554 environment, makefiles, or the command line, they will still go into the
555 environment.)
557 * Makefiles which have commands but no dependencies (and thus are always
558   considered out of date and in need of remaking), will not be remade (if they
559   were being remade only because they were makefiles).  This means that GNU
560   Make will no longer go into an infinite loop when fed the makefiles that
561   `imake' (necessary to build X Windows) produces.
563 * There is no longer a warning for using the `vpath' directive with an explicit
564 pathname (instead of a `%' pattern).
566 Version 3.51
568 * When removing intermediate files, only one `rm' command line is printed,
569 listing all file names.
571 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
572 These are the directory-only and file-only versions of `$^' and `$?'.
574 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
575 directory if it exists.
577 * The automatic variable `$($/)' is no longer defined.
579 * Leading `+' characters on a command line make that line be executed even
580 under -n, -t, or -q (as if the line contained `$(MAKE)').
582 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
583 only those lines are executed, not their entire rules.
584 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
586 Version 3.50
588 * Filenames in rules will now have ~ and ~USER expanded.
590 * The `-p' output has been changed so it can be used as a makefile.
591 (All information that isn't specified by makefiles is prefaced with comment
592 characters.)
594 Version 3.49
596 * The % character can be quoted with backslash in implicit pattern rules,
597 static pattern rules, `vpath' directives, and `patsubst', `filter', and
598 `filter-out' functions.  A warning is issued if a `vpath' directive's
599 pattern contains no %.
601 * The `wildcard' variable expansion function now expands ~ and ~USER.
603 * Messages indicating failed commands now contain the target name:
604         make: *** [target] Error 1
606 * The `-p' output format has been changed somewhat to look more like
607 makefile rules and to give all information that Make has about files.
609 Version 3.48
611 Version 3.47
613 * The `-l' switch with no argument removes any previous load-average limit.
615 * When the `-w' switch is in effect, and Make has updated makefiles,
616 it will write a `Leaving directory' messagfe before re-executing itself.
617 This makes the `directory change tracking' changes to Emacs's compilation
618 commands work properly.
620 Version 3.46
622 * The automatic variable `$*' is now defined for explicit rules,
623 as it is in Unix make.
625 Version 3.45
627 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
628 specified without an argument (indicating infinite jobs).
629 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
631 * Make no longer checks hashed directories after running commands.
632 The behavior implemented in 3.41 caused too much slowdown.
634 Version 3.44
636 * A dependency is NOT considered newer than its dependent if
637 they have the same modification time.  The behavior implemented
638 in 3.43 conflicts with RCS.
640 Version 3.43
642 * Dependency loops are no longer fatal errors.
644 * A dependency is considered newer than its dependent if
645 they have the same modification time.
647 Version 3.42
649 * The variables F77 and F77FLAGS are now set by default to $(FC) and
650 $(FFLAGS).  Makefiles designed for System V make may use these variables in
651 explicit rules and expect them to be set.  Unfortunately, there is no way to
652 make setting these affect the Fortran implicit rules unless FC and FFLAGS
653 are not used (and these are used by BSD make).
655 Version 3.41
657 * Make now checks to see if its hashed directories are changed by commands.
658 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
660 Version 3.39
662 * The `shell' function no longer captures standard error output.
664 Version 3.32
666 * A file beginning with a dot can be the default target if it also contains
667 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
669 Version 3.31
671 * Archive member names are truncated to 15 characters.
673 * Yet more USG stuff.
675 * Minimal support for Microport System V (a 16-bit machine and a
676 brain-damaged compiler).  This has even lower priority than other USG
677 support, so if it gets beyond trivial, I will take it out completely.
679 * Revamped default implicit rules (not much visible change).
681 * The -d and -p options can come from the environment.
683 Version 3.30
685 * Improved support for USG and HPUX (hopefully).
687 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
688 equivalent to `$(patsubst a,b,$(foo))'.
690 * Defining .DEFAULT with no deps or commands clears its commands.
692 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
693 executable).  All default implicit rules that use cpp (even indirectly), use
694 $(CPPFLAGS).
696 Version 3.29
698 * Giving the -j option with no arguments gives you infinite jobs.
700 Version 3.28
702 * New option: "-l LOAD" says not to start any new jobs while others are
703 running if the load average is not below LOAD (a floating-point number).
705 * There is support in place for implementations of remote command execution
706 in Make.  See the file remote.c.
708 Version 3.26
710 * No more than 10 directories will be kept open at once.
711 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
713 Version 3.25
715 * Archive files will have their modification times recorded before doing
716 anything that might change their modification times by updating an archive
717 member.
719 Version 3.20
721 * The `MAKELEVEL' variable is defined for use by makefiles.
723 Version 3.19
725 * The recursion level indications in error messages are much shorter than
726 they were in version 3.14.
728 Version 3.18
730 * Leading spaces before directives are ignored (as documented).
732 * Included makefiles can determine the default goal target.
733 (System V Make does it this way, so we are being compatible).
735 Version 3.14.
737 * Variables that are defaults built into Make will not be put in the
738 environment for children.  This just saves some environment space and,
739 except under -e, will be transparent to sub-makes.
741 * Error messages from sub-makes will indicate the level of recursion.
743 * Hopefully some speed-up for large directories due to a change in the
744 directory hashing scheme.
746 * One child will always get a standard input that is usable.
748 * Default makefiles that don't exist will be remade and read in.
750 Version 3.13.
752 * Count parentheses inside expansion function calls so you can
753 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
755 Version 3.12.
757 * Several bug fixes, including USG and Sun386i support.
759 * `shell' function to expand shell commands a la `
761 * If the `-d' flag is given, version information will be printed.
763 * The `-c' option has been renamed to `-C' for compatibility with tar.
765 * The `-p' option no longer inhibits other normal operation.
767 * Makefiles will be updated and re-read if necessary.
769 * Can now run several commands at once (parallelism), -j option.
771 * Error messages will contain the level of Make recursion, if any.
773 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
774 makefiles are read.
776 * A double-colon rule with no dependencies will always have its commands run.
777 (This is how both the BSD and System V versions of Make do it.)
779 Version 3.05
781 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
783 ----------------------------------------------------------------------
784 Copyright information:
786    Permission is granted to anyone to make or distribute verbatim copies
787    of this document as received, in any medium, provided that the
788    copyright notice and this permission notice are preserved, thus
789    giving the recipient permission to redistribute in turn.
791    Permission is granted to distribute modified versions of this
792    document, or of portions of it, under the above conditions, provided
793    also that they carry prominent notices stating who last changed them.