home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / GNU / MAK358AS.ZIP / CHANGES < prev    next >
Encoding:
Text File  |  1989-12-17  |  8.2 KB  |  251 lines

  1. User-visible changes in GNU Make, excluding bug fixes, since version 3.05:
  2. ==========================================================================
  3.  
  4. Version 3.58
  5.  
  6. * Suffix rules may have dependencies (which are ignored).
  7.  
  8. Version 3.57
  9.  
  10. * Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
  11.   as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
  12.  
  13. Version 3.55
  14.  
  15. * There is now a Unix man page for GNU Make.  It is certainly not a replacement
  16. for the Texinfo manual, but it documents the basic functionality and the
  17. switches.  For full documentation, you should still read the Texinfo manual.
  18. Thanks to Dennis Morse of Stanford University for contributing the initial
  19. version of this.
  20.  
  21. * Variables which are defined by default (e.g., `CC') will no longer be put
  22. into the environment for child processes.  (If these variables are reset by the
  23. environment, makefiles, or the command line, they will still go into the
  24. environment.)
  25.  
  26. * GNU Make will no longer go into an infinite loop when fed the horrid trash
  27. that passes for makefiles that `imake' produces (so you can compile X, despite
  28. the extreme stubbornness and irrationality of its maintainers).
  29.  
  30. * There is no longer a warning for using the `vpath' directive with an explicit
  31. pathname (instead of a `%' pattern).
  32.  
  33. Version 3.51
  34.  
  35. * When removing intermediate files, only one `rm' command line is printed,
  36. listing all file names.
  37.  
  38. * There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
  39. These are the directory-only and file-only versions of `$^' and `$?'.
  40.  
  41. * Library dependencies given as `-lNAME' will use "libNAME.a" in the current
  42. directory if it exists.
  43.  
  44. * The automatic variable `$($/)' is no longer defined.
  45.  
  46. * Leading `+' characters on a command line make that line be executed even
  47. under -n, -t, or -q (as if the line contained `$(MAKE)').
  48.  
  49. * For command lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
  50. only those lines are executed, not their entire rules.
  51. (This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
  52.  
  53. Version 3.50
  54.  
  55. * Filenames in rules will now have ~ and ~USER expanded.
  56.  
  57. * The `-p' output has been changed so it can be used as a makefile.
  58. (All information that isn't specified by makefiles is prefaced with comment
  59. characters.)
  60.  
  61. Version 3.49
  62.  
  63. * The % character can be quoted with backslash in implicit pattern rules,
  64. static pattern rules, `vpath' directives, and `patsubst', `filter', and
  65. `filter-out' functions.  A warning is issued if a `vpath' directive's
  66. pattern contains no %.
  67.  
  68. * The `wildcard' variable expansion function now expands ~ and ~USER.
  69.  
  70. * Messages indicating failed commands now contain the target name:
  71.     make: *** [target] Error 1
  72.  
  73. * The `-p' output format has been changed somewhat to look more like
  74. makefile rules and to give all information that Make has about files.
  75.  
  76. Version 3.48
  77.  
  78. Version 3.47
  79.  
  80. * The `-l' switch with no argument removes any previous load-average limit.
  81.  
  82. * When the `-w' switch is in effect, and Make has updated makefiles,
  83. it will write a `Leaving directory' messagfe before re-executing itself.
  84. This makes the `directory change tracking' changes to Emacs's compilation
  85. commands work properly.
  86.  
  87. Version 3.46
  88.  
  89. * The automatic variable `$*' is now defined for explicit rules,
  90. as it is in Unix make.
  91.  
  92. Version 3.45
  93.  
  94. * The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
  95. specified without an argument (indicating infinite jobs).
  96. The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
  97.  
  98. * Make no longer checks hashed directories after running commands.
  99. The behavior implemented in 3.41 caused too much slowdown.
  100.  
  101. Version 3.44
  102.  
  103. * A dependency is NOT considered newer than its dependent if
  104. they have the same modification time.  The behavior implemented
  105. in 3.43 conflicts with RCS.
  106.  
  107. Version 3.43
  108.  
  109. * Dependency loops are no longer fatal errors.
  110.  
  111. * A dependency is considered newer than its dependent if
  112. they have the same modification time.
  113.  
  114. Version 3.42
  115.  
  116. * The variables F77 and F77FLAGS are now set by default to $(FC) and
  117. $(FFLAGS).  Makefiles designed for System V make may use these variables in
  118. explicit rules and expect them to be set.  Unfortunately, there is no way to
  119. make setting these affect the Fortran implicit rules unless FC and FFLAGS
  120. are not used (and these are used by BSD make).
  121.  
  122. Version 3.41
  123.  
  124. * Make now checks to see if its hashed directories are changed by commands.
  125. Other makes that hash directories (Sun, 4.3 BSD) don't do this.
  126.  
  127. Version 3.39
  128.  
  129. * The `shell' function no longer captures standard error output.
  130.  
  131. Version 3.32
  132.  
  133. * A file beginning with a dot can be the default target if it also contains
  134. a slash (e.g., `../bin/foo').  (Unix make allows this as well.)
  135.  
  136. Version 3.31
  137.  
  138. * Archive member names are truncated to 15 characters.
  139.  
  140. * Yet more USG stuff.
  141.  
  142. * Minimal support for Microport System V (a 16-bit machine and a
  143. brain-damaged compiler).  This has even lower priority than other USG
  144. support, so if it gets beyond trivial, I will take it out completely.
  145.  
  146. * Revamped default implicit rules (not much visible change).
  147.  
  148. * The -d and -p options can come from the environment.
  149.  
  150. Version 3.30
  151.  
  152. * Improved support for USG and HPUX (hopefully).
  153.  
  154. * A variable reference like `$(foo:a=b)', if `a' contains a `%', is
  155. equivalent to `$(patsubst a,b,$(foo))'.
  156.  
  157. * Defining .DEFAULT with no deps or commands clears its commands.
  158.  
  159. * New default implicit rules for .S (cpp, then as), and .sh (copy and make
  160. executable).  All default implicit rules that use cpp (even indirectly), use
  161. $(CPPFLAGS).
  162.  
  163. Version 3.29
  164.  
  165. * Giving the -j option with no arguments gives you infinite jobs.
  166.  
  167. Version 3.28
  168.  
  169. * New option: "-l LOAD" says not to start any new jobs while others are
  170. running if the load average is not below LOAD (a floating-point number).
  171.  
  172. * There is support in place for implementations of remote command execution
  173. in Make.  See the file remote.c.
  174.  
  175. Version 3.26
  176.  
  177. * No more than 10 directories will be kept open at once.
  178. (This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
  179.  
  180. Version 3.25
  181.  
  182. * Archive files will have their modification times recorded before doing
  183. anything that might change their modification times by updating an archive
  184. member.
  185.  
  186. Version 3.20
  187.  
  188. * The `MAKELEVEL' variable is defined for use by makefiles.
  189.  
  190. Version 3.19
  191.  
  192. * The recursion level indications in error messages are much shorter than
  193. they were in version 3.14.
  194.  
  195. Version 3.18
  196.  
  197. * Leading spaces before directives are ignored (as documented).
  198.  
  199. * Included makefiles can determine the default goal target.
  200. (System V Make does it this way, so we are being compatible).
  201.  
  202. Version 3.14.
  203.  
  204. * Variables that are defaults built into Make will not be put in the
  205. environment for children.  This just saves some environment space and,
  206. except under -e, will be transparent to sub-makes.
  207.  
  208. * Error messages from sub-makes will indicate the level of recursion.
  209.  
  210. * Hopefully some speed-up for large directories due to a change in the
  211. directory hashing scheme.
  212.  
  213. * One child will always get a standard input that is usable.
  214.  
  215. * Default makefiles that don't exist will be remade and read in.
  216.  
  217. Version 3.13.
  218.  
  219. * Count parentheses inside expansion function calls so you can
  220. have nested calls: `$(sort $(foreach x,a b,$(x)))'.
  221.  
  222. Version 3.12.
  223.  
  224. * Several bug fixes, including USG and Sun386i support.
  225.  
  226. * `shell' function to expand shell commands a la `
  227.  
  228. * If the `-d' flag is given, version information will be printed.
  229.  
  230. * The `-c' option has been renamed to `-C' for compatibility with tar.
  231.  
  232. * The `-p' option no longer inhibits other normal operation.
  233.  
  234. * Makefiles will be updated and re-read if necessary.
  235.  
  236. * Can now run several commands at once (parallelism), -j option.
  237.  
  238. * Error messages will contain the level of Make recursion, if any.
  239.  
  240. * The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
  241. makefiles are read.
  242.  
  243. * A double-colon rule with no dependencies will always have its commands run.
  244. (This is how both the BSD and System V versions Make do it.)
  245.  
  246. Version 3.05
  247.  
  248. Local Variables:
  249. version-control: never
  250. End:
  251.