Home | History | Annotate | Download | only in make-3.81

Lines Matching refs:define_variable

410             return define_variable (vname, length, nvalue, o_env, 1);
414 return define_variable (vname, length, value, o_env, 1);
722 (void) define_variable (MAKELEVEL_NAME, MAKELEVEL_LENGTH, buf, o_env, 0);
730 (void) define_variable ("MAKE_VERSION", 12, buf, o_default, 0);
743 (void) define_variable (shell_str, shlen,
751 (void) define_variable (shell_str, shlen, comp->value, o_env, 0);
794 (void) define_variable (shell_str, shlen, replace->value,
798 (void) define_variable (shell_str, shlen, default_shell,
806 v = define_variable ("SHELL", 5, default_shell, o_default, 0);
823 v = define_variable ("MAKEFILES", 9, "", o_default, 0);
830 define_variable ("@D", 2, "$(dir $@)", o_automatic, 1);
831 define_variable ("%D", 2, "$(dir $%)", o_automatic, 1);
832 define_variable ("*D", 2, "$(dir $*)", o_automatic, 1);
833 define_variable ("<D", 2, "$(dir $<)", o_automatic, 1);
834 define_variable ("?D", 2, "$(dir $?)", o_automatic, 1);
835 define_variable ("^D", 2, "$(dir $^)", o_automatic, 1);
836 define_variable ("+D", 2, "$(dir $+)", o_automatic, 1);
838 define_variable ("@D", 2, "$(patsubst %/,%,$(dir $@))", o_automatic, 1);
839 define_variable ("%D", 2, "$(patsubst %/,%,$(dir $%))", o_automatic, 1);
840 define_variable ("*D", 2, "$(patsubst %/,%,$(dir $*))", o_automatic, 1);
841 define_variable ("<D", 2, "$(patsubst %/,%,$(dir $<))", o_automatic, 1);
842 define_variable ("?D", 2, "$(patsubst %/,%,$(dir $?))", o_automatic, 1);
843 define_variable ("^D", 2, "$(patsubst %/,%,$(dir $^))", o_automatic, 1);
844 define_variable ("+D", 2, "$(patsubst %/,%,$(dir $+))", o_automatic, 1);
846 define_variable ("@F", 2, "$(notdir $@)", o_automatic, 1);
847 define_variable ("%F", 2, "$(notdir $%)", o_automatic, 1);
848 define_variable ("*F", 2, "$(notdir $*)", o_automatic, 1);
849 define_variable ("<F", 2, "$(notdir $<)", o_automatic, 1);
850 define_variable ("?F", 2, "$(notdir $?)", o_automatic, 1);
851 define_variable ("^F", 2, "$(notdir $^)", o_automatic, 1);
852 define_variable ("+F", 2, "$(notdir $+)", o_automatic, 1);