Mail Archives: djgpp-workers/2001/10/15/07:50:07
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
- Raw text -