Lines Matching defs:dir
300 /* We have dir/file.o. Open dir/.file.o.cmd, look for source_ and deps_ line
304 char *cmd, *file, *line, *dir, *pos;
319 dir = NOFAIL(malloc(dirlen + 1));
320 strncpy(dir, objfile, dirlen);
321 dir[dirlen] = '\0';
327 /* Sum all files in the same dir or subdirs. */
369 /* Check if this file is in same dir as objfile */
370 if ((strstr(line, dir)+strlen(dir)-1) == strrchr(line, '/')) {
385 free(dir);