Home | History | Annotate | Download | only in functions

Lines Matching full:makefile

4 The following test creates a makefile to test the warning function.";
8 open(MAKEFILE,"> $makefile");
10 print MAKEFILE <<'EOF';
32 close(MAKEFILE);
36 &run_make_with_options($makefile, "WARNING1=yes", &get_logfile, 0);
37 $answer = "$makefile:2: warning is yes\nSome stuff\n";
42 &run_make_with_options($makefile, "WARNING2=no", &get_logfile, 0);
43 $answer = "$makefile:6: warning is no\nSome stuff\n";
48 &run_make_with_options($makefile, "WARNING3=maybe", &get_logfile, 0);
49 $answer = "Some stuff\n$makefile:10: warning is maybe\nhi\n";
54 &run_make_with_options($makefile, "WARNING4=definitely", &get_logfile, 0);
55 $answer = "Some stuff\n$makefile:14: warning is definitely\nhi\nthere\n";