Home | History | Annotate | Download | only in options

Lines Matching full:makefile

3 $description ="The following test creates a makefile to test the -I option.";
14 open(MAKEFILE,"> $makefile");
16 # The Contents of the MAKEFILE ...
19 print MAKEFILE <<EOF;
22 \t\@echo There should be no errors for this makefile.
25 # END of Contents of MAKEFILE
27 close(MAKEFILE);
30 open(MAKEFILE,"> $makefile2");
32 print MAKEFILE <<EOF;
34 \t\@echo This is another included makefile
36 \t\$(MAKE) ANOTHER -f $makefile
39 close(MAKEFILE);
41 &run_make_with_options($makefile,"-I $workdir all",&get_logfile);
43 # Create the answer to what should be produced by this Makefile
44 $answer = "There should be no errors for this makefile.\n";
48 $answer = "This is another included makefile\n";
49 &run_make_with_options($makefile,"-I $workdir ANOTHER",&get_logfile);
53 $answer = "$mkpath ANOTHER -f $makefile
55 This is another included makefile
58 &run_make_with_options($makefile,"-I $workdir recurse",&get_logfile);