Lines Matching full:makefile
8 $details = "This makefile in this test declares the target clean to be a \n"
15 open(MAKEFILE,"> $makefile");
17 # The Contents of the MAKEFILE ...
19 print MAKEFILE ".PHONY : clean \n";
20 print MAKEFILE "all: \n";
21 print MAKEFILE "\t\@echo This makefile did not clean the dir ... good\n";
22 print MAKEFILE "clean: \n";
23 print MAKEFILE "\t$delete_command $example clean\n";
25 # END of Contents of MAKEFILE
27 close(MAKEFILE);
37 &run_make_with_options($makefile,"clean",&get_logfile);