Lines Matching defs:wd

395 	char *wd, *this, *compilewith, *depends, *clean, *warning;
413 wd = get_word(fp);
414 if (wd == (char *)EOF) {
418 if (wd == NULL)
420 if (wd[0] == '#')
422 while (((wd = get_word(fp)) != (char *)EOF) && wd)
426 if (eq(wd, "include")) {
427 wd = get_quoted_word(fp);
428 if (wd == (char *)EOF || wd == NULL)
430 (void) snprintf(ifname, sizeof(ifname), "../../%s", wd);
432 while (((wd = get_word(fp)) != (char *)EOF) && wd)
436 this = ns(wd);
437 wd = get_word(fp);
438 if (wd == (char *)EOF)
440 if (wd == NULL)
458 if (eq(wd, "standard"))
460 else if (!eq(wd, "optional"))
462 fname, wd, this);
463 for (wd = get_word(fp); wd; wd = get_word(fp)) {
464 if (wd == (char *)EOF)
466 if (eq(wd, "!")) {
470 if (eq(wd, "|")) {
479 if (eq(wd, "no-obj")) {
483 if (eq(wd, "no-implicit-rule")) {
492 if (eq(wd, "before-depend")) {
496 if (eq(wd, "dependency")) {
497 wd = get_quoted_word(fp);
498 if (wd == (char *)EOF || wd == NULL)
501 depends = ns(wd);
504 if (eq(wd, "clean")) {
505 wd = get_quoted_word(fp);
506 if (wd == (char *)EOF || wd == NULL)
509 clean = ns(wd);
512 if (eq(wd, "compile-with")) {
513 wd = get_quoted_word(fp);
514 if (wd == (char *)EOF || wd == NULL)
517 compilewith = ns(wd);
520 if (eq(wd, "warning")) {
521 wd = get_quoted_word(fp);
522 if (wd == (char *)EOF || wd == NULL)
525 warning = ns(wd);
528 if (eq(wd, "obj-prefix")) {
529 wd = get_quoted_word(fp);
530 if (wd == (char *)EOF || wd == NULL)
533 objprefix = ns(wd);
536 if (eq(wd, "nowerror")) {
540 if (eq(wd, "local")) {
544 if (eq(wd, "no-depend")) {
549 if (eq(wd, "profiling-routine")) {
555 this, wd);
557 if (eq(dp->d_name, wd)) {
566 strcasecmp(op->op_name, wd) == 0) {