Re: RE: RE: MAKE - problem with small/capital letters in filenames

2002-11-04 Thread Graff_Zoltan
Hi! If the options to allow case-insensitive globbing are present, all you have to do is turn them on (using the MAKEFLAGS environment variable for make, and the appropriate .*rc file for the shell, IIRC). I see. I'll try to find this option. If these options are not available, there are

MAKE - problem with small/capital letters in filenames

2002-10-29 Thread Graff_Zoltan
Hi! I've got a simple makefile. It works well under DOS (with DJGPP) and under Linux (Debian Woody). But it does not work under Cygwin. The message: no rule to make 'hello.d' The makefile: all: $(CC) $(CFLAGS) hello.c -o hello.exe include hello.d %.d: %.c $(CC) -MM $(CFLAGS) $