Lines Matching refs:target
331 static void parse_dep_file(char *m, const char *target) in parse_dep_file() argument
379 target, m); in parse_dep_file()
380 xprintf("deps_%s := \\\n", target); in parse_dep_file()
407 xprintf("\n%s: $(deps_%s)\n\n", target, target); in parse_dep_file()
408 xprintf("$(deps_%s):\n", target); in parse_dep_file()
413 const char *depfile, *target, *cmdline; in main() local
420 target = argv[2]; in main()
424 if (!strncmp(target, "spl/", 4)) in main()
426 else if (!strncmp(target, "tpl/", 4)) in main()
430 xprintf("cmd_%s := %s\n\n", target, cmdline); in main()
433 parse_dep_file(buf, target); in main()