Lines Matching refs:target
65 * fixdep <depfile> <target> <cmdline>
73 * cmd_<target> = <cmdline>
75 * and then basically copies the .<target>.d file to stdout, in the
104 fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n");
305 static void parse_dep_file(char *m, const char *target)
326 /* Is the token we found a target name? */
328 /* Don't write any target names into the dependency file */
345 * target name, which will be the original
346 * source name, and ignore any other target
353 target, m);
354 xprintf("deps_%s := \\\n", target);
381 xprintf("\n%s: $(deps_%s)\n\n", target, target);
382 xprintf("$(deps_%s):\n", target);
387 const char *depfile, *target, *cmdline;
394 target = argv[2];
397 xprintf("cmd_%s := %s\n\n", target, cmdline);
400 parse_dep_file(buf, target);