-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add new flags to output dependencies
Flags following gcc options: -M to output deps only, -MD to output deps while compiling (in .d files), -MP to output phony targets, -MG to keep missing copybooks, -MQ <target> to Makefile-quote target Additional flags specific to GnuCOBOL: -foneline-deps outputs all dependencies on a single line instead of multiple lines; -fcopybook-deps outputs only copybook names instead of file paths. -fcopybook-deps also forces -E, -foneline-deps, -MT=copybooks, disables errors on missing copybooks and remove output on stdout.
- Loading branch information
Showing
7 changed files
with
379 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,20 @@ | ||
|
||
2023-08-17 Fabrice Le Fessant <[email protected]> | ||
|
||
* cobc.c: add new flags to output dependencies following gcc: -M to | ||
output deps only, -MD to output deps while compiling (in .d files), | ||
-MP to output phony targets, -MG to keep missing copybooks, | ||
-MQ <target> to Makefile-quote target | ||
|
||
2023-08-16 Fabrice Le Fessant <[email protected]> | ||
|
||
* cobc.c, flags.def: add new flags to output dependencies: | ||
-foneline-deps outputs all dependencies on a single line instead of | ||
multiple lines; -fcopybook-deps outputs only copybook names instead | ||
of file paths. -fcopybook-deps also forces -E, -foneline-deps, | ||
-MT=copybooks, disables errors on missing copybooks and removes | ||
output on stdout. | ||
|
||
2023-07-26 Simon Sobisch <[email protected]> | ||
|
||
* typeck.c (search_set_keys): improving SEARCH ALL syntax checks | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.