diff options
author | Paul Smith <psmith@gnu.org> | 2012-01-30 00:21:57 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2012-01-30 00:21:57 +0000 |
commit | ef6461611b8fb7cd4a92168d4c319153462afb5a (patch) | |
tree | 715f4d6f1177ce9bb4e5d2d84bf89575c7906175 /ChangeLog | |
parent | fca11f60390cf607f68b497c3909b1fb40251070 (diff) | |
download | gunmake-ef6461611b8fb7cd4a92168d4c319153462afb5a.tar.gz |
Add support for "::=" simple assignment operator.
The next POSIX standard will define "::=" to have the same behavior
as GNU make's ":=", so add support for this new operator.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,5 +1,17 @@ 2012-01-29 Paul Smith <psmith@gnu.org> + * variable.c (parse_variable_definition): New POSIX assignment ::= + Take a struct variable to return more information after parsing. + (assign_variable_definition): New parse_variable_definition() call. + * variable.h: New declaration of parse_variable_definition(). + * read.c (do_define): New parse_variable_definition() call. + (parse_var_assignment): Ditto. + (get_next_mword): Parse ::= as a variable assignment. + * doc/make.texi (Flavors): Describe the new ::= syntax. + * NEWS: Mention the ::= operator. + + * variable.h (struct variable): Rearrange elts to reduce struct size. + * function.c (func_file): Create a new function, $(file ...) * doc/make.texi (File Function): Document the $(file ..) function. * NEWS: Announce it. |