Lines Matching refs:makefile
4 default makefiles in the correct order (GNUmakefile,makefile,Makefile)";
6 # Create a makefile called "GNUmakefile"
7 $makefile = "GNUmakefile";
9 open(MAKEFILE,"> $makefile");
13 # DOS/WIN32 platforms preserve case, but Makefile is the same file as makefile.
14 # Just test what we can here (avoid Makefile versus makefile test).
17 # Create another makefile called "makefile"
18 open(MAKEFILE,"> makefile");
19 print MAKEFILE "SECOND: ; \@echo It chose makefile\n";
23 # Create another makefile called "Makefile"
31 unlink $makefile;
35 &compare_output("It chose makefile\n",&get_logfile(1));
36 unlink "makefile";