Home
last modified time | relevance | path

Searched refs:o_automatic (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl2/gmake/dist/
H A Dvariable.c821 define_variable ("@D", 2, "$(dir $@)", o_automatic, 1); in define_automatic_variables()
822 define_variable ("%D", 2, "$(dir $%)", o_automatic, 1); in define_automatic_variables()
823 define_variable ("*D", 2, "$(dir $*)", o_automatic, 1); in define_automatic_variables()
824 define_variable ("<D", 2, "$(dir $<)", o_automatic, 1); in define_automatic_variables()
825 define_variable ("?D", 2, "$(dir $?)", o_automatic, 1); in define_automatic_variables()
826 define_variable ("^D", 2, "$(dir $^)", o_automatic, 1); in define_automatic_variables()
827 define_variable ("+D", 2, "$(dir $+)", o_automatic, 1); in define_automatic_variables()
829 define_variable ("@D", 2, "$(patsubst %/,%,$(dir $@))", o_automatic, 1); in define_automatic_variables()
830 define_variable ("%D", 2, "$(patsubst %/,%,$(dir $%))", o_automatic, 1); in define_automatic_variables()
831 define_variable ("*D", 2, "$(patsubst %/,%,$(dir $*))", o_automatic, 1); in define_automatic_variables()
[all …]
H A Dvariable.h31 o_automatic, /* Automatic variable -- cannot be set. */ enumerator
H A Dfunction.c483 case o_automatic: in func_origin()
844 var = define_variable (varname, strlen (varname), "", o_automatic, 0); in func_foreach()
2299 define_variable (num, strlen (num), *argv, o_automatic, 0); in func_call()
2312 define_variable (num, strlen (num), "", o_automatic, 0); in func_call()
H A Dcommands.c127 (void) define_variable_for_file (name,len,value,o_automatic,0,file) in set_file_variables()