Lines Matching refs:clean
8 $details = "This makefile in this test declares the target clean to be a \n"
9 ."PHONY target. We then create a file named \"clean\" in the \n"
11 ."clean should still execute because of it's phony status.";
19 print MAKEFILE ".PHONY : clean \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";
31 # Create a file named "clean". This is the same name as the target clean
34 &touch("clean");
36 $answer = "$delete_command $example clean\n";
37 &run_make_with_options($makefile,"clean",&get_logfile);