Lines Matching refs:target
327 static void parse_dep_file(char *m, const char *target) in parse_dep_file() argument
375 target, m); in parse_dep_file()
376 xprintf("deps_%s := \\\n", target); in parse_dep_file()
403 xprintf("\n%s: $(deps_%s)\n\n", target, target); in parse_dep_file()
404 xprintf("$(deps_%s):\n", target); in parse_dep_file()
409 const char *depfile, *target, *cmdline; in main() local
416 target = argv[2]; in main()
420 if (!strncmp(target, "spl/", 4)) in main()
422 else if (!strncmp(target, "tpl/", 4)) in main()
424 else if (!strncmp(target, "vpl/", 4)) in main()
428 xprintf("cmd_%s := %s\n\n", target, cmdline); in main()
431 parse_dep_file(buf, target); in main()