.
[make.git] / NEWS
blob8f7603df324aca89bd120da96a23502fa7b4822e
1 GNU make NEWS -- history of user-visible changes.  9 May 1996
3 Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
4 See the end for copying conditions.
6 Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu.
7 \f
8 Version 3.75
10 * The directory messages printed by `-w' and implicitly in sub-makes,
11   are now omitted if Make runs no commands and has no other messages to print.
13 * Make now detects files that for whatever reason have modification times
14   in the future and gives an error.  Files with such impossible timestamps
15   can result from unsynchronized clocks, or archived distributions
16   containing bogus timestamps; they confuse Make's dependency engine
17   thoroughly.
19 * The new directive `sinclude' is now recognized as another name for
20   `-include', for compatibility with some other Makes.
22 * Aaron Digulla has contributed a port to AmigaDOS.  See README.Amiga for
23   details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
25 * Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
26   See README.WIN32 for details, and direct all Windows-related questions to
27   <rob_tulloh@tivoli.com>.
29 Version 3.73
31 * Converted to use Autoconf version 2, so `configure' has some new options.
32   See INSTALL for details.
34 * You can now send a SIGUSR1 signal to Make to toggle printing of debugging
35   output enabled by -d, at any time during the run.
37 Version 3.72
39 * DJ Delorie has ported Make to MS-DOS using the GO32 extender.
40   He is maintaining the DOS port, not the GNU Make maintainer;
41   please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
42   MS-DOS binaries are available for FTP from ftp.simtel.net in
43   /pub/simtelnet/gnu/djgpp/.
45 * The `MAKEFLAGS' variable (in the environment or in a makefile) can now
46   contain variable definitions itself; these are treated just like
47   command-line variable definitions.  Make will automatically insert any
48   variable definitions from the environment value of `MAKEFLAGS' or from
49   the command line, into the `MAKEFLAGS' value exported to children.  The
50   `MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
51   for sub-makes is now included in `MAKEFLAGS' instead.  As before, you can
52   reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
53   in the environment when its size is limited.
55 * If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
56   a rule if it has changed when its commands exit with a nonzero status,
57   just as when the commands get a signal.
59 * The automatic variable `$+' is new.  It lists all the dependencies like
60   `$^', but preserves duplicates listed in the makefile.  This is useful
61   for linking rules, where library files sometimes need to be listed twice
62   in the link order.
64 * You can now specify the `.IGNORE' and `.SILENT' special targets with
65   dependencies to limit their effects to those files.  If a file appears as
66   a dependency of `.IGNORE', then errors will be ignored while running the
67   commands to update that file.  Likewise if a file appears as a dependency
68   of `.SILENT', then the commands to update that file will not be printed
69   before they are run.  (This change was made to conform to POSIX.2.)
71 Version 3.71
73 * The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
74   `$(^D)' now omit the trailing slash from the directory name.  (This change
75   was made to comply with POSIX.2.)
77 * The source distribution now includes the Info files for the Make manual.
78   There is no longer a separate distribution containing Info and DVI files.
80 * You can now set the variables `binprefix' and/or `manprefix' in
81   Makefile.in (or on the command line when installing) to install GNU make
82   under a name other than `make' (i.e., ``make binprefix=g install''
83   installs GNU make as `gmake').
85 * The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
86   flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
87   Makeinfo program.
89 * The exit status of Make when it runs into errors is now 2 instead of 1.
90   The exit status is 1 only when using -q and some target is not up to date.
91   (This change was made to comply with POSIX.2.)
93 Version 3.70
95 * It is no longer a fatal error to have a NUL character in a makefile.
96   You should never put a NUL in a makefile because it can have strange
97   results, but otherwise empty lines full of NULs (such as produced by
98   the `xmkmf' program) will always work fine.
100 * The error messages for nonexistent included makefiles now refer to the
101   makefile name and line number where the `include' appeared, so Emacs's
102   C-x ` command takes you there (in case it's a typo you need to fix).
104 Version 3.69
106 * Implicit rule search for archive member references is now done in the
107   opposite order from previous versions: the whole target name `LIB(MEM)'
108   first, and just the member name and parentheses `(MEM)' second.
110 * Make now gives an error for an unterminated variable or function reference.
111   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
113 * The new default variable `MAKE_VERSION' gives the version number of
114   Make, and a string describing the remote job support compiled in (if any).
115   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
117 * Commands in an invocation of the `shell' function are no longer run with
118   a modified environment like target commands are.  As in versions before
119   3.68, they now run with the environment that `make' started with.  We
120   have reversed the change made in version 3.68 because it turned out to
121   cause a paradoxical situation in cases like:
123         export variable = $(shell echo value)
125   When Make attempted to put this variable in the environment for a target
126   command, it would try expand the value by running the shell command
127   `echo value'.  In version 3.68, because it constructed an environment
128   for that shell command in the same way, Make would begin to go into an
129   infinite loop and then get a fatal error when it detected the loop.
131 * The commands given for `.DEFAULT' are now used for phony targets with no
132   commands.
134 Version 3.68
136 * You can list several archive member names inside parenthesis:
137   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
139 * You can use wildcards inside archive member references.  For example,
140   `lib(*.o)' expands to all existing members of `lib' whose names end in
141   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
142   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
143   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
145 * A suffix rule `.X.a' now produces two pattern rules:
146         (%.o): %.X      # Previous versions produced only this.
147         %.a: %.X        # Now produces this as well, just like other suffixes.
149 * The new flag `--warn-undefined-variables' says to issue a warning message
150   whenever Make expands a reference to an undefined variable.
152 * The new `-include' directive is just like `include' except that there is
153   no error (not even a warning) for a nonexistent makefile.
155 * Commands in an invocation of the `shell' function are now run with a
156   modified environment like target commands are, so you can use `export' et
157   al to set up variables for them.  They used to run with the environment
158   that `make' started with.
160 Version 3.66
162 * `make --version' (or `make -v') now exits immediately after printing
163   the version number.
165 Version 3.65
167 * Make now supports long-named members in `ar' archive files.
169 Version 3.64
171 * Make now supports the `+=' syntax for a variable definition which appends
172   to the variable's previous value.  See the section `Appending More Text
173   to Variables' in the manual for full details.
175 * The new option `--no-print-directory' inhibits the `-w' or
176   `--print-directory' feature.  Make turns on `--print-directory'
177   automatically if you use `-C' or `--directory', and in sub-makes; some
178   users have found this behavior undesirable.
180 * The built-in implicit rules now support the alternative extension
181   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
183 Version 3.63
185 * Make now uses a standard GNU `configure' script.  See the new file
186   INSTALL for the new (and much simpler) installation procedure.
188 * There is now a shell script to build Make the first time, if you have no
189   other `make' program.  `build.sh' is created by `configure'; see README.
191 * GNU Make now completely conforms to the POSIX.2 specification for `make'.
193 * Elements of the `$^' and `$?' automatic variables that are archive
194   member references now list only the member name, as in Unix and POSIX.2.
196 * You should no longer ever need to specify the `-w' switch, which prints
197   the current directory before and after Make runs.  The `-C' switch to
198   change directory, and recursive use of Make, now set `-w' automatically.
200 * Multiple double-colon rules for the same target will no longer have their
201   commands run simultaneously under -j, as this could result in the two
202   commands trying to change the file at the same time and interfering with
203   one another.
205 * The `SHELL' variable is now never taken from the environment.
206   Each makefile that wants a shell other than the default (/bin/sh) must
207   set SHELL itself.  SHELL is always exported to child processes.
208   This change was made for compatibility with POSIX.2.
210 * Make now accepts long options.  There is now an informative usage message
211   that tells you what all the options are and what they do.  Try `make --help'.
213 * There are two new directives: `export' and `unexport'.  All variables are
214   no longer automatically put into the environments of the commands that
215   Make runs.  Instead, only variables specified on the command line or in
216   the environment are exported by default.  To export others, use:
217         export VARIABLE
218   or you can define variables with:
219         export VARIABLE = VALUE
220   or:
221         export VARIABLE := VALUE
222   You can use just:
223         export
224   or:
225         .EXPORT_ALL_VARIABLES:
226   to get the old behavior.  See the node `Variables/Recursion' in the manual
227   for a full description.
229 * The commands from the `.DEFAULT' special target are only applied to
230   targets which have no rules at all, not all targets with no commands.
231   This change was made for compatibility with Unix make.
233 * All fatal error messages now contain `***', so they are easy to find in
234   compilation logs.
236 * Dependency file names like `-lNAME' are now replaced with the actual file
237   name found, as with files found by normal directory search (VPATH).
238   The library file `libNAME.a' may now be found in the current directory,
239   which is checked before VPATH; the standard set of directories (/lib,
240   /usr/lib, /usr/local/lib) is now checked last.
241   See the node `Libraries/Search' in the manual for full details.
243 * A single `include' directive can now specify more than one makefile to
244   include, like this:
245         include file1 file2
246   You can also use shell file name patterns in an `include' directive:
247         include *.mk
249 * The default directories to search for included makefiles, and for
250   libraries specified with `-lNAME', are now set by configuration.
252 * You can now use blanks as well as colons to separate the directories in a
253   search path for the `vpath' directive or the `VPATH' variable.
255 * You can now use variables and functions in the left hand side of a
256   variable assignment, as in "$(foo)bar = value".
258 * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
259   The `MAKE_COMMAND' variable is now defined to the name with which make
260   was invoked.
262 * The built-in rules for C++ compilation now use the variables `$(CXX)' and
263   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
264   problems with shells that cannot have `+' in environment variable names.
266 * The value of a recursively expanded variable is now expanded when putting
267   it into the environment for child processes.  This change was made for
268   compatibility with Unix make.
270 * A rule with no targets before the `:' is now accepted and ignored.
271   This change was made for compatibility with SunOS 4 make.
272   We do not recommend that you write your makefiles to take advantage of this.
274 * The `-I' switch can now be used in MAKEFLAGS, and are put there
275   automatically just like other switches.
277 Version 3.61
279 * Built-in rules for C++ source files with the `.C' suffix.
280   We still recommend that you use `.cc' instead.
282 * If commands are given too many times for a single target,
283   the last set given is used, and a warning message is printed.
285 * Error messages about makefiles are in standard GNU error format,
286   so C-x ` in Emacs works on them.
288 * Dependencies of pattern rules which contain no % need not actually exist
289   if they can be created (just like dependencies which do have a %).
291 Version 3.60
293 * A message is always printed when Make decides there is nothing to be done.
294   It used to be that no message was printed for top-level phony targets
295   (because "`phony' is up to date" isn't quite right).  Now a different
296   message "Nothing to be done for `phony'" is printed in that case.
298 * Archives on AIX now supposedly work.
300 * When the commands specified for .DEFAULT are used to update a target,
301   the $< automatic variable is given the same value as $@ for that target.
302   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
304 Version 3.59
306 * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
307   variables while remaking makefiles, so recursive makes done while remaking
308   makefiles will behave properly.
310 * If the special target `.NOEXPORT' is specified in a makefile,
311   only variables that came from the environment and variables
312   defined on the command line are exported.
314 Version 3.58
316 * Suffix rules may have dependencies (which are ignored).
318 Version 3.57
320 * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
321   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
323 Version 3.55
325 * There is now a Unix man page for GNU Make.  It is certainly not a replacement
326 for the Texinfo manual, but it documents the basic functionality and the
327 switches.  For full documentation, you should still read the Texinfo manual.
328 Thanks to Dennis Morse of Stanford University for contributing the initial
329 version of this.
331 * Variables which are defined by default (e.g., `CC') will no longer be put
332 into the environment for child processes.  (If these variables are reset by the
333 environment, makefiles, or the command line, they will still go into the
334 environment.)
336 * Makefiles which have commands but no dependencies (and thus are always
337   considered out of date and in need of remaking), will not be remade (if they
338   were being remade only because they were makefiles).  This means that GNU
339   Make will no longer go into an infinite loop when fed the makefiles that
340   `imake' (necessary to build X Windows) produces.
342 * There is no longer a warning for using the `vpath' directive with an explicit
343 pathname (instead of a `%' pattern).
345 Version 3.51
347 * When removing intermediate files, only one `rm' command line is printed,
348 listing all file names.
350 * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
351 These are the directory-only and file-only versions of `$^' and `$?'.
353 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
354 directory if it exists.
356 * The automatic variable `$($/)' is no longer defined.
358 * Leading `+' characters on a command line make that line be executed even
359 under -n, -t, or -q (as if the line contained `$(MAKE)').
361 * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
362 only those lines are executed, not their entire rules.
363 (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
365 Version 3.50
367 * Filenames in rules will now have ~ and ~USER expanded.
369 * The `-p' output has been changed so it can be used as a makefile.
370 (All information that isn't specified by makefiles is prefaced with comment
371 characters.)
373 Version 3.49
375 * The % character can be quoted with backslash in implicit pattern rules,
376 static pattern rules, `vpath' directives, and `patsubst', `filter', and
377 `filter-out' functions.  A warning is issued if a `vpath' directive's
378 pattern contains no %.
380 * The `wildcard' variable expansion function now expands ~ and ~USER.
382 * Messages indicating failed commands now contain the target name:
383         make: *** [target] Error 1
385 * The `-p' output format has been changed somewhat to look more like
386 makefile rules and to give all information that Make has about files.
388 Version 3.48
390 Version 3.47
392 * The `-l' switch with no argument removes any previous load-average limit.
394 * When the `-w' switch is in effect, and Make has updated makefiles,
395 it will write a `Leaving directory' messagfe before re-executing itself.
396 This makes the `directory change tracking' changes to Emacs's compilation
397 commands work properly.
399 Version 3.46
401 * The automatic variable `$*' is now defined for explicit rules,
402 as it is in Unix make.
404 Version 3.45
406 * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
407 specified without an argument (indicating infinite jobs).
408 The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
410 * Make no longer checks hashed directories after running commands.
411 The behavior implemented in 3.41 caused too much slowdown.
413 Version 3.44
415 * A dependency is NOT considered newer than its dependent if
416 they have the same modification time.  The behavior implemented
417 in 3.43 conflicts with RCS.
419 Version 3.43
421 * Dependency loops are no longer fatal errors.
423 * A dependency is considered newer than its dependent if
424 they have the same modification time.
426 Version 3.42
428 * The variables F77 and F77FLAGS are now set by default to $(FC) and
429 $(FFLAGS).  Makefiles designed for System V make may use these variables in
430 explicit rules and expect them to be set.  Unfortunately, there is no way to
431 make setting these affect the Fortran implicit rules unless FC and FFLAGS
432 are not used (and these are used by BSD make).
434 Version 3.41
436 * Make now checks to see if its hashed directories are changed by commands.
437 Other makes that hash directories (Sun, 4.3 BSD) don't do this.
439 Version 3.39
441 * The `shell' function no longer captures standard error output.
443 Version 3.32
445 * A file beginning with a dot can be the default target if it also contains
446 a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
448 Version 3.31
450 * Archive member names are truncated to 15 characters.
452 * Yet more USG stuff.
454 * Minimal support for Microport System V (a 16-bit machine and a
455 brain-damaged compiler).  This has even lower priority than other USG
456 support, so if it gets beyond trivial, I will take it out completely.
458 * Revamped default implicit rules (not much visible change).
460 * The -d and -p options can come from the environment.
462 Version 3.30
464 * Improved support for USG and HPUX (hopefully).
466 * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
467 equivalent to `$(patsubst a,b,$(foo))'.
469 * Defining .DEFAULT with no deps or commands clears its commands.
471 * New default implicit rules for .S (cpp, then as), and .sh (copy and make
472 executable).  All default implicit rules that use cpp (even indirectly), use
473 $(CPPFLAGS).
475 Version 3.29
477 * Giving the -j option with no arguments gives you infinite jobs.
479 Version 3.28
481 * New option: "-l LOAD" says not to start any new jobs while others are
482 running if the load average is not below LOAD (a floating-point number).
484 * There is support in place for implementations of remote command execution
485 in Make.  See the file remote.c.
487 Version 3.26
489 * No more than 10 directories will be kept open at once.
490 (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
492 Version 3.25
494 * Archive files will have their modification times recorded before doing
495 anything that might change their modification times by updating an archive
496 member.
498 Version 3.20
500 * The `MAKELEVEL' variable is defined for use by makefiles.
502 Version 3.19
504 * The recursion level indications in error messages are much shorter than
505 they were in version 3.14.
507 Version 3.18
509 * Leading spaces before directives are ignored (as documented).
511 * Included makefiles can determine the default goal target.
512 (System V Make does it this way, so we are being compatible).
514 Version 3.14.
516 * Variables that are defaults built into Make will not be put in the
517 environment for children.  This just saves some environment space and,
518 except under -e, will be transparent to sub-makes.
520 * Error messages from sub-makes will indicate the level of recursion.
522 * Hopefully some speed-up for large directories due to a change in the
523 directory hashing scheme.
525 * One child will always get a standard input that is usable.
527 * Default makefiles that don't exist will be remade and read in.
529 Version 3.13.
531 * Count parentheses inside expansion function calls so you can
532 have nested calls: `$(sort $(foreach x,a b,$(x)))'.
534 Version 3.12.
536 * Several bug fixes, including USG and Sun386i support.
538 * `shell' function to expand shell commands a la `
540 * If the `-d' flag is given, version information will be printed.
542 * The `-c' option has been renamed to `-C' for compatibility with tar.
544 * The `-p' option no longer inhibits other normal operation.
546 * Makefiles will be updated and re-read if necessary.
548 * Can now run several commands at once (parallelism), -j option.
550 * Error messages will contain the level of Make recursion, if any.
552 * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
553 makefiles are read.
555 * A double-colon rule with no dependencies will always have its commands run.
556 (This is how both the BSD and System V versions of Make do it.)
558 Version 3.05
560 (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
562 ----------------------------------------------------------------------
563 Copyright information:
565 Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
567    Permission is granted to anyone to make or distribute verbatim copies
568    of this document as received, in any medium, provided that the
569    copyright notice and this permission notice are preserved,
570    thus giving the recipient permission to redistribute in turn.
572    Permission is granted to distribute modified versions
573    of this document, or of portions of it,
574    under the above conditions, provided also that they
575    carry prominent notices stating who last changed them.
577 Local variables:
578 version-control: never
579 end: