diff options
author | Paul Smith <psmith@gnu.org> | 2013-05-13 04:29:35 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-05-13 04:30:20 -0400 |
commit | 58dae243526bd322ae6bec0c4394a117a5fe0171 (patch) | |
tree | 921c2f73d7ef59e149880a44472ccd54106aca1c /makeint.h | |
parent | c7732bd5add31b38fea113c9ab4ad4d97a0870c7 (diff) | |
download | gunmake-58dae243526bd322ae6bec0c4394a117a5fe0171.tar.gz |
[Savannah #20501] Handle adding -r/-R to MAKEFLAGS in the makefile.
If -R is set in the makefile and not the command line, then go through all the
default variables and undefine them. If -r is set in the makefile and not in
the command line, then remove all .SUFFIX prefixes (unless the user set it)
and SUFFIX variable setting. In -p mode don't print builtins.
Diffstat (limited to 'makeint.h')
-rw-r--r-- | makeint.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -454,6 +454,7 @@ const char *dir_name (const char *); void hash_init_directories (void); void define_default_variables (void); +void undefine_default_variables (void); void set_default_suffixes (void); void install_default_suffix_rules (void); void install_default_implicit_rules (void); |