Lines Matching refs:target
65 * fixdep <depfile> <target> <cmdline>
73 * savedcmd_<target> = <cmdline>
75 * and then basically copies the .<target>.d file to stdout, in the
104 fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n");
266 static void parse_dep_file(char *p, const char *target)
312 * we expect the next token is a target.
353 /* Just discard the target */
383 printf("source_%s := %s\n\n", target, p);
384 printf("deps_%s := \\\n", target);
411 printf("\n%s: $(deps_%s)\n\n", target, target);
412 printf("$(deps_%s):\n", target);
417 const char *depfile, *target, *cmdline;
424 target = argv[2];
427 printf("savedcmd_%s := %s\n\n", target, cmdline);
430 parse_dep_file(buf, target);