Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-10-19 | * GNUMAKEFLAGS: Remove -O so it passes in NO_OUTPUT_SYNC mode. | Paul Smith | 1 | -2/+2 | |
2013-09-30 | Fix portability issues for Guile 1.8. | Paul Smith | 1 | -2/+4 | |
2013-09-29 | Reset GNUMAKEFLAGS after parsing. | Paul Smith | 1 | -0/+14 | |
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. | |||||
2013-09-12 | Enhance the output sync mode. | Paul Smith | 1 | -2/+4 | |
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. | |||||
2013-05-22 | Fix regression tests after MAKEFLAGS enhancements. | Paul Smith | 1 | -2/+2 | |
2013-05-13 | Add a new variable: GNUMAKEFLAGS | Paul Smith | 1 | -0/+24 | |
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. |