Home | History | Annotate | Download | only in features

Lines Matching full:makefile

13 open(MAKEFILE,"> $makefile");
15 # The contents of the Makefile ...
17 print MAKEFILE <<EOF;
20 all: ; \@echo There should be no errors for this makefile.
32 close(MAKEFILE);
35 open(MAKEFILE,"> $makefile2");
37 print MAKEFILE "ANOTHER: ; \@echo This is another included makefile\n";
39 close(MAKEFILE);
41 # Create the answer to what should be produced by this Makefile
42 &run_make_with_options($makefile, "all", &get_logfile);
43 $answer = "There should be no errors for this makefile.\n";
46 &run_make_with_options($makefile, "ANOTHER", &get_logfile);
47 $answer = "This is another included makefile\n";
50 $makefile = undef;
54 # the -include suppressed it during the makefile read phase, we should
55 # see one during the makefile run phase).