Lines Matching full:makefile
1 $description = "The following test creates a makefile to test command \n"
29 open(MAKEFILE,"> $makefile");
31 # The Contents of the MAKEFILE ...
33 print MAKEFILE "all: \n";
34 print MAKEFILE "\techo This makefile did not clean the dir... good\n";
35 print MAKEFILE "clean: \n";
36 print MAKEFILE "\t\@$delete_command $example\n";
38 # END of Contents of MAKEFILE
40 close(MAKEFILE);
47 &run_make_with_options($makefile,"",&get_logfile,0);
48 $answer = "echo This makefile did not clean the dir... good\n"
49 ."This makefile did not clean the dir... good\n";
56 &run_make_with_options($makefile,"clean",&get_logfile,0);
65 &run_make_with_options($makefile,"-n clean",&get_logfile,0);
73 &run_make_with_options($makefile,"-s",&get_logfile,0);
74 $answer = "This makefile did not clean the dir... good\n";