Re: Macro evaluation order in 3.79.1

2000-09-11 Thread jim . campbell
Yes, I made that change and it worked, even before I got your message. Thank you for the clarification. - Jim -- Jim Campbell [EMAIL PROTECTED] 716/424-3560, x206 (direct) 716/424-4554, x206 (switchboard)

Re: Macro evaluation order in 3.79.1

2000-09-11 Thread Paul D. Smith
%% [EMAIL PROTECTED] writes: jc> Consider the following Makefile: jc>clean: GOAL= clean jc>ifneq ($(GOAL),clean) jc>include foo.mk jc>endif jc>clean: jc>echo $(GOAL) jc> If I type make clean, I would expect the Makefile to skip inclusion of jc> fo

Macro evaluation order in 3.79.1

2000-09-11 Thread jim . campbell
Hello, Consider the following Makefile: clean: GOAL= clean ifneq ($(GOAL),clean) include foo.mk endif clean: echo $(GOAL) If I type make clean, I would expect the Makefile to skip inclusion of foo.mk. However, it does not, and the make reaches an error. I tried changin