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

Lines Matching refs:to_file

225   struct file *to_file;
247 to_file = *file_slot;
253 if (HASH_VACANT (to_file))
257 /* TO_FILE already exists under TO_HNAME.
258 We must retain TO_FILE and merge FROM_FILE into it. */
262 if (to_file->cmds == 0)
263 to_file->cmds = from_file->cmds;
264 else if (from_file->cmds != to_file->cmds)
269 if (to_file->cmds->fileinfo.filenm != 0)
272 from_file->name, to_file->cmds->fileinfo.filenm,
273 to_file->cmds->fileinfo.lineno);
289 if (to_file->deps == 0)
290 to_file->deps = from_file->deps;
293 register struct dep *deps = to_file->deps;
299 merge_variable_set_lists (&to_file->variables, from_file->variables);
301 if (to_file->double_colon && from_file->is_target && !from_file->double_colon)
304 if (!to_file->double_colon && from_file->double_colon)
306 if (to_file->is_target)
310 to_file->double_colon = from_file->double_colon;
313 if (from_file->last_mtime > to_file->last_mtime)
315 to_file->last_mtime = from_file->last_mtime;
317 to_file->mtime_before_update = from_file->mtime_before_update;
319 #define MERGE(field) to_file->field |= from_file->field
330 from_file->renamed = to_file;