* Fix backslash-escape in targets.
[make/kirr.git] / NEWS
blob9fe1e020313d5e7a9113554012c7421bdb7f822f
1 GNU make NEWS                                               -*-indented-text-*-
2   History of user-visible changes.
3   25 Jan 2000
5 Copyright (C) 1992,93,94,95,96,97,98,99,2000 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
17 * GNU make optionally supports internationalization and locales via the
18   GNU gettext (or local gettext if suitable) package.  See the ABOUT-NLS
19   file for more information on configuring GNU make for NLS.
21 * Previously, GNU make quoted variables such as MAKEFLAGS and
22   MAKEOVERRIDES for proper parsing by the shell.  This allowed them to
23   be used within make build scripts.  However, using them there is not
24   proper behavior: they are meant to be passed to subshells via the
25   environment.  Unfortunately the values were not quoted properly to be
26   passed through the environment.  This meant that make didn't properly
27   pass some types of command line values to submakes.
29   With this version we change that behavior: now these variables are
30   quoted properly for passing through the environment, which is the
31   correct way to do it.  If you previously used these variables
32   explicitly within a make rule you may need to re-examine your use for
33   correctness given this change.
35 * A new psuedo-target .NOTPARALLEL is available.  If defined, the
36   current makefile is run serially regardless of the value of -j.
37   However, submakes are still eligible for parallel execution.
39 * The $(call ...) function doesn't expand its arguments automatically
40   anymore.  This allows you to put builtin functions like "if" and
41   "foreach", which also have special expansion rules, in a $(call ...)
42   function and have it work properly.  This was suggested by Damien
43   GIBOU <damien.gibou@st.com>.
45 * The --debug option has changed: it now allows optional flags
46   controlling the amount and type of debugging output.  By default only
47   a minimal amount information is generated, displaying the names of
48   "normal" targets (not makefiles) were deemed out of date and in need
49   of being rebuilt.
51   Note that the -d option behaves as before: it takes no arguments and
52   all debugging information is generated.
54 * The `-p' (print database) output now includes filename and linenumber
55   information for variable definitions, to help debugging.
57 * Hartmut Becker provided many updates for the VMS port of GNU make.
58   See the readme.vms file for more details.
60 Version 3.78
62 * Two new functions, $(error ...) and $(warning ...) are available.  The
63   former will cause make to fail and exit immediately upon expansion of
64   the function, with the text provided as the error message.  The latter
65   causes the text provided to be printed as a warning message, but make
66   proceeds normally.
68 * A new function $(call ...) is available.  This allows users to create
69   their own parameterized macros and invoke them later.  Original
70   implementation of this function was provided by Han-Wen Nienhuys
71   <hanwen@cs.uu.nl>.
73 * A new function $(if ...) is available.  It provides if-then-else
74   capabilities in a builtin function.  Original implementation of this
75   function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
77 * Make defines a new variable, .LIBPATTERNS.  This variable controls how
78   library dependency expansion (dependencies like ``-lfoo'') is performed.
80 * Make accepts CRLF sequences as well as traditional LF, for
81   compatibility with makefiles created on other operating systems.
83 * Make accepts a new option: -R, or --no-builtin-variables.  This option
84   disables the definition of the rule-specific builtin variables (CC,
85   LD, AR, etc.).  Specifying this option forces -r (--no-builtin-rules)
86   as well.
88 * A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
90   On systems that support POSIX pipe(2) semantics, GNU make can now pass
91   -jN options to submakes rather than forcing them all to use -j1.  The
92   top make and all its sub-make processes use a pipe to communicate with
93   each other to ensure that no more than N jobs are started across all
94   makes.  To get the old behavior of -j back, you can configure make
95   with the --disable-job-server option.
97 * The confusing term "dependency" has been replaced by the more accurate
98   and standard term "prerequisite", both in the manual and in all GNU make
99   output.
101 * GNU make supports the "big archive" library format introduced in AIX 4.3.
103 * GNU make supports large files on AIX, HP-UX, and IRIX.  These changes
104   were provided by Paul Eggert <eggert@twinsun.com>.  (Large file
105   support for Solaris and Linux was introduced in 3.77, but the
106   configuration had issues: these have also been resolved).
108 * The Windows 95/98/NT (W32) version of GNU make now has native support
109   for the Cygnus Cygwin release B20.1 shell (bash).
111 * The GNU make regression test suite, long available separately "under
112   the table", has been integrated into the release.  You can invoke it
113   by running "make check" in the distribution.  Note that it requires
114   Perl (either Perl 4 or Perl 5) to run.
116 Version 3.77
118 * Implement BSD make's "?=" variable assignment operator.  The variable
119   is assigned the specified value only if that variable is not already
120   defined.
122 * Make defines a new variable, "CURDIR", to contain the current working
123   directory (after the -C option, if any, has been processed).
124   Modifying this variable has no effect on the operation of make.
126 * Make defines a new default RCS rule, for new-style master file
127   storage: ``% :: RCS/%'' (note no ``,v'' suffix).
129   Make defines new default rules for DOS-style C++ file naming
130   conventions, with ``.cpp'' suffixes.  All the same rules as for
131   ``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
132   COMPILE.cpp macros (which default to the same value as LINK.cc and
133   COMPILE.cc).  Note CPPFLAGS is still C preprocessor flags!  You should
134   use CXXFLAGS to change C++ compiler flags.
136 * A new feature, "target-specific variable values", has been added.
137   This is a large change so please see the appropriate sections of the
138   manual for full details.  Briefly, syntax like this:
140     TARGET: VARIABLE = VALUE
142   defines VARIABLE as VALUE within the context of TARGET.  This is
143   similar to SunOS make's "TARGET := VARIABLE = VALUE" feature.  Note
144   that the assignment may be of any type, not just recursive, and that
145   the override keyword is available.
147   COMPATIBILITY: This new syntax means that if you have any rules where
148   the first or second dependency has an equal sign (=) in its name,
149   you'll have to escape them with a backslash: "foo : bar\=baz".
150   Further, if you have any dependencies which already contain "\=",
151   you'll have to escape both of them: "foo : bar\\\=baz".
153 * A new appendix listing the most common error and warning messages
154   generated by GNU make, with some explanation, has been added to the
155   GNU make User's Manual.
157 * Updates to the GNU make Customs library support (see README.customs).
159 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
160   and to the DOS port from Eli Zaretski (see README.DOS).
162 Version 3.76.1
164 * Small (but serious) bug fix.  Quick rollout to get into the GNU source CD.
166 Version 3.76
168 * GNU make now uses automake to control Makefile.in generation.  This
169   should make it more consistent with the GNU standards.
171 * VPATH functionality has been changed to incorporate the VPATH+ patch,
172   previously maintained by Paul Smith <psmith@baynetworks.com>.  See the
173   manual.
175 * Make defines a new variable, `MAKECMDGOALS', to contain the goals that
176   were specified on the command line, if any.  Modifying this variable
177   has no effect on the operation of make.
179 * A new function, `$(wordlist S,E,TEXT)', is available: it returns a
180   list of words from number S to number E (inclusive) of TEXT.
182 * Instead of an error, detection of future modification times gives a
183   warning and continues.  The warning is repeated just before GNU make
184   exits, so it is less likely to be lost.
186 * Fix the $(basename) and $(suffix) functions so they only operate on
187   the last filename, not the entire string:
189       Command              Old Result             New Result
190       -------              ----------             ----------
191     $(basename a.b)        a                      a
192     $(basename a.b/c)      a                      a.b/c
193     $(suffix a.b)          b                      b
194     $(suffix a.b/c)        b/c                    <empty>
196 * The $(strip) function now removes newlines as well as TABs and spaces.
198 * The $(shell) function now changes CRLF (\r\n) pairs to a space as well
199   as newlines (\n).
201 * Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
203 * Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
204   and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
205   and utilities.  See README.DOS for details, and direct all questions
206   concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
207   Delorie <dj@delorie.com>.
209 * John W. Eaton has updated the VMS port to support libraries and VPATH.
211 Version 3.75
213 * The directory messages printed by `-w' and implicitly in sub-makes,
214   are now omitted if Make runs no commands and has no other messages to print.
216 * Make now detects files that for whatever reason have modification times
217   in the future and gives an error.  Files with such impossible timestamps
218   can result from unsynchronized clocks, or archived distributions
219   containing bogus timestamps; they confuse Make's dependency engine
220   thoroughly.
222 * The new directive `sinclude' is now recognized as another name for
223   `-include', for compatibility with some other Makes.
225 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
226   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
228 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
229   See README.W32 for details, and direct all Windows-related questions to
230   <rob_tulloh@tivoli.com>.
232 Version 3.73
234 * Converted to use Autoconf version 2, so `configure' has some new options.
235   See INSTALL for details.
237 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
238   output enabled by -d, at any time during the run.
240 Version 3.72
242 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
243   He is maintaining the DOS port, not the GNU Make maintainer;
244   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
245   MS-DOS binaries are available for FTP from ftp.simtel.net in
246   /pub/simtelnet/gnu/djgpp/.
248 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
249   contain variable definitions itself; these are treated just like
250   command-line variable definitions.  Make will automatically insert any
251   variable definitions from the environment value of `MAKEFLAGS' or from
252   the command line, into the `MAKEFLAGS' value exported to children.  The
253   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
254   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
255   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
256   in the environment when its size is limited.
258 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
259   a rule if it has changed when its commands exit with a nonzero status,
260   just as when the commands get a signal.
262 * The automatic variable `$+' is new.  It lists all the dependencies like
263   `$^', but preserves duplicates listed in the makefile.  This is useful
264   for linking rules, where library files sometimes need to be listed twice
265   in the link order.
267 * You can now specify the `.IGNORE' and `.SILENT' special targets with
268   dependencies to limit their effects to those files.  If a file appears as
269   a dependency of `.IGNORE', then errors will be ignored while running the
270   commands to update that file.  Likewise if a file appears as a dependency
271   of `.SILENT', then the commands to update that file will not be printed
272   before they are run.  (This change was made to conform to POSIX.2.)
274 Version 3.71
276 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
277   `$(^D)' now omit the trailing slash from the directory name.  (This change
278   was made to comply with POSIX.2.)
280 * The source distribution now includes the Info files for the Make manual.
281   There is no longer a separate distribution containing Info and DVI files.
283 * You can now set the variables `binprefix' and/or `manprefix' in
284   Makefile.in (or on the command line when installing) to install GNU make
285   under a name other than `make' (i.e., ``make binprefix=g install''
286   installs GNU make as `gmake').
288 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
289   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
290   Makeinfo program.
292 * The exit status of Make when it runs into errors is now 2 instead of 1.
293   The exit status is 1 only when using -q and some target is not up to date.
294   (This change was made to comply with POSIX.2.)
296 Version 3.70
298 * It is no longer a fatal error to have a NUL character in a makefile.
299   You should never put a NUL in a makefile because it can have strange
300   results, but otherwise empty lines full of NULs (such as produced by
301   the `xmkmf' program) will always work fine.
303 * The error messages for nonexistent included makefiles now refer to the
304   makefile name and line number where the `include' appeared, so Emacs's
305   C-x ` command takes you there (in case it's a typo you need to fix).
307 Version 3.69
309 * Implicit rule search for archive member references is now done in the
310   opposite order from previous versions: the whole target name `LIB(MEM)'
311   first, and just the member name and parentheses `(MEM)' second.
313 * Make now gives an error for an unterminated variable or function reference.
314   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
316 * The new default variable `MAKE_VERSION' gives the version number of
317   Make, and a string describing the remote job support compiled in (if any).
318   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
320 * Commands in an invocation of the `shell' function are no longer run with
321   a modified environment like target commands are.  As in versions before
322   3.68, they now run with the environment that `make' started with.  We
323   have reversed the change made in version 3.68 because it turned out to
324   cause a paradoxical situation in cases like:
326         export variable = $(shell echo value)
328   When Make attempted to put this variable in the environment for a target
329   command, it would try expand the value by running the shell command
330   `echo value'.  In version 3.68, because it constructed an environment
331   for that shell command in the same way, Make would begin to go into an
332   infinite loop and then get a fatal error when it detected the loop.
334 * The commands given for `.DEFAULT' are now used for phony targets with no
335   commands.
337 Version 3.68
339 * You can list several archive member names inside parenthesis:
340   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
342 * You can use wildcards inside archive member references.  For example,
343   `lib(*.o)' expands to all existing members of `lib' whose names end in
344   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
345   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
346   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
348 * A suffix rule `.X.a' now produces two pattern rules:
349         (%.o): %.X      # Previous versions produced only this.
350         %.a: %.X        # Now produces this as well, just like other suffixes.
352 * The new flag `--warn-undefined-variables' says to issue a warning message
353   whenever Make expands a reference to an undefined variable.
355 * The new `-include' directive is just like `include' except that there is
356   no error (not even a warning) for a nonexistent makefile.
358 * Commands in an invocation of the `shell' function are now run with a
359   modified environment like target commands are, so you can use `export' et
360   al to set up variables for them.  They used to run with the environment
361   that `make' started with.
363 Version 3.66
365 * `make --version' (or `make -v') now exits immediately after printing
366   the version number.
368 Version 3.65
370 * Make now supports long-named members in `ar' archive files.
372 Version 3.64
374 * Make now supports the `+=' syntax for a variable definition which appends
375   to the variable's previous value.  See the section `Appending More Text
376   to Variables' in the manual for full details.
378 * The new option `--no-print-directory' inhibits the `-w' or
379   `--print-directory' feature.  Make turns on `--print-directory'
380   automatically if you use `-C' or `--directory', and in sub-makes; some
381   users have found this behavior undesirable.
383 * The built-in implicit rules now support the alternative extension
384   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
386 Version 3.63
388 * Make now uses a standard GNU `configure' script.  See the new file
389   INSTALL for the new (and much simpler) installation procedure.
391 * There is now a shell script to build Make the first time, if you have no
392   other `make' program.  `build.sh' is created by `configure'; see README.
394 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
396 * Elements of the `$^' and `$?' automatic variables that are archive
397   member references now list only the member name, as in Unix and POSIX.2.
399 * You should no longer ever need to specify the `-w' switch, which prints
400   the current directory before and after Make runs.  The `-C' switch to
401   change directory, and recursive use of Make, now set `-w' automatically.
403 * Multiple double-colon rules for the same target will no longer have their
404   commands run simultaneously under -j, as this could result in the two
405   commands trying to change the file at the same time and interfering with
406   one another.
408 * The `SHELL' variable is now never taken from the environment.
409   Each makefile that wants a shell other than the default (/bin/sh) must
410   set SHELL itself.  SHELL is always exported to child processes.
411   This change was made for compatibility with POSIX.2.
413 * Make now accepts long options.  There is now an informative usage message
414   that tells you what all the options are and what they do.  Try `make --help'.
416 * There are two new directives: `export' and `unexport'.  All variables are
417   no longer automatically put into the environments of the commands that
418   Make runs.  Instead, only variables specified on the command line or in
419   the environment are exported by default.  To export others, use:
420         export VARIABLE
421   or you can define variables with:
422         export VARIABLE = VALUE
423   or:
424         export VARIABLE := VALUE
425   You can use just:
426         export
427   or:
428         .EXPORT_ALL_VARIABLES:
429   to get the old behavior.  See the node `Variables/Recursion' in the manual
430   for a full description.
432 * The commands from the `.DEFAULT' special target are only applied to
433   targets which have no rules at all, not all targets with no commands.
434   This change was made for compatibility with Unix make.
436 * All fatal error messages now contain `***', so they are easy to find in
437   compilation logs.
439 * Dependency file names like `-lNAME' are now replaced with the actual file
440   name found, as with files found by normal directory search (VPATH).
441   The library file `libNAME.a' may now be found in the current directory,
442   which is checked before VPATH; the standard set of directories (/lib,
443   /usr/lib, /usr/local/lib) is now checked last.
444   See the node `Libraries/Search' in the manual for full details.
446 * A single `include' directive can now specify more than one makefile to
447   include, like this:
448         include file1 file2
449   You can also use shell file name patterns in an `include' directive:
450         include *.mk
452 * The default directories to search for included makefiles, and for
453   libraries specified with `-lNAME', are now set by configuration.
455 * You can now use blanks as well as colons to separate the directories in a
456   search path for the `vpath' directive or the `VPATH' variable.
458 * You can now use variables and functions in the left hand side of a
459   variable assignment, as in "$(foo)bar = value".
461 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
462   The `MAKE_COMMAND' variable is now defined to the name with which make
463   was invoked.
465 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
466   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
467   problems with shells that cannot have `+' in environment variable names.
469 * The value of a recursively expanded variable is now expanded when putting
470   it into the environment for child processes.  This change was made for
471   compatibility with Unix make.
473 * A rule with no targets before the `:' is now accepted and ignored.
474   This change was made for compatibility with SunOS 4 make.
475   We do not recommend that you write your makefiles to take advantage of this.
477 * The `-I' switch can now be used in MAKEFLAGS, and are put there
478   automatically just like other switches.
480 Version 3.61
482 * Built-in rules for C++ source files with the `.C' suffix.
483   We still recommend that you use `.cc' instead.
485 * If commands are given too many times for a single target,
486   the last set given is used, and a warning message is printed.
488 * Error messages about makefiles are in standard GNU error format,
489   so C-x ` in Emacs works on them.
491 * Dependencies of pattern rules which contain no % need not actually exist
492   if they can be created (just like dependencies which do have a %).
494 Version 3.60
496 * A message is always printed when Make decides there is nothing to be done.
497   It used to be that no message was printed for top-level phony targets
498   (because "`phony' is up to date" isn't quite right).  Now a different
499   message "Nothing to be done for `phony'" is printed in that case.
501 * Archives on AIX now supposedly work.
503 * When the commands specified for .DEFAULT are used to update a target,
504   the $< automatic variable is given the same value as $@ for that target.
505   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
507 Version 3.59
509 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
510   variables while remaking makefiles, so recursive makes done while remaking
511   makefiles will behave properly.
513 * If the special target `.NOEXPORT' is specified in a makefile,
514   only variables that came from the environment and variables
515   defined on the command line are exported.
517 Version 3.58
519 * Suffix rules may have dependencies (which are ignored).
521 Version 3.57
523 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
524   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
526 Version 3.55
528 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
529 for the Texinfo manual, but it documents the basic functionality and the
530 switches.  For full documentation, you should still read the Texinfo manual.
531 Thanks to Dennis Morse of Stanford University for contributing the initial
532 version of this.
534 * Variables which are defined by default (e.g., `CC') will no longer be put
535 into the environment for child processes.  (If these variables are reset by the
536 environment, makefiles, or the command line, they will still go into the
537 environment.)
539 * Makefiles which have commands but no dependencies (and thus are always
540   considered out of date and in need of remaking), will not be remade (if they
541   were being remade only because they were makefiles).  This means that GNU
542   Make will no longer go into an infinite loop when fed the makefiles that
543   `imake' (necessary to build X Windows) produces.
545 * There is no longer a warning for using the `vpath' directive with an explicit
546 pathname (instead of a `%' pattern).
548 Version 3.51
550 * When removing intermediate files, only one `rm' command line is printed,
551 listing all file names.
553 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
554 These are the directory-only and file-only versions of `$^' and `$?'.
556 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
557 directory if it exists.
559 * The automatic variable `$($/)' is no longer defined.
561 * Leading `+' characters on a command line make that line be executed even
562 under -n, -t, or -q (as if the line contained `$(MAKE)').
564 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
565 only those lines are executed, not their entire rules.
566 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
568 Version 3.50
570 * Filenames in rules will now have ~ and ~USER expanded.
572 * The `-p' output has been changed so it can be used as a makefile.
573 (All information that isn't specified by makefiles is prefaced with comment
574 characters.)
576 Version 3.49
578 * The % character can be quoted with backslash in implicit pattern rules,
579 static pattern rules, `vpath' directives, and `patsubst', `filter', and
580 `filter-out' functions.  A warning is issued if a `vpath' directive's
581 pattern contains no %.
583 * The `wildcard' variable expansion function now expands ~ and ~USER.
585 * Messages indicating failed commands now contain the target name:
586         make: *** [target] Error 1
588 * The `-p' output format has been changed somewhat to look more like
589 makefile rules and to give all information that Make has about files.
591 Version 3.48
593 Version 3.47
595 * The `-l' switch with no argument removes any previous load-average limit.
597 * When the `-w' switch is in effect, and Make has updated makefiles,
598 it will write a `Leaving directory' messagfe before re-executing itself.
599 This makes the `directory change tracking' changes to Emacs's compilation
600 commands work properly.
602 Version 3.46
604 * The automatic variable `$*' is now defined for explicit rules,
605 as it is in Unix make.
607 Version 3.45
609 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
610 specified without an argument (indicating infinite jobs).
611 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
613 * Make no longer checks hashed directories after running commands.
614 The behavior implemented in 3.41 caused too much slowdown.
616 Version 3.44
618 * A dependency is NOT considered newer than its dependent if
619 they have the same modification time.  The behavior implemented
620 in 3.43 conflicts with RCS.
622 Version 3.43
624 * Dependency loops are no longer fatal errors.
626 * A dependency is considered newer than its dependent if
627 they have the same modification time.
629 Version 3.42
631 * The variables F77 and F77FLAGS are now set by default to $(FC) and
632 $(FFLAGS).  Makefiles designed for System V make may use these variables in
633 explicit rules and expect them to be set.  Unfortunately, there is no way to
634 make setting these affect the Fortran implicit rules unless FC and FFLAGS
635 are not used (and these are used by BSD make).
637 Version 3.41
639 * Make now checks to see if its hashed directories are changed by commands.
640 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
642 Version 3.39
644 * The `shell' function no longer captures standard error output.
646 Version 3.32
648 * A file beginning with a dot can be the default target if it also contains
649 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
651 Version 3.31
653 * Archive member names are truncated to 15 characters.
655 * Yet more USG stuff.
657 * Minimal support for Microport System V (a 16-bit machine and a
658 brain-damaged compiler).  This has even lower priority than other USG
659 support, so if it gets beyond trivial, I will take it out completely.
661 * Revamped default implicit rules (not much visible change).
663 * The -d and -p options can come from the environment.
665 Version 3.30
667 * Improved support for USG and HPUX (hopefully).
669 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
670 equivalent to `$(patsubst a,b,$(foo))'.
672 * Defining .DEFAULT with no deps or commands clears its commands.
674 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
675 executable).  All default implicit rules that use cpp (even indirectly), use
676 $(CPPFLAGS).
678 Version 3.29
680 * Giving the -j option with no arguments gives you infinite jobs.
682 Version 3.28
684 * New option: "-l LOAD" says not to start any new jobs while others are
685 running if the load average is not below LOAD (a floating-point number).
687 * There is support in place for implementations of remote command execution
688 in Make.  See the file remote.c.
690 Version 3.26
692 * No more than 10 directories will be kept open at once.
693 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
695 Version 3.25
697 * Archive files will have their modification times recorded before doing
698 anything that might change their modification times by updating an archive
699 member.
701 Version 3.20
703 * The `MAKELEVEL' variable is defined for use by makefiles.
705 Version 3.19
707 * The recursion level indications in error messages are much shorter than
708 they were in version 3.14.
710 Version 3.18
712 * Leading spaces before directives are ignored (as documented).
714 * Included makefiles can determine the default goal target.
715 (System V Make does it this way, so we are being compatible).
717 Version 3.14.
719 * Variables that are defaults built into Make will not be put in the
720 environment for children.  This just saves some environment space and,
721 except under -e, will be transparent to sub-makes.
723 * Error messages from sub-makes will indicate the level of recursion.
725 * Hopefully some speed-up for large directories due to a change in the
726 directory hashing scheme.
728 * One child will always get a standard input that is usable.
730 * Default makefiles that don't exist will be remade and read in.
732 Version 3.13.
734 * Count parentheses inside expansion function calls so you can
735 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
737 Version 3.12.
739 * Several bug fixes, including USG and Sun386i support.
741 * `shell' function to expand shell commands a la `
743 * If the `-d' flag is given, version information will be printed.
745 * The `-c' option has been renamed to `-C' for compatibility with tar.
747 * The `-p' option no longer inhibits other normal operation.
749 * Makefiles will be updated and re-read if necessary.
751 * Can now run several commands at once (parallelism), -j option.
753 * Error messages will contain the level of Make recursion, if any.
755 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
756 makefiles are read.
758 * A double-colon rule with no dependencies will always have its commands run.
759 (This is how both the BSD and System V versions of Make do it.)
761 Version 3.05
763 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
765 ----------------------------------------------------------------------
766 Copyright information:
768    Permission is granted to anyone to make or distribute verbatim copies
769    of this document as received, in any medium, provided that the
770    copyright notice and this permission notice are preserved, thus
771    giving the recipient permission to redistribute in turn.
773    Permission is granted to distribute modified versions of this
774    document, or of portions of it, under the above conditions, provided
775    also that they carry prominent notices stating who last changed them.