More information

2006-07-25 Thread Anoneironaut
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. Here is the full makefile: # Tools TOOLKIT_DIR = C:/IAR/EW23/h8 PRODUCT_DIR = C:/ec2000se PROJ_DIR = $(PRODUCT_DIR)/Sita TOOLS =

Re: More information

2006-07-25 Thread John Graham-Cumming
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

Re: More information

2006-07-25 Thread Paul D. Smith
%% Anoneironaut [EMAIL PROTECTED] writes: a I am using gnumake version 3.80. My operating system is Windows XP. a Here is the full error text: a Makefile:97: *** multiple target patterns. Stop. a Heap.r37 : Heap.c a $(COMP) $(HEAPFLAGS) Heap.c === LINE 97 You have

Re: More information

2006-07-25 Thread Anoneironaut
That line is tabbed. -- View this message in context: http://www.nabble.com/Multiple-files-different-flags-needed-tf1998767.html#a5487914 Sent from the Gnu - Make - Help forum at Nabble.com. ___ Help-make mailing list Help-make@gnu.org

Re: More information

2006-07-25 Thread Anoneironaut
Nope. The error is definitely pointing at the line that I mark out. I'll rewrite it. The error occurs on this line: Heap.r37 : Heap.c $(COMP) $(HEAPFLAGS) Heap.c == Specifically Here -Anon -- View this message in context:

Re: More information

2006-07-25 Thread Paul D. Smith
%% Regarding Re: More information: %.r37:%.c $(COMP) $(CFLAGS) $ %.r37:%.C $(COMP) $(CFLAGS) $ jg My guess is that this is the problem. Windows is case-preserving jg but case insensitive and hence %.c and %.C are the same thing. This shouldn't matter in two ways: first

Re: More information

2006-07-25 Thread Paul D. Smith
%% Anoneironaut [EMAIL PROTECTED] writes: a Nope. The error is definitely pointing at the line that I mark a out. I'll rewrite it. a The error occurs on this line: a Heap.r37 : Heap.c a $(COMP) $(HEAPFLAGS) Heap.c == Specifically Here ... a Makefile:97: *** multiple