Home | History | Annotate | Download | only in features

Lines Matching full:makefile

9           ."rule to print a message at the end to confirm that the makefile\n"
12 open(MAKEFILE,"> $makefile");
14 # The Contents of the MAKEFILE ...
16 print MAKEFILE "VPATH = $workdir:$sourcedir\n";
17 print MAKEFILE "vpath %.c foo\n";
18 print MAKEFILE "vpath %.c $workdir\n";
19 print MAKEFILE "vpath %.c $sourcedir\n";
20 print MAKEFILE "vpath %.h $workdir\n";
21 print MAKEFILE "vpath %.c\n";
22 print MAKEFILE "vpath\n";
23 print MAKEFILE "all:\n";
24 print MAKEFILE "\t\@echo ALL IS WELL\n";
25 # END of Contents of MAKEFILE
27 close(MAKEFILE);
29 &run_make_with_options($makefile,"",&get_logfile);
31 # Create the answer to what should be produced by this Makefile