home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / make-3.70-src.lha / src / amiga / make-3.70 / NEWS < prev    next >
Encoding:
Text File  |  1993-12-15  |  18.1 KB  |  495 lines

  1. GNU make NEWS -- history of user-visible changes.  14 December 1993
  2.  
  3. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  4. See the end for copying conditions.
  5.  
  6. Please send GNU make bug reports to bug-gnu-utils@prep.ai.mit.edu.
  7.  
  8. Version 3.70
  9.  
  10. * It is no longer a fatal error to have a NUL character in a makefile.
  11.   You should never put a NUL in a makefile because it can have strange
  12.   results, but otherwise empty lines full of NULs (such as produced by
  13.   the `xmkmf' program) will always work fine.
  14.  
  15. * The error messages for nonexistent included makefiles now refer to the
  16.   makefile name and line number where the `include' appeared, so Emacs's
  17.   C-x ` command takes you there (in case it's a typo you need to fix).
  18.  
  19. Version 3.69
  20.  
  21. * Implicit rule search for archive member references is now done in the
  22.   opposite order from previous versions: the whole target name `LIB(MEM)'
  23.   first, and just the member name and parentheses `(MEM)' second.
  24.  
  25. * Make now gives an error for an unterminated variable or function reference.
  26.   For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
  27.  
  28. * The new default variable `MAKE_VERSION' gives the version number of
  29.   Make, and a string describing the remote job support compiled in (if any).
  30.   Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
  31.  
  32. * Commands in an invocation of the `shell' function are no longer run with
  33.   a modified environment like target commands are.  As in versions before
  34.   3.68, they now run with the environment that `make' started with.  We
  35.   have reversed the change made in version 3.68 because it turned out to
  36.   cause a paradoxical situation in cases like:
  37.  
  38.     export variable = $(shell echo value)
  39.  
  40.   When Make attempted to put this variable in the environment for a target
  41.   command, it would try expand the value by running the shell command
  42.   `echo value'.  In version 3.68, because it constructed an environment
  43.   for that shell command in the same way, Make would begin to go into an
  44.   infinite loop and then get a fatal error when it detected the loop.
  45.  
  46. * The commands given for `.DEFAULT' are now used for phony targets with no
  47.   commands.
  48.  
  49. Version 3.68
  50.  
  51. * You can list several archive member names inside parenthesis:
  52.   `lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
  53.  
  54. * You can use wildcards inside archive member references.  For example,
  55.   `lib(*.o)' expands to all existing members of `lib' whose names end in
  56.   `.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
  57.   of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
  58.   foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
  59.  
  60. * A suffix rule `.X.a' now produces two pattern rules:
  61.     (%.o): %.X    # Previous versions produced only this.
  62.     %.a: %.X    # Now produces this as well, just like other suffixes.
  63.  
  64. * The new flag `--warn-undefined-variables' says to issue a warning message
  65.   whenever Make expands a reference to an undefined variable.
  66.  
  67. * The new `-include' directive is just like `include' except that there is
  68.   no error (not even a warning) for a nonexistent makefile.
  69.  
  70. * Commands in an invocation of the `shell' function are now run with a
  71.   modified environment like target commands are, so you can use `export' et
  72.   al to set up variables for them.  They used to run with the environment
  73.   that `make' started with.
  74.  
  75. Version 3.66
  76.  
  77. * `make --version' (or `make -v') now exits immediately after printing
  78.   the version number.
  79.  
  80. Version 3.65
  81.  
  82. * Make now supports long-named members in `ar' archive files.
  83.  
  84. Version 3.64
  85.  
  86. * Make now supports the `+=' syntax for a variable definition which appends
  87.   to the variable's previous value.  See the section `Appending More Text
  88.   to Variables' in the manual for full details.
  89.  
  90. * The new option `--no-print-directory' inhibits the `-w' or
  91.   `--print-directory' feature.  Make turns on `--print-directory'
  92.   automatically if you use `-C' or `--directory', and in sub-makes; some
  93.   users have found this behavior undesirable.
  94.  
  95. * The built-in implicit rules now support the alternative extension
  96.   `.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
  97.  
  98. Version 3.63
  99.  
  100. * Make now uses a standard GNU `configure' script.  See the new file
  101.   INSTALL for the new (and much simpler) installation procedure.
  102.  
  103. * There is now a shell script to build Make the first time, if you have no
  104.   other `make' program.  `build.sh' is created by `configure'; see README.
  105.  
  106. * GNU Make now completely conforms to the POSIX.2 specification for `make'.
  107.  
  108. * Elements of the `$^' and `$?' automatic variables that are archive
  109.   member references now list only the member name, as in Unix and POSIX.2.
  110.  
  111. * You should no longer ever need to specify the `-w' switch, which prints
  112.   the current directory before and after Make runs.  The `-C' switch to
  113.   change directory, and recursive use of Make, now set `-w' automatically.
  114.  
  115. * Multiple double-colon rules for the same target will no longer have their
  116.   commands run simultaneously under -j, as this could result in the two
  117.   commands trying to change the file at the same time and interfering with
  118.   one another.
  119.  
  120. * The `SHELL' variable is now never taken from the environment.
  121.   Each makefile that wants a shell other than the default (/bin/sh) must
  122.   set SHELL itself.  SHELL is always exported to child processes.
  123.   This change was made for compatibility with POSIX.2.
  124.  
  125. * Make now accepts long options.  There is now an informative usage message
  126.   that tells you what all the options are and what they do.  Try `make --help'.
  127.  
  128. * There are two new directives: `export' and `unexport'.  All variables are
  129.   no longer automatically put into the environments of the commands that
  130.   Make runs.  Instead, only variables specified on the command line or in
  131.   the environment are exported by default.  To export others, use:
  132.     export VARIABLE
  133.   or you can define variables with:
  134.     export VARIABLE = VALUE
  135.   or:
  136.     export VARIABLE := VALUE
  137.   You can use just:
  138.     export
  139.   or:
  140.     .EXPORT_ALL_VARIABLES:
  141.   to get the old behavior.  See the node `Variables/Recursion' in the manual
  142.   for a full description.
  143.  
  144. * The commands from the `.DEFAULT' special target are only applied to
  145.   targets which have no rules at all, not all targets with no commands.
  146.   This change was made for compatibility with Unix make.
  147.  
  148. * All fatal error messages now contain `***', so they are easy to find in
  149.   compilation logs.
  150.  
  151. * Dependency file names like `-lNAME' are now replaced with the actual file
  152.   name found, as with files found by normal directory search (VPATH).
  153.   The library file `libNAME.a' may now be found in the current directory,
  154.   which is checked before VPATH; the standard set of directories (/lib,
  155.   /usr/lib, /usr/local/lib) is now checked last.
  156.   See the node `Libraries/Search' in the manual for full details.
  157.  
  158. * A single `include' directive can now specify more than one makefile to
  159.   include, like this:
  160.     include file1 file2
  161.   You can also use shell file name patterns in an `include' directive:
  162.     include *.mk 
  163.  
  164. * The default directories to search for included makefiles, and for
  165.   libraries specified with `-lNAME', are now set by configuration.
  166.  
  167. * You can now use blanks as well as colons to separate the directories in a
  168.   search path for the `vpath' directive or the `VPATH' variable.
  169.  
  170. * You can now use variables and functions in the left hand side of a
  171.   variable assignment, as in "$(foo)bar = value".
  172.  
  173. * The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
  174.   The `MAKE_COMMAND' variable is now defined to the name with which make
  175.   was invoked.
  176.  
  177. * The built-in rules for C++ compilation now use the variables `$(CXX)' and
  178.   `$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'.  The old names had
  179.   problems with shells that cannot have `+' in environment variable names.
  180.  
  181. * The value of a recursively expanded variable is now expanded when putting
  182.   it into the environment for child processes.  This change was made for
  183.   compatibility with Unix make.
  184.  
  185. * A rule with no targets before the `:' is now accepted and ignored.
  186.   This change was made for compatibility with SunOS 4 make.
  187.   We do not recommend that you write your makefiles to take advantage of this.
  188.  
  189. * The `-I' switch can now be used in MAKEFLAGS, and are put there
  190.   automatically just like other switches.
  191.  
  192. Version 3.61
  193.  
  194. * Built-in rules for C++ source files with the `.C' suffix.
  195.   We still recommend that you use `.cc' instead.
  196.  
  197. * If commands are given too many times for a single target,
  198.   the last set given is used, and a warning message is printed.
  199.  
  200. * Error messages about makefiles are in standard GNU error format,
  201.   so C-x ` in Emacs works on them.
  202.  
  203. * Dependencies of pattern rules which contain no % need not actually exist
  204.   if they can be created (just like dependencies which do have a %).
  205.  
  206. Version 3.60
  207.  
  208. * A message is always printed when Make decides there is nothing to be done.
  209.   It used to be that no message was printed for top-level phony targets
  210.   (because "`phony' is up to date" isn't quite right).  Now a different
  211.   message "Nothing to be done for `phony'" is printed in that case.
  212.  
  213. * Archives on AIX now supposedly work.
  214.  
  215. * When the commands specified for .DEFAULT are used to update a target,
  216.   the $< automatic variable is given the same value as $@ for that target.
  217.   This is how Unix make behaves, and this behavior is mandated by POSIX.2.
  218.  
  219. Version 3.59
  220.  
  221. * The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
  222.   variables while remaking makefiles, so recursive makes done while remaking
  223.   makefiles will behave properly.
  224.  
  225. * If the special target `.NOEXPORT' is specified in a makefile,
  226.   only variables that came from the environment and variables
  227.   defined on the command line are exported.
  228.  
  229. Version 3.58
  230.  
  231. * Suffix rules may have dependencies (which are ignored).
  232.  
  233. Version 3.57
  234.  
  235. * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
  236.   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
  237.  
  238. Version 3.55
  239.  
  240. * There is now a Unix man page for GNU Make.  It is certainly not a replacement
  241. for the Texinfo manual, but it documents the basic functionality and the
  242. switches.  For full documentation, you should still read the Texinfo manual.
  243. Thanks to Dennis Morse of Stanford University for contributing the initial
  244. version of this.
  245.  
  246. * Variables which are defined by default (e.g., `CC') will no longer be put
  247. into the environment for child processes.  (If these variables are reset by the
  248. environment, makefiles, or the command line, they will still go into the
  249. environment.)
  250.  
  251. * Makefiles which have commands but no dependencies (and thus are always
  252.   considered out of date and in need of remaking), will not be remade (if they
  253.   were being remade only because they were makefiles).  This means that GNU
  254.   Make will no longer go into an infinite loop when fed the makefiles that
  255.   `imake' (necessary to build X Windows) produces.
  256.  
  257. * There is no longer a warning for using the `vpath' directive with an explicit
  258. pathname (instead of a `%' pattern).
  259.  
  260. Version 3.51
  261.  
  262. * When removing intermediate files, only one `rm' command line is printed,
  263. listing all file names.
  264.  
  265. * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
  266. These are the directory-only and file-only versions of `$^' and `$?'.
  267.  
  268. * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
  269. directory if it exists.
  270.  
  271. * The automatic variable `$($/)' is no longer defined.
  272.  
  273. * Leading `+' characters on a command line make that line be executed even
  274. under -n, -t, or -q (as if the line contained `$(MAKE)').
  275.  
  276. * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
  277. only those lines are executed, not their entire rules.
  278. (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
  279.  
  280. Version 3.50
  281.  
  282. * Filenames in rules will now have ~ and ~USER expanded.
  283.  
  284. * The `-p' output has been changed so it can be used as a makefile.
  285. (All information that isn't specified by makefiles is prefaced with comment
  286. characters.)
  287.  
  288. Version 3.49
  289.  
  290. * The % character can be quoted with backslash in implicit pattern rules,
  291. static pattern rules, `vpath' directives, and `patsubst', `filter', and
  292. `filter-out' functions.  A warning is issued if a `vpath' directive's
  293. pattern contains no %.
  294.  
  295. * The `wildcard' variable expansion function now expands ~ and ~USER.
  296.  
  297. * Messages indicating failed commands now contain the target name:
  298.     make: *** [target] Error 1
  299.  
  300. * The `-p' output format has been changed somewhat to look more like
  301. makefile rules and to give all information that Make has about files.
  302.  
  303. Version 3.48
  304.  
  305. Version 3.47
  306.  
  307. * The `-l' switch with no argument removes any previous load-average limit.
  308.  
  309. * When the `-w' switch is in effect, and Make has updated makefiles,
  310. it will write a `Leaving directory' messagfe before re-executing itself.
  311. This makes the `directory change tracking' changes to Emacs's compilation
  312. commands work properly.
  313.  
  314. Version 3.46
  315.  
  316. * The automatic variable `$*' is now defined for explicit rules,
  317. as it is in Unix make.
  318.  
  319. Version 3.45
  320.  
  321. * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
  322. specified without an argument (indicating infinite jobs).
  323. The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
  324.  
  325. * Make no longer checks hashed directories after running commands.
  326. The behavior implemented in 3.41 caused too much slowdown.
  327.  
  328. Version 3.44
  329.  
  330. * A dependency is NOT considered newer than its dependent if
  331. they have the same modification time.  The behavior implemented
  332. in 3.43 conflicts with RCS.
  333.  
  334. Version 3.43
  335.  
  336. * Dependency loops are no longer fatal errors.
  337.  
  338. * A dependency is considered newer than its dependent if
  339. they have the same modification time.
  340.  
  341. Version 3.42
  342.  
  343. * The variables F77 and F77FLAGS are now set by default to $(FC) and
  344. $(FFLAGS).  Makefiles designed for System V make may use these variables in
  345. explicit rules and expect them to be set.  Unfortunately, there is no way to
  346. make setting these affect the Fortran implicit rules unless FC and FFLAGS
  347. are not used (and these are used by BSD make).
  348.  
  349. Version 3.41
  350.  
  351. * Make now checks to see if its hashed directories are changed by commands.
  352. Other makes that hash directories (Sun, 4.3 BSD) don't do this.
  353.  
  354. Version 3.39
  355.  
  356. * The `shell' function no longer captures standard error output.
  357.  
  358. Version 3.32
  359.  
  360. * A file beginning with a dot can be the default target if it also contains
  361. a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
  362.  
  363. Version 3.31
  364.  
  365. * Archive member names are truncated to 15 characters.
  366.  
  367. * Yet more USG stuff.
  368.  
  369. * Minimal support for Microport System V (a 16-bit machine and a
  370. brain-damaged compiler).  This has even lower priority than other USG
  371. support, so if it gets beyond trivial, I will take it out completely.
  372.  
  373. * Revamped default implicit rules (not much visible change).
  374.  
  375. * The -d and -p options can come from the environment.
  376.  
  377. Version 3.30
  378.  
  379. * Improved support for USG and HPUX (hopefully).
  380.  
  381. * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
  382. equivalent to `$(patsubst a,b,$(foo))'.
  383.  
  384. * Defining .DEFAULT with no deps or commands clears its commands.
  385.  
  386. * New default implicit rules for .S (cpp, then as), and .sh (copy and make
  387. executable).  All default implicit rules that use cpp (even indirectly), use
  388. $(CPPFLAGS).
  389.  
  390. Version 3.29
  391.  
  392. * Giving the -j option with no arguments gives you infinite jobs.
  393.  
  394. Version 3.28
  395.  
  396. * New option: "-l LOAD" says not to start any new jobs while others are
  397. running if the load average is not below LOAD (a floating-point number).
  398.  
  399. * There is support in place for implementations of remote command execution
  400. in Make.  See the file remote.c.
  401.  
  402. Version 3.26
  403.  
  404. * No more than 10 directories will be kept open at once.
  405. (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
  406.  
  407. Version 3.25
  408.  
  409. * Archive files will have their modification times recorded before doing
  410. anything that might change their modification times by updating an archive
  411. member.
  412.  
  413. Version 3.20
  414.  
  415. * The `MAKELEVEL' variable is defined for use by makefiles.
  416.  
  417. Version 3.19
  418.  
  419. * The recursion level indications in error messages are much shorter than
  420. they were in version 3.14.
  421.  
  422. Version 3.18
  423.  
  424. * Leading spaces before directives are ignored (as documented).
  425.  
  426. * Included makefiles can determine the default goal target.
  427. (System V Make does it this way, so we are being compatible).
  428.  
  429. Version 3.14.
  430.  
  431. * Variables that are defaults built into Make will not be put in the
  432. environment for children.  This just saves some environment space and,
  433. except under -e, will be transparent to sub-makes.
  434.  
  435. * Error messages from sub-makes will indicate the level of recursion.
  436.  
  437. * Hopefully some speed-up for large directories due to a change in the
  438. directory hashing scheme.
  439.  
  440. * One child will always get a standard input that is usable.
  441.  
  442. * Default makefiles that don't exist will be remade and read in.
  443.  
  444. Version 3.13.
  445.  
  446. * Count parentheses inside expansion function calls so you can
  447. have nested calls: `$(sort $(foreach x,a b,$(x)))'.
  448.  
  449. Version 3.12.
  450.  
  451. * Several bug fixes, including USG and Sun386i support.
  452.  
  453. * `shell' function to expand shell commands a la `
  454.  
  455. * If the `-d' flag is given, version information will be printed.
  456.  
  457. * The `-c' option has been renamed to `-C' for compatibility with tar.
  458.  
  459. * The `-p' option no longer inhibits other normal operation.
  460.  
  461. * Makefiles will be updated and re-read if necessary.
  462.  
  463. * Can now run several commands at once (parallelism), -j option.
  464.  
  465. * Error messages will contain the level of Make recursion, if any.
  466.  
  467. * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
  468. makefiles are read.
  469.  
  470. * A double-colon rule with no dependencies will always have its commands run.
  471. (This is how both the BSD and System V versions of Make do it.)
  472.  
  473. Version 3.05
  474.  
  475. (Changes from versions 1 through 3.05 were never recorded.  Sorry.)
  476.  
  477. ----------------------------------------------------------------------
  478. Copyright information:
  479.  
  480. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  481.  
  482.    Permission is granted to anyone to make or distribute verbatim copies
  483.    of this document as received, in any medium, provided that the
  484.    copyright notice and this permission notice are preserved,
  485.    thus giving the recipient permission to redistribute in turn.
  486.  
  487.    Permission is granted to distribute modified versions
  488.    of this document, or of portions of it,
  489.    under the above conditions, provided also that they
  490.    carry prominent notices stating who last changed them.
  491.  
  492. Local variables:
  493. version-control: never
  494. end:
  495.