Date: Mon, 15 Oct 2001 13:48:34 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Tim Van Holder cc: djgpp-workers AT delorie DOT com, Charles Sandmann Subject: Re: W2K/XP fncase In-Reply-To: <1003144468.28450.5.camel@bender.falconsoft.be> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 15 Oct 2001, Tim Van Holder wrote: > I'd also vote for not downcasing files without extension. My main gripe > with the current FNCASE=n situation is that is downcases names like > BUGS, COPYING, README, INSTALL, etc. I'm not sure if there are many > such files on a typical DOS system where downcasing _would_ be good > thing. Unfortunately, raw COFF files produced by the linker don't have extensions, as well as shell scripts. If we don't downcase COFF files, Make will always want to remake all targets like this: foo: foo.o $(CC) $(LDFLAGS) $< -o $@ $(LOADLIBES) Even worse, targets like below will always fail: all: foo