Home | History | Annotate | Download | only in options

Lines Matching full:makefile

14 open(MAKEFILE,"> $makefile");
16 # The Contents of the MAKEFILE ...
18 print MAKEFILE "all: \n";
19 print MAKEFILE "\t\@echo This is the output from the original makefile\n";
21 # END of Contents of MAKEFILE
23 close(MAKEFILE);
25 # Create a second makefile
26 open(MAKEFILE,"> $makefile2");
27 print MAKEFILE "TWO: \n";
28 print MAKEFILE "\t\@echo This is the output from makefile 2\n";
29 close(MAKEFILE);
31 # Create a third makefile
32 open(MAKEFILE,"> $makefile3");
33 print MAKEFILE "THREE: \n";
34 print MAKEFILE "\t\@echo This is the output from makefile 3\n";
35 close(MAKEFILE);
38 # Create the answer to what should be produced by this Makefile
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,