Lines Matching refs:makefile
14 open(MAKEFILE,"> $makefile");
19 print MAKEFILE "\t\@echo This is the output from the original makefile\n";
25 # Create a second makefile
28 print MAKEFILE "\t\@echo This is the output from makefile 2\n";
31 # Create a third makefile
34 print MAKEFILE "\t\@echo This is the output from makefile 3\n";
39 $answer = "This is the output from the original makefile\n";
42 &run_make_with_options($makefile,"-f $makefile2 -f $makefile3",&get_logfile,0);
47 # Run Make again with the rule from the second makefile: TWO
48 $answer = "This is the output from makefile 2\n";
50 &run_make_with_options($makefile,"-f $makefile2 -f $makefile3 TWO",&get_logfile,0);
55 # Run Make again with the rule from the third makefile: THREE
57 $answer = "This is the output from makefile 3\n";
58 &run_make_with_options($makefile,
68 $answer = "This is the output from makefile 2\n";
69 $answer .= "This is the output from the original makefile\n";
70 $answer .= "This is the output from makefile 3\n";
71 &run_make_with_options($makefile,