summaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Update README.VMS and move news to the NEWS fileJohn Malmberg2014-10-201-2/+268
| | | | | | * NEWS: Merge in VMS history. * README.VMS: Remove VMS history, document current behavior and known issues.
* * configure.ac, NEWS, README.git: Set up for the next release.Paul Smith2014-10-091-0/+7
|
* GNU Make release 4.1.Paul Smith2014-10-051-2/+2
|
* Update Copyright statements for 2014.Paul Smith2014-09-301-6/+6
|
* * main.c, NEWS, doc/make.text: Rename MAKE_TTY* to MAKE_TERM*Paul Smith2014-09-151-2/+3
|
* * main.c (main): Set MAKE_TTYOUT and MAKE_TTYERR.Paul Smith2014-09-141-0/+3
| | | | | | | | * configure.ac: Test for isatty() and ttyname() * makeint.h: provide a substitute for ttyname() if it's not available. * config.ami.template, config.h-vms.template, config.h.W32.template: define/undefine HAVE_ISATTY/HAVE_TTYNAME macros. * NEWS, doc/make.texi: Document these new variables.
* [SV 41983] Support omitting the text argument to $(file ...)Paul Smith2014-07-071-11/+15
| | | | | | | | Reported by Tim Murphy <tnmurphy@gmail.com> * function.c (func_file): Only write TEXT if it is not NULL. * NEWS, doc/make.texi: Document the new feature * tests/scripts/functions/file: Verify that the no-text version of $(file ...) works and doesn't add a newline.
* * read.c (record_files): [SV 33034] Change fatal() to error()Paul Smith2013-10-201-11/+8
| | | | | | Allows deprecated syntax. However we don't guarantee this syntax will continue to be legal in the future. Change suggested by David Boyce <david.s.boyce@gmail.com>
* * NEWS: Fix version so we can build a distfile.Paul Smith2013-10-191-1/+1
|
* Set up for the next release.Paul Smith2013-10-131-1/+8
|
* GNU Make release 4.0.Paul Smith2013-10-091-2/+2
|
* Release GNU Make version 3.99.93.Paul Smith2013-10-011-2/+2
|
* Portability for Guile 1.8. Force UTF-8 encoding.Paul Smith2013-09-291-5/+10
|
* Reset GNUMAKEFLAGS after parsing.Paul Smith2013-09-291-3/+6
| | | | | If we don't do this we'll continually add flags on recursion. This is mainly for users to set in their environment before invoking make.
* Release GNU Make version 3.99.92.3.99.92Paul Smith2013-09-231-2/+2
|
* Add VMS port updates from Hartmut Becker.Paul Smith2013-09-221-2/+2
|
* Release GNU Make version 3.99.91.Paul Smith2013-09-161-2/+2
|
* [SV 35248] Add --debug "n" flag to turn off current debug options.Paul Smith2013-09-141-3/+4
|
* Enhance the output sync mode.Paul Smith2013-09-121-2/+1
| | | | | | | | | | | | | | | Create a new file, output.c, and collect functions that generate output there. We introduce a new global context specifying where output should go (to stdout or to a sync file), and the lowest level output generator chooses where to write output based on that context. This allows us to set the context globally, and all operations that write output (including functions like $(info ...) etc.) will use it. Removed the "--trace=dir" capability. It was too confusing. If you have directory tracking enabled then output sync will print the enter/leave message for each synchronized block. If you don't want that, disable directory tracking.
* Create a new variable MAKE_HOST providing the host architecture.Paul Smith2013-05-271-0/+4
|
* Add dates to the NEWS file to make things simpler.Paul Smith2013-05-261-20/+20
|
* Force version printing whenever we print the database.Paul Smith2013-05-221-0/+8
|
* Update for GNU make release candidate 3.99.90.3.99.90Paul Smith2013-05-171-2/+2
|
* Update copyright for changes in 2013.Paul Smith2013-05-171-1/+1
|
* Add a new variable: GNUMAKEFLAGSPaul Smith2013-05-131-6/+13
| | | | | | | This allows you to write portable makefiles that set GNU make-specific command line options in the environment or makefile: add them to GNUMAKEFLAGS instead of MAKEFLAGS and they will be seen by GNU make but ignored by other implementations of make.
* Mention in NEWS change on Windows with quotes in command lines.Eli Zaretskii2013-05-011-0/+9
|
* Add support for per-job output sync.Paul Smith2013-04-281-4/+8
| | | | | | | | | A new flag to the -O/--output-sync, "job", selects a per-job (that is, per line of a recipe) output synchronization. To support this move the close of the temp file out of the sync_output() function and don't do it until we free the child, since we may call sync_output() multiple times in a given recipe. When we set up for a new temp file, if we're in per-job mode we truncate the file and seek to the beginning to re-use it for every job.
* Create an open_tmpfd() function to return temp files by FD. Use it.Paul Smith2013-04-161-2/+8
|
* Implement new "load" directive.Paul Smith2012-10-291-1/+6
| | | | | Provides support for dynamically loadable objects in GNU make, as a "technology preview".
* Simplify copyrights using ranges of years.Paul Smith2012-03-051-4/+2
| | | | | The new GNU Maintainer's Manual allows the use of year ranges in certain situations; take advantage of this simplification.
* Modify backslash/newline handling for POSIX.Paul Smith2012-03-031-5/+6
| | | | | | | | | | We fixed Savannah 16670 but that broke previously-working makefiles that relied on the GNU make behavior. The POSIX behavior doesn't seem to me to be better, and can be obtained using GNU make as well, so put it back as the default behavior and require .POSIX to get the POSIX behavior. Add a new section to the manual discussing backslash/newline handling. Update the test suite.
* Add support for "::=" simple assignment operator.Paul Smith2012-01-301-0/+6
| | | | | The next POSIX standard will define "::=" to have the same behavior as GNU make's ":=", so add support for this new operator.
* Create a new function $(file ...)Paul Smith2012-01-291-6/+8
|
* Update copyright notices.Paul Smith2012-01-161-4/+5
|
* Add GNU Guile as an optional embedded scripting language for make.Paul Smith2012-01-151-0/+5
| | | | | | | | | On configure-enabled systems, configure will detect Guile installed (using pkg-config, which is how GNU Guile is distributed) and enable it if so. On all non-configure-enabled systems, currently, the default is for Guile support to be disabled.
* Support jobserver capability on Windows systems.Paul Smith2011-11-141-1/+4
| | | | Implementation contributed by Troy Runkel <Troy.Runkel@mathworks.com>
* Add new feature: != shell assignment for portability with BSD make.Paul Smith2011-04-181-1/+8
| | | | Feature submitted by David Wheeler.
* Improve backslash/newline handling to adhere to POSIX requirements.Paul Smith2010-11-061-0/+13
|
* Bump the version to 3.82.90.Paul Smith2010-08-291-1/+17
| | | | | | Fix some doc bugs. Implement the --trace flag. Show filename/linenumber on error.
* - Fix the NEWS file to be accuratePaul Smith2010-08-141-8/+15
| | | | | - Add oneshell to $(.FEATURES) (forgot that!) - Fix Savannah bug #30612: handling of archive references with >1 object
* Release GNU make 3.82Paul Smith2010-07-281-43/+57
| | | | | - Update tests for Solaris bizarre-ness - Update files for release
* Fix up incorrect prototype.Paul Smith2010-07-201-1/+1
|
* - Many fixup patches from Savannah.Paul Smith2010-07-191-6/+6
| | | | | - Fix the test suite on Solaris (from Boris) - Update the manual for .ONESHELL
* Update copyrights for 2010.Paul Smith2010-07-131-2/+2
|
* Add the beginning of the .ONESHELL special feature.Paul Smith2010-07-121-0/+10
| | | | Original patch by David Boyce. Modified by Paul Smith.
* - Enhance .POSIX to set -e when invoking shells, as demanded by aPaul Smith2010-07-061-2/+18
| | | | | | | backward-incompatible change in the 2008 POSIX specification. - Add the .SHELLFLAGS variable so people can choose their own shell flags. - Add tests for this. - Add documentation for this.
* Implement linker-compatible library search.Boris Kolpackov2009-11-121-0/+9
|
* Fix fat-finger bug that left implicit rules with identical stem lengthsPaul Smith2009-10-251-7/+9
| | | | being sorted indeterminately.
* New command line option: --eval=STRING will cause STRING to bePaul Smith2009-10-251-8/+13
| | | | | evaluated as a makefile statement before the first makefile is read.
* Massage the NEWS filePaul Smith2009-10-121-16/+20
|