Home | History | Annotate | Download | only in targets

Lines Matching full:makefile

7 open(MAKEFILE,"> $makefile");
9 # The Contents of the MAKEFILE ...
11 print MAKEFILE ".IGNORE :\n";
12 print MAKEFILE "clean: FORCE\n";
13 print MAKEFILE "\t$delete_command clean\n";
14 print MAKEFILE "FORCE:\n";
16 # END of Contents of MAKEFILE
18 close(MAKEFILE);
27 &run_make_with_options($makefile,"clean",&get_logfile);