1 $description = "The following test creates a makefile to ...";
5 open(MAKEFILE,"> $makefile");
7 # The Contents of the MAKEFILE ...
9 print MAKEFILE "x = variable1\n"
10 ."variable2 := Hello\n"
11 ."y = \$(subst 1,2,\$(x))\n"
13 ."a := \$(\$(\$(z)))\n"
17 # END of Contents of MAKEFILE
21 &run_make_with_options($makefile,"",&get_logfile);
23 # Create the answer to what should be produced by this Makefile
26 &compare_output($answer,&get_logfile(1));