Lines Matching refs:wd

310 	char *wd, *this, *compilewith, *depends, *clean, *warning;
328 wd = get_word(fp);
329 if (wd == (char *)EOF) {
333 if (wd == NULL)
335 if (wd[0] == '#')
337 while (((wd = get_word(fp)) != (char *)EOF) && wd)
341 if (eq(wd, "include")) {
342 wd = get_quoted_word(fp);
343 if (wd == (char *)EOF || wd == NULL)
345 (void) snprintf(ifname, sizeof(ifname), "../../%s", wd);
347 while (((wd = get_word(fp)) != (char *)EOF) && wd)
351 this = ns(wd);
352 wd = get_word(fp);
353 if (wd == (char *)EOF)
355 if (wd == NULL)
373 if (eq(wd, "standard"))
375 else if (!eq(wd, "optional"))
377 fname, wd, this);
378 for (wd = get_word(fp); wd; wd = get_word(fp)) {
379 if (wd == (char *)EOF)
381 if (eq(wd, "!")) {
385 if (eq(wd, "|")) {
394 if (eq(wd, "no-obj")) {
398 if (eq(wd, "no-implicit-rule")) {
407 if (eq(wd, "before-depend")) {
411 if (eq(wd, "dependency")) {
412 wd = get_quoted_word(fp);
413 if (wd == (char *)EOF || wd == NULL)
416 depends = ns(wd);
419 if (eq(wd, "clean")) {
420 wd = get_quoted_word(fp);
421 if (wd == (char *)EOF || wd == NULL)
424 clean = ns(wd);
427 if (eq(wd, "compile-with")) {
428 wd = get_quoted_word(fp);
429 if (wd == (char *)EOF || wd == NULL)
432 compilewith = ns(wd);
435 if (eq(wd, "warning")) {
436 wd = get_quoted_word(fp);
437 if (wd == (char *)EOF || wd == NULL)
440 warning = ns(wd);
443 if (eq(wd, "obj-prefix")) {
444 wd = get_quoted_word(fp);
445 if (wd == (char *)EOF || wd == NULL)
448 objprefix = ns(wd);
451 if (eq(wd, "nowerror")) {
455 if (eq(wd, "local")) {
459 if (eq(wd, "no-depend")) {
464 if (eq(wd, "profiling-routine")) {
470 this, wd);
472 if (eq(dp->d_name, wd)) {
480 if (op->op_value == 0 && opteq(op->op_name, wd)) {