Lines Matching full:makefile
1 $description = "The following test creates a makefile to test comments\n"
5 $details = "To test comments within a makefile, a semi-colon was placed \n"
13 open(MAKEFILE,"> $makefile");
15 # The Contents of the MAKEFILE ...
17 print MAKEFILE <<\EOF;
21 @echo There should be no errors for this makefile.
24 # END of Contents of MAKEFILE
26 close(MAKEFILE);
28 &run_make_with_options($makefile,"",&get_logfile);
30 # Create the answer to what should be produced by this Makefile
31 $answer = "There should be no errors for this makefile.\n";