bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Add "makefile.mak" to list of default makefiles


From: Eli Zaretskii
Subject: Re: Add "makefile.mak" to list of default makefiles
Date: Sat, 12 Jul 2014 12:56:57 +0300

> Date: Tue, 8 Jul 2014 13:55:40 +0100
> From: Jonny Grant <address@hidden>
> Cc: address@hidden, address@hidden
> 
> On 8 July 2014 03:38, Eli Zaretskii <address@hidden> wrote:
> >> From: Paul Smith <address@hidden>
> >> Cc: Eli Zaretskii <address@hidden>, address@hidden
> >> Date: Mon, 07 Jul 2014 17:00:03 -0400
> >>
> >> I do wonder, though, why we have both "makefile" and "Makefile" above.
> >> Does that actually ever do anything on Windows, other than waste a bit
> >> of time checking for the same file twice?
> >
> > No.
> 
> Ok, updated patch:
> 
> 
> --- read.c 2013-10-09 06:22:42.000000000 +0100
> +++ read.c.new 2014-07-07 18:10:43.914952000 +0100
> @@ -246,7 +246,11 @@
> 
> #ifdef _AMIGA
> { "GNUmakefile", "Makefile", "SMakefile", 0 };
> #else /* !Amiga && !VMS */
> +#ifdef WINDOWS32
> 
> + { "GNUmakefile", "makefile", "makefile.mak", 0 };
> +#else
> 
> { "GNUmakefile", "makefile", "Makefile", 0 };
> +#endif
> 
> #endif /* AMIGA */
> #endif /* VMS */
> register char **p = default_makefiles;

Thanks, I pushed this in your name.

> Also renaming README.W32 -> README_W32.txt

I didn't do anything about this part.  As long as README files for
other platforms don't have .txt or .text extensions, I see no reason
why the one for Windows should.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]