Lines Matching full:makefile
3 $description = "The following test creates a makefile to test MAKE \n"
8 open(MAKEFILE,"> $makefile");
10 # The Contents of the MAKEFILE ...
12 print MAKEFILE "TMP := \$(MAKE)\n";
13 print MAKEFILE "MAKE := \$(subst X=\$(X),,\$(MAKE))\n\n";
14 print MAKEFILE "all:\n";
15 print MAKEFILE "\t\@echo \$(TMP)\n";
16 print MAKEFILE "\t\$(MAKE) -f $makefile foo\n\n";
17 print MAKEFILE "foo:\n";
18 print MAKEFILE "\t\@echo \$(MAKE)\n";
20 # END of Contents of MAKEFILE
22 close(MAKEFILE);
24 # Create the answer to what should be produced by this Makefile
25 $answer = "$mkpath\n$mkpath -f $makefile foo\n"
29 &run_make_with_options($makefile,"",&get_logfile,0);