Anoneironaut wrote:
I am using gnumake version 3.80.  My operating system is Windows XP.

Here is the full error text:

Makefile:97: *** multiple target patterns.  Stop.
>
> [snip]
>
%.r37:%.c
        $(COMP) $(CFLAGS) $<

%.r37:%.C
        $(COMP) $(CFLAGS) $<

My guess is that this is the problem. Windows is case-preserving but case insensitive and hence %.c and %.C are the same thing. What happens if you change one of these rules to %.CC and run a test. Same error?

John.



_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to