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)
%% [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
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